Index: branches/version-2_12-dev/templates/page_class.php
===================================================================
--- branches/version-2_12-dev/templates/page_class.php	(revision 22206)
+++ branches/version-2_12-dev/templates/page_class.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_XXX extends LC_Page_Ex {
+class LC_Page_XXX extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
     }
 
@@ -59,5 +62,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/templates/templates.xml
===================================================================
--- branches/version-2_12-dev/templates/templates.xml	(revision 20540)
+++ branches/version-2_12-dev/templates/templates.xml	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $$Id$$
  */
-class LC_Page_XXX extends LC_Page_Ex {
+class LC_Page_XXX extends LC_Page_Ex
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
     }
 
@@ -59,5 +62,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -99,5 +103,6 @@
  * @version $$Id$$
  */
-class LC_Page_XXX_Ex extends LC_Page_XXX {
+class LC_Page_XXX_Ex extends LC_Page_XXX
+{
 
     // }}}
@@ -109,5 +114,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -118,5 +124,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -127,5 +134,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/templates/page_class_extends.php
===================================================================
--- branches/version-2_12-dev/templates/page_class_extends.php	(revision 22206)
+++ branches/version-2_12-dev/templates/page_class_extends.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_XXX_Ex extends LC_Page_XXX {
+class LC_Page_XXX_Ex extends LC_Page_XXX
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/templates/mobile_class.php
===================================================================
--- branches/version-2_12-dev/templates/mobile_class.php	(revision 20116)
+++ branches/version-2_12-dev/templates/mobile_class.php	(revision 22567)
@@ -5,5 +5,6 @@
      * @return void
      */
-    function mobileInit() {
+    function mobileInit()
+    {
         $this->init();
     }
@@ -14,5 +15,6 @@
      * @return void
      */
-    function mobileProcess() {
+    function mobileProcess()
+    {
     }
 /*
Index: branches/version-2_12-dev/test/createEcCubeCustomerData-v25.php
===================================================================
--- branches/version-2_12-dev/test/createEcCubeCustomerData-v25.php	(revision 22206)
+++ branches/version-2_12-dev/test/createEcCubeCustomerData-v25.php	(revision 22567)
@@ -88,5 +88,6 @@
  * EC-CUBE のテスト用会員データを生成する
  */
-class CreateEcCubeCustomerData {
+class CreateEcCubeCustomerData 
+{
 
     /** SC_Query インスタンス */
@@ -96,5 +97,6 @@
      * コンストラクタ.
      */
-    function CreateEcCubeCustomerData() {
+    function CreateEcCubeCustomerData()
+    {
         $this->objQuery = new SC_Query();
     }
@@ -105,5 +107,6 @@
      * @return void
      */
-    function createCustomers() {
+    function createCustomers()
+    {
         lfPrintLog("createCustomers START.(" . CUSTOMERS_VOLUME . " data)");
         for ($i = 0; $i < CUSTOMERS_VOLUME; $i++) {
@@ -159,5 +162,6 @@
 
 /** テスト用スクリプトのログ出力関数 */
-function lfPrintLog($mess) {
+function lfPrintLog($mess)
+{
     $path = DATA_REALDIR . "logs/" .  basename(__FILE__, '.php') . ".log";
     GC_Utils::gfPrintLog($mess, $path);
Index: branches/version-2_12-dev/test/api_test.php
===================================================================
--- branches/version-2_12-dev/test/api_test.php	(revision 22206)
+++ branches/version-2_12-dev/test/api_test.php	(revision 22567)
@@ -82,7 +82,9 @@
 <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
 <script type="text/javascript">
-function var_dump(obj) {
+function var_dump(obj)
+{
    var str = '';
-   $.each(obj, function (key, value) {
+   $.each(obj, function (key, value)
+   {
             if(typeof value == "object" && value != null) {
                 str += " Key: \"" + key + "\" {\n" + var_dump(value) + "}\n";
@@ -94,5 +96,6 @@
 }
 
-function makeSignature() {
+function makeSignature()
+{
     $('#mode').val("signature");
     $('#form').submit();
@@ -180,5 +183,6 @@
             $('#dump').text(str);
         }
-        var recverror = function (result, textstatus, errorThrown) {
+        var recverror = function (result, textstatus, errorThrown)
+        {
             $('#res').text(textstatus);
         }
Index: branches/version-2_12-dev/test/TestSuite.php
===================================================================
--- branches/version-2_12-dev/test/TestSuite.php	(revision 22206)
+++ branches/version-2_12-dev/test/TestSuite.php	(revision 22567)
@@ -36,6 +36,8 @@
  */
 
-class TestSuite {
-    public static function suite() {
+class TestSuite 
+{
+    public static function suite()
+    {
         $suite = new PHPUnit_Framework_TestSuite('ECCUBE');
         $suite->addTest(Page_AllTests::suite());
Index: branches/version-2_12-dev/test/createEcCubeData-v25.php
===================================================================
--- branches/version-2_12-dev/test/createEcCubeData-v25.php	(revision 22206)
+++ branches/version-2_12-dev/test/createEcCubeData-v25.php	(revision 22567)
@@ -87,5 +87,6 @@
  * EC-CUBE のデータを生成する
  */
-class CreateEcCubeData {
+class CreateEcCubeData 
+{
 
     /** SC_Query インスタンス */
@@ -113,5 +114,6 @@
      * コンストラクタ.
      */
-    function CreateEcCubeData() {
+    function CreateEcCubeData()
+    {
         $this->objQuery = new SC_Query();
 
@@ -137,5 +139,6 @@
      * @return void
      */
-    function createCategories() {
+    function createCategories()
+    {
 
         print("カテゴリを生成しています...\n");
@@ -211,5 +214,6 @@
      * @return void
      */
-    function createClassData() {
+    function createClassData()
+    {
         // 規格データ生成
         print("規格データを生成しています...\n");
@@ -250,5 +254,6 @@
      * @return void
      */
-    function relateClass() {
+    function relateClass()
+    {
 
         print("商品と規格の関連づけを行います...\n");
@@ -269,5 +274,6 @@
      * @return void
      */
-    function createProducts() {
+    function createProducts()
+    {
 
         print("商品を生成しています...\n");
@@ -308,5 +314,6 @@
      * @return void
      */
-    function createClass($class_name) {
+    function createClass($class_name)
+    {
         $sqlval = array();
         $arrRaw = array();
@@ -336,5 +343,6 @@
      * @return void
      */
-    function createClassCategory($classcategory_name, $class_id, $class_name) {
+    function createClassCategory($classcategory_name, $class_id, $class_name)
+    {
         $sqlval = array();
         $arrRaw = array();
@@ -375,5 +383,6 @@
      * @return void
      */
-    function createProductsClass($product_id) {
+    function createProductsClass($product_id)
+    {
 
         printf("商品ID %d の商品規格を生成しています...\n", $product_id);
@@ -419,5 +428,6 @@
      * @return void
      */
-    function relateProductsCategories() {
+    function relateProductsCategories()
+    {
 
         print("商品とカテゴリの関連づけを行います...\n");
@@ -438,5 +448,6 @@
      * @return void
      */
-    function createProductsCategories($arrCategory_id, $category_name) {
+    function createProductsCategories($arrCategory_id, $category_name)
+    {
 
         $count = 0;
@@ -668,5 +679,6 @@
     * 総カテゴリ数を計算し、dtb_categoryに代入するrankに使う
     */
-    function lfGetTotalCategoryrank($existingMaxRank = 0){
+    function lfGetTotalCategoryrank($existingMaxRank = 0)
+    {
         $TotalCategoryrank = (TOP_CATEGORIES_VOLUME * MIDDLE_CATEGORIES_VOLUME * SMALL_CATEGORIES_VOLUME) + (MIDDLE_CATEGORIES_VOLUME * TOP_CATEGORIES_VOLUME) + TOP_CATEGORIES_VOLUME + $existingMaxRank;
         return $TotalCategoryrank;
Index: branches/version-2_12-dev/test/class/SC_Query_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/SC_Query_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/SC_Query_Test.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class SC_Query_Test extends PHPUnit_Framework_TestCase {
+class SC_Query_Test extends PHPUnit_Framework_TestCase 
+{
 
     /** SC_Query インスタンス */
@@ -41,10 +42,12 @@
     var $actual;
 
-    function setUp() {
+    function setUp()
+    {
         $this->objQuery = new SC_Query();
         $this->objQuery->begin();
     }
 
-    function tearDown() {
+    function tearDown()
+    {
         // MySQL では CREATE TABLE がロールバックされないので DROP TABLE を行う
         $this->dropTestTable();
@@ -53,5 +56,6 @@
     }
 
-    function verify() {
+    function verify()
+    {
         $this->assertEquals($this->expected, $this->actual);
     }
@@ -60,5 +64,6 @@
      * インスタンスを取得するテストケース.
      */
-    function testGetInstance() {
+    function testGetInstance()
+    {
         $this->expected = true;
         $this->actual = is_object($this->objQuery);
@@ -70,5 +75,6 @@
      * SC_Query::query() を使用して, CREATE TABLE を実行するテストケース.
      */
-    function testCreateTable() {
+    function testCreateTable()
+    {
         $result = $this->createTestTable();
 
@@ -82,5 +88,6 @@
      * SC_Query::getAll() のテストケース.
      */
-    function testGetAll() {
+    function testGetAll()
+    {
         $result = $this->createTestTable();
         $result = $this->setTestData(1, '2', 'f');
@@ -98,5 +105,6 @@
      * SC_Query::select() のテストケース.
      */
-    function testSelect() {
+    function testSelect()
+    {
         $this->createTestTable();
         $result = $this->setTestData(1, '2', 'f');
@@ -118,5 +126,6 @@
      * SC_Query::getOne() のテストケース.
      */
-    function testGetOne() {
+    function testGetOne()
+    {
         $this->createTestTable();
         $this->setTestData(1, '2', 'f');
@@ -133,5 +142,6 @@
      * SC_Query::getRow() のテストケース.
      */
-    function testGetRow() {
+    function testGetRow()
+    {
         $this->createTestTable();
         $this->setTestData(1, '1', 'f');
@@ -147,5 +157,6 @@
      * SC_Query::getCol() のテストケース.
      */
-    function testGetCol() {
+    function testGetCol()
+    {
         $this->createTestTable();
         $this->setTestData(1, '1', 'f');
@@ -163,5 +174,6 @@
      * SC_Query::query() で INSERT を実行するテストケース.
      */
-    function testQuery1() {
+    function testQuery1()
+    {
         $this->createTestTable();
         $sql = "INSERT INTO test_table VALUES (?, ?, ?, ?)";
@@ -180,5 +192,6 @@
     }
 
-    function testInsert() {
+    function testInsert()
+    {
         $this->createTestTable();
 
@@ -202,5 +215,6 @@
      * SC_Query::query() で UPDATE を実行するテストケース.
      */
-    function testQuery2() {
+    function testQuery2()
+    {
         $this->createTestTable();
         $this->setTestData(1, '2', 'f');
@@ -221,5 +235,6 @@
     }
 
-    function testUpdate() {
+    function testUpdate()
+    {
         $this->createTestTable();
         $this->setTestData(1, '2', 'f');
@@ -241,15 +256,18 @@
     }
 
-    function testListTables() {
+    function testListTables()
+    {
         $tables = $this->objQuery->listTables();
         $this->assertTrue(in_array('mtb_zip', $tables));
     }
 
-    function testListSequences() {
+    function testListSequences()
+    {
         $sequences = $this->objQuery->listSequences();
         $this->assertTrue(in_array('dtb_products_product_id', $sequences));
     }
 
-    function testListTableFields() {
+    function testListTableFields()
+    {
         $this->expected = array('id', 'name', 'rank', 'remarks');
         $this->actual = $this->objQuery->listTableFields('mtb_constants');
@@ -257,10 +275,12 @@
     }
 
-    function testListTableIndexes() {
+    function testListTableIndexes()
+    {
         $indexes = $this->objQuery->listTableIndexes('dtb_mobile_kara_mail');
         $this->assertTrue(in_array('dtb_mobile_kara_mail_create_date_key', $indexes));
     }
 
-    function createTestTable() {
+    function createTestTable()
+    {
         $sql = "CREATE TABLE test_table ("
             . "id SERIAL PRIMARY KEY,"
@@ -272,5 +292,6 @@
     }
 
-    function dropTestTable() {
+    function dropTestTable()
+    {
         $tables = $this->objQuery->listTables();
         if (in_array('test_table', $tables)) {
@@ -280,5 +301,6 @@
     }
 
-    function setTestData($column1, $column2, $column3) {
+    function setTestData($column1, $column2, $column3)
+    {
         $fields_values = array($column1, $column2, $column3);
         $sql = "INSERT INTO test_table (column1, column2, column3) VALUES (?, ?, ?)";
Index: branches/version-2_12-dev/test/class/helper/SC_Helper_Session_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/helper/SC_Helper_Session_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/helper/SC_Helper_Session_Test.php	(revision 22567)
@@ -33,10 +33,12 @@
  * @version $Id$
  */
-class SC_Helper_Session_Test extends PHPUnit_Framework_TestCase {
+class SC_Helper_Session_Test extends PHPUnit_Framework_TestCase 
+{
 
     /**
      * getToken() のテストケース.
      */
-    function testGetToken() {
+    function testGetToken()
+    {
         $objSession = new SC_Helper_Session_Ex();
         $token = $objSession->getToken();
@@ -51,5 +53,6 @@
      * isValidToken() のテストケース.
      */
-    function testIsValidToken() {
+    function testIsValidToken()
+    {
         $objSession = new SC_Helper_Session_Ex();
         $token = $objSession->getToken();
@@ -65,5 +68,6 @@
      * isValidToken() のテストケース(POST).
      */
-    function testIsValidTokenWithPost() {
+    function testIsValidTokenWithPost()
+    {
         $objSession = new SC_Helper_Session_Ex();
         $token = $objSession->getToken();
@@ -80,5 +84,6 @@
      * isValidToken() のテストケース(GET).
      */
-    function testIsValidTokenWithGET() {
+    function testIsValidTokenWithGET()
+    {
         $objSession = new SC_Helper_Session_Ex();
         $token = $objSession->getToken();
@@ -97,5 +102,6 @@
      * 値が渡されてない場合
      */
-    function testIsValidTokenNotParam() {
+    function testIsValidTokenNotParam()
+    {
         $objSession = new SC_Helper_Session_Ex();
         $token = $objSession->getToken();
Index: branches/version-2_12-dev/test/class/helper/SC_Helper_Address_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/helper/SC_Helper_Address_Test.php	(revision 22565)
+++ branches/version-2_12-dev/test/class/helper/SC_Helper_Address_Test.php	(revision 22567)
@@ -57,5 +57,6 @@
     }
 
-    function testRegistAddress() {
+    function testRegistAddress()
+    {
         // ダミーの住所を登録
         $sqlval = $this->dummy;
@@ -84,5 +85,6 @@
      * @depends testSave
      */
-    function testGetAddress() {
+    function testGetAddress()
+    {
         // testSave のテストが通っていること前提
         $sqlval = $this->dummy;
@@ -106,5 +108,6 @@
      * @depends testSave
      */
-    function testGetList() {
+    function testGetList()
+    {
         // testSave のテストが通っていること前提
         $sqlval = $this->dummy;
@@ -132,5 +135,6 @@
      * @depends testSave
      */
-    function testDeleteAddress() {
+    function testDeleteAddress()
+    {
         // testSave のテストが通っていること前提
         $sqlval = $this->dummy;
Index: branches/version-2_12-dev/test/class/helper/SC_Helper_DB_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/helper/SC_Helper_DB_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/helper/SC_Helper_DB_Test.php	(revision 22567)
@@ -33,10 +33,12 @@
  * @version $Id$
  */
-class SC_Helper_DB_Test extends PHPUnit_Framework_TestCase {
+class SC_Helper_DB_Test extends PHPUnit_Framework_TestCase 
+{
 
     /**
      * sfColumnExists() のテストケース.
      */
-    function testSfColumnExists() {
+    function testSfColumnExists()
+    {
         $objDb = new SC_Helper_DB_Ex();
         $this->assertEquals(true, $objDb->sfColumnExists('mtb_zip', 'zipcode'));
Index: branches/version-2_12-dev/test/class/helper/Helper_AllTests.php
===================================================================
--- branches/version-2_12-dev/test/class/helper/Helper_AllTests.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/helper/Helper_AllTests.php	(revision 22567)
@@ -36,7 +36,9 @@
  * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $
  */
-class Helper_AllTests extends PHPUnit_Framework_TestCase {
+class Helper_AllTests extends PHPUnit_Framework_TestCase 
+{
 
-    public static function suite() {
+    public static function suite()
+    {
         $suite = new PHPUnit_Framework_TestSuite('SC_Helper');
         $suite->addTestSuite('SC_Helper_DB_Test');
Index: branches/version-2_12-dev/test/class/helper/SC_Helper_Purchase_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/helper/SC_Helper_Purchase_Test.php	(revision 22565)
+++ branches/version-2_12-dev/test/class/helper/SC_Helper_Purchase_Test.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_Test extends PHPUnit_Framework_TestCase {
+class SC_Helper_Purchase_Test extends PHPUnit_Framework_TestCase 
+{
     /**
      * @var SC_Helper_Purchase
Index: branches/version-2_12-dev/test/class/db/SC_DB_MasterData_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/db/SC_DB_MasterData_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/db/SC_DB_MasterData_Test.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id:SC_DB_MasterData_Test.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_DB_MasterData_Test extends PHPUnit_Framework_TestCase {
+class SC_DB_MasterData_Test extends PHPUnit_Framework_TestCase 
+{
 
     // }}}
@@ -41,5 +42,6 @@
      * SC_DB_MasterData::getMasterData() のテストケース
      */
-    function testGetMasterData() {
+    function testGetMasterData()
+    {
         $columns = array('id', 'name', 'rank');
         $masterData = new SC_DB_MasterData_Ex();
@@ -61,5 +63,6 @@
      * SC_DB_MasterData::updateMasterData() のテストケース
      */
-    function testUpdateMasterData() {
+    function testUpdateMasterData()
+    {
 
         $columns = array('id', 'name', 'rank');
@@ -86,5 +89,6 @@
      * SC_DB_MasterData::createCache() のテストケース.
      */
-    function testCreateCache() {
+    function testCreateCache()
+    {
         $masterData = new SC_DB_MasterData_Ex();
         $masterData->clearCache('mtb_constants');
Index: branches/version-2_12-dev/test/class/db/DB_AllTests.php
===================================================================
--- branches/version-2_12-dev/test/class/db/DB_AllTests.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/db/DB_AllTests.php	(revision 22567)
@@ -35,7 +35,9 @@
  * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $
  */
-class DB_AllTests extends PHPUnit_Framework_TestCase {
+class DB_AllTests extends PHPUnit_Framework_TestCase 
+{
 
-    public static function suite() {
+    public static function suite()
+    {
         $suite = new PHPUnit_Framework_TestSuite('SC_DB');
         $suite->addTestSuite('SC_DB_DBFactory_Test');
Index: branches/version-2_12-dev/test/class/db/SC_DB_DBFactory_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/db/SC_DB_DBFactory_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/db/SC_DB_DBFactory_Test.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id:SC_DB_DBFactory_Test.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_DB_DBFactory_Test extends PHPUnit_Framework_TestCase {
+class SC_DB_DBFactory_Test extends PHPUnit_Framework_TestCase 
+{
 
     // }}}
@@ -39,5 +40,6 @@
 
     /* TODO
-    function testSfGetDBVersion() {
+    function testSfGetDBVersion()
+    {
         $dbFactory = SC_DB_DBFactory::getInstance();
         $objQuery = new SC_Query(DEFAULT_DSN, true, true);
@@ -55,5 +57,6 @@
     */
 
-    function testFindTableNames() {
+    function testFindTableNames()
+    {
         $dbFactory = SC_DB_DBFactory::getInstance();
         $objQuery = new SC_Query(DEFAULT_DSN);
@@ -62,5 +65,6 @@
     }
 
-    function testConcatColumn() {
+    function testConcatColumn()
+    {
 
         $params = array('column1', 'column2');
@@ -87,5 +91,6 @@
      * 昨日の売上高・売上件数を算出する SQL のテスト.
      */
-    function testGetOrderYesterdaySql() {
+    function testGetOrderYesterdaySql()
+    {
 
         switch (DB_TYPE) {
@@ -116,5 +121,6 @@
      * 当月の売上高・売上件数を算出する SQL のテスト.
      */
-    function testGetOrderMonthSql() {
+    function testGetOrderMonthSql()
+    {
         switch (DB_TYPE) {
         case 'pgsql':
@@ -146,5 +152,6 @@
      * 昨日のレビュー書き込み件数を算出する SQL のテスト.
      */
-    function testGetReviewYesterdaySql() {
+    function testGetReviewYesterdaySql()
+    {
         switch (DB_TYPE) {
         case 'pgsql':
Index: branches/version-2_12-dev/test/class/page/shopping/LC_Page_Shopping_LoadPaymentModule_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/page/shopping/LC_Page_Shopping_LoadPaymentModule_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/page/shopping/LC_Page_Shopping_LoadPaymentModule_Test.php	(revision 22567)
@@ -33,7 +33,9 @@
  * @version $Id$
  */
-class LC_Page_Shopping_LoadPaymentModule_Test extends PHPUnit_Framework_TestCase {
+class LC_Page_Shopping_LoadPaymentModule_Test extends PHPUnit_Framework_TestCase 
+{
 
-    function setUp() {
+    function setUp()
+    {
         $this->objQuery =& SC_Query::getSingletonInstance();
         $this->objQuery->begin();
@@ -41,10 +43,12 @@
     }
 
-    function tearDown() {
+    function tearDown()
+    {
         $this->objQuery->rollback();
         $this->objPage = null;
     }
 
-    function testGetOrderIdBySession() {
+    function testGetOrderIdBySession()
+    {
         $_SESSION['order_id'] = 1;
         $_GET['order_id'] = 2;
@@ -57,5 +61,6 @@
     }
 
-    function testGetOrderIdByPOST() {
+    function testGetOrderIdByPOST()
+    {
         $_GET['order_id'] = 1;
         $_POST['order_id'] = 1;
@@ -67,5 +72,6 @@
     }
 
-    function testGetOrderIdByGET() {
+    function testGetOrderIdByGET()
+    {
         $_GET['order_id'] = 2;
 
@@ -76,9 +82,11 @@
     }
 
-    function testGetOrderIdIsNull() {
+    function testGetOrderIdIsNull()
+    {
         $this->assertFalse($this->objPage->getOrderId());
     }
 
-    function testGetModulePath() {
+    function testGetModulePath()
+    {
         $order_id = 10000;
         $payment_id = 10000;
@@ -92,5 +100,6 @@
     }
 
-    function testGetModulePathIsFailure() {
+    function testGetModulePathIsFailure()
+    {
         $order_id = 10000;
         $payment_id = 10000;
@@ -104,9 +113,11 @@
     }
 
-    function verify() {
+    function verify()
+    {
         $this->assertEquals($this->expected, $this->actual);
     }
 
-    function setPayment($order_id, $payment_id, $module_path) {
+    function setPayment($order_id, $payment_id, $module_path)
+    {
         $this->objQuery->insert('dtb_order', array('order_id' => $order_id,
                                                    'customer_id' => (int) 0,
Index: branches/version-2_12-dev/test/class/page/Page_AllTests.php
===================================================================
--- branches/version-2_12-dev/test/class/page/Page_AllTests.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/page/Page_AllTests.php	(revision 22567)
@@ -33,7 +33,9 @@
  * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $
  */
-class Page_AllTests extends PHPUnit_Framework_TestCase {
+class Page_AllTests extends PHPUnit_Framework_TestCase 
+{
 
-    public static function suite() {
+    public static function suite()
+    {
         $suite = new PHPUnit_Framework_TestSuite('Page');
         $suite->addTestSuite('LC_Page_Test');
Index: branches/version-2_12-dev/test/class/page/LC_Page_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/page/LC_Page_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/page/LC_Page_Test.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $
  */
-class LC_Page_Test extends PHPUnit_Framework_TestCase {
+class LC_Page_Test extends PHPUnit_Framework_TestCase 
+{
 
     // }}}
@@ -47,5 +48,6 @@
      */
     /*
-    function testSendRedirect() {
+    function testSendRedirect()
+    {
         $objPage = new LC_Page();
         $result = $objPage->sendRedirect(HTTP_URL);
@@ -58,5 +60,6 @@
      */
     /*
-    function testSendRedirectIsFailed() {
+    function testSendRedirectIsFailed()
+    {
         $objPage = new LC_Page();
         $result = $objPage->sendRedirect("http://www.example.org");
@@ -69,5 +72,6 @@
      * LC_Page::getToken() のテストケース.
      */
-    function testGetToken() {
+    function testGetToken()
+    {
         $objPage = new LC_Page();
 
@@ -85,5 +89,6 @@
      * LC_Page::getLocation() のテストケース.
      */
-    function testGetLocation() {
+    function testGetLocation()
+    {
         $objPage = new LC_Page();
         $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html");
@@ -99,5 +104,6 @@
      * 絶対パス
      */
-    function testGetLocationWithFullPath() {
+    function testGetLocationWithFullPath()
+    {
         $objPage = new LC_Page();
         $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html");
@@ -113,5 +119,6 @@
      * QueryString 付与
      */
-    function testGetLocationWithQueryString() {
+    function testGetLocationWithQueryString()
+    {
         $objPage = new LC_Page();
         $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html");
@@ -129,5 +136,6 @@
      * HTTPS_URL 使用
      */
-    function testGetLocationUseSSL() {
+    function testGetLocationUseSSL()
+    {
         $objPage = new LC_Page();
         $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html");
@@ -145,5 +153,6 @@
      * DocumentRoot 指定
      */
-    function testGetLocationWithDocumentRoot() {
+    function testGetLocationWithDocumentRoot()
+    {
         $objPage = new LC_Page();
         $documentRoot = realpath(dirname(__FILE__) . "/../../../html");
Index: branches/version-2_12-dev/test/class/page/LC_Page_Admin_Products_ProductClass_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/page/LC_Page_Admin_Products_ProductClass_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/page/LC_Page_Admin_Products_ProductClass_Test.php	(revision 22567)
@@ -33,7 +33,9 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ProductClass_Test extends PHPUnit_Framework_TestCase {
-
-    function setUp() {
+class LC_Page_Admin_Products_ProductClass_Test extends PHPUnit_Framework_TestCase 
+{
+
+    function setUp()
+    {
         $this->objQuery =& SC_Query::getSingletonInstance();
         $this->objQuery->begin();
@@ -44,5 +46,6 @@
     }
 
-    function tearDown() {
+    function tearDown()
+    {
         $this->objQuery->rollback();
         $this->objQuery = null;
@@ -50,5 +53,6 @@
     }
 
-    function testInit() {
+    function testInit()
+    {
 
         $this->assertEquals('products/product_class.tpl',
@@ -62,9 +66,11 @@
     }
 
-    function testProcess() {
+    function testProcess()
+    {
         $this->objPage->process();
     }
 
-    function testCreateSearchParams() {
+    function testCreateSearchParams()
+    {
         $keys = array('search_product_id',
                       'search_product_code',
@@ -104,5 +110,6 @@
     }
 
-    function testGetProductName() {
+    function testGetProductName()
+    {
         $product_id = 10000000;
         $this->expected = "テスト商品";
@@ -114,5 +121,6 @@
     }
 
-    function testGetProductsClass() {
+    function testGetProductsClass()
+    {
         $product_id = 10000000;
         $product_class_id = 10000;
@@ -141,5 +149,6 @@
     }
 
-    function testGetAllClass() {
+    function testGetAllClass()
+    {
         $this->clearClass();
         $this->setClass(1000, "大きさ", 1, array('S', 'M', 'L', 'LL'));
@@ -154,5 +163,6 @@
     }
 
-    function testGetAllClassCategory規格1のみ() {
+    function testGetAllClassCategory規格1のみ()
+    {
         $this->clearClass();
         $this->setClass(1000, "大きさ", 1, array('S', 'M', 'L', 'LL'));
@@ -182,5 +192,6 @@
     }
 
-    function testGetAllClassCategory規格1と3() {
+    function testGetAllClassCategory規格1と3()
+    {
         $this->clearClass();
         $this->setClass(1000, "大きさ", 1, array('S', 'M', 'L', 'LL'));
@@ -294,5 +305,6 @@
     }
 
-    function testGetProductsClassAndClasscategory() {
+    function testGetProductsClassAndClasscategory()
+    {
         $product_id = 10000;
         $product_class_id = 1000;
@@ -331,9 +343,11 @@
     }
 
-    function verify() {
+    function verify()
+    {
         $this->assertEquals($this->expected, $this->actual);
     }
 
-    function setProduct($product_id, $name) {
+    function setProduct($product_id, $name)
+    {
         $val['product_id'] = $product_id;
         $val['name'] = $name;
@@ -343,5 +357,6 @@
     }
 
-    function setProductsClass($product_id, $product_class_id, $class_combination_id = null) {
+    function setProductsClass($product_id, $product_class_id, $class_combination_id = null)
+    {
         $val['product_class_id'] = $product_class_id;
         $val['product_id'] = $product_id;
@@ -365,5 +380,6 @@
     }
 
-    function clearClass() {
+    function clearClass()
+    {
         $this->objQuery->delete('dtb_class');
         $this->objQuery->delete('dtb_classcategory');
@@ -378,5 +394,6 @@
      * @param array $classcategory 規格分類名の配列
      */
-    function setClass($class_id, $class_name, $rank, $classcategory) {
+    function setClass($class_id, $class_name, $rank, $classcategory)
+    {
         $val['class_id'] = $class_id;
         $val['name'] = $class_name;
@@ -397,11 +414,14 @@
 }
 
-class LC_Page_Admin_Products_ProductClass_Mock extends LC_Page_Admin_Products_ProductClass {
-
-    function authorization() {
+class LC_Page_Admin_Products_ProductClass_Mock extends LC_Page_Admin_Products_ProductClass 
+{
+
+    function authorization()
+    {
         // quiet.
     }
 
-    function assignView() {
+    function assignView()
+    {
         // quiet.
     }
Index: branches/version-2_12-dev/test/class/SC_DbConn_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/SC_DbConn_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/SC_DbConn_Test.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class SC_DbConn_Test extends PHPUnit_Framework_TestCase {
+class SC_DbConn_Test extends PHPUnit_Framework_TestCase 
+{
 
     /** SC_DbConn インスタンス */
@@ -40,15 +41,18 @@
     var $actual;
 
-    function setUp() {
+    function setUp()
+    {
         $this->objDbConn = new SC_DbConn();
         $this->objDbConn->query('BEGIN');
     }
 
-    function tearDown() {
+    function tearDown()
+    {
         $this->objDbConn->query('ROLLBACK');
         $this->objDbConn = null;
     }
 
-    function verify() {
+    function verify()
+    {
         $this->assertEquals($this->expected, $this->actual);
     }
@@ -57,5 +61,6 @@
      * インスタンスを取得するテストケース.
      */
-    function testGetInstance() {
+    function testGetInstance()
+    {
         $this->expected = true;
         $this->actual = is_object($this->objDbConn);
@@ -67,5 +72,6 @@
      * SC_DbConn:query() を使用して, CREATE TABLE を実行するテストケース.
      */
-    function testCreateTable() {
+    function testCreateTable()
+    {
         $result = $this->createTestTable();
 
@@ -79,5 +85,6 @@
      * SC_DbConn::getAll() のテストケース.
      */
-    function testGetAll() {
+    function testGetAll()
+    {
         $this->createTestTable();
         $result = $this->setTestData(1, '2', 'f');
@@ -96,5 +103,6 @@
      */
     /*
-    function testGetAllIsError() {
+    function testGetAllIsError()
+    {
 
         // SC_DbConn::getAll() は接続エラーが発生すると 0 を返す
@@ -111,5 +119,6 @@
      * SC_DbConn::getOne() のテストケース.
      */
-    function testGetOne() {
+    function testGetOne()
+    {
         $this->createTestTable();
         $this->setTestData(1, '2', 'f');
@@ -127,5 +136,6 @@
      */
     /*
-    function testGetOneIsError() {
+    function testGetOneIsError()
+    {
         $this->createTestTable();
         $this->setTestData(1, '2', 'f');
@@ -143,5 +153,6 @@
      * SC_DbConn::getRow() のテストケース.
      */
-    function testGetRow() {
+    function testGetRow()
+    {
         $this->createTestTable();
         $this->setTestData(1, '1', 'f');
@@ -157,5 +168,6 @@
      * SC_DbConn::getCol() のテストケース.
      */
-    function testGetCol() {
+    function testGetCol()
+    {
         $this->createTestTable();
         $this->setTestData(1, '1', 'f');
@@ -174,5 +186,6 @@
      */
     /*
-    function testAutoExecuteOfInsert() {
+    function testAutoExecuteOfInsert()
+    {
         $this->createTestTable();
         $result = $this->setTestData(1, '2', 'f');
@@ -192,5 +205,6 @@
      */
     /*
-    function testAutoExecuteOfUpdate() {
+    function testAutoExecuteOfUpdate()
+    {
         $this->createTestTable();
         $this->setTestData(1, '2', 'f');
@@ -214,5 +228,6 @@
      * SC_DbConn::query() で INSERT を実行するテストケース.
      */
-    function testQuery1() {
+    function testQuery1()
+    {
         $this->createTestTable();
         $sql = "INSERT INTO test_table VALUES (?, ?, ?, ?)";
@@ -234,5 +249,6 @@
      * SC_DbConn::query() で UPDATE を実行するテストケース.
      */
-    function testQuery2() {
+    function testQuery2()
+    {
         $this->createTestTable();
         $this->setTestData(1, '2', 'f');
@@ -257,5 +273,6 @@
      * SC_DbConn::prepare() は未使用
      */
-    function testPrepare() {
+    function testPrepare()
+    {
     }
 
@@ -263,5 +280,6 @@
      * SC_DbConn::execute() は未使用
      */
-    function testExecute() {
+    function testExecute()
+    {
     }
 
@@ -269,8 +287,10 @@
      * SC_DbConn::reset() は未使用
      */
-    function testReset() {
-    }
-
-    function createTestTable() {
+    function testReset()
+    {
+    }
+
+    function createTestTable()
+    {
         $sql = "CREATE TABLE test_table ("
             . "id SERIAL PRIMARY KEY,"
@@ -282,5 +302,6 @@
     }
 
-    function setTestData($column1, $column2, $column3) {
+    function setTestData($column1, $column2, $column3)
+    {
         $fields_values = array($column1, $column2, $column3);
         $sql = "INSERT INTO test_table (column1, column2, column3) VALUES (?, ?, ?)";
Index: branches/version-2_12-dev/test/class/util/Util_AllTests.php
===================================================================
--- branches/version-2_12-dev/test/class/util/Util_AllTests.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/util/Util_AllTests.php	(revision 22567)
@@ -33,7 +33,9 @@
  * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $
  */
-class Util_AllTests extends PHPUnit_Framework_TestCase {
+class Util_AllTests extends PHPUnit_Framework_TestCase 
+{
 
-    public static function suite() {
+    public static function suite()
+    {
         $suite = new PHPUnit_Framework_TestSuite('Util');
         $suite->addTestSuite('SC_Utils_Test');
Index: branches/version-2_12-dev/test/class/util/SC_Utils_Test.php
===================================================================
--- branches/version-2_12-dev/test/class/util/SC_Utils_Test.php	(revision 22206)
+++ branches/version-2_12-dev/test/class/util/SC_Utils_Test.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $
  */
-class SC_Utils_Test extends PHPUnit_Framework_TestCase {
+class SC_Utils_Test extends PHPUnit_Framework_TestCase 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * 変換無し
      */
-    function testGetRealURL_変換無し() {
+    function testGetRealURL_変換無し()
+    {
         $url = "http://www.example.jp/admin/index.php";
 
@@ -52,5 +54,6 @@
     }
 
-    function testGetRealURL_変換有() {
+    function testGetRealURL_変換有()
+    {
         $url = "http://www.example.jp/admin/../index.php";
 
@@ -61,5 +64,6 @@
     }
 
-    function testGetRealURL_空のディレクトリ() {
+    function testGetRealURL_空のディレクトリ()
+    {
         $url = "http://www.example.jp/admin/..///index.php";
 
@@ -70,5 +74,6 @@
     }
 
-    function testGetRealURL_Dotのディレクトリ() {
+    function testGetRealURL_Dotのディレクトリ()
+    {
         $url = "http://www.example.jp/admin/././../index.php";
 
@@ -79,5 +84,6 @@
     }
 
-    function testIsBlank() {
+    function testIsBlank()
+    {
         $val = "";
         $this->assertTrue(SC_Utils::isBlank($val));
@@ -122,5 +128,6 @@
     }
 
-    function testIsAbsoluteRealPath() {
+    function testIsAbsoluteRealPath()
+    {
         // for *NIX
         if (strpos(PHP_OS, 'WIN') === false) {
@@ -148,5 +155,6 @@
     }
 
-    function testRecursiveMkdir() {
+    function testRecursiveMkdir()
+    {
         $tmp_dir = sys_get_temp_dir();
         $dir = '/foo/bar';
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getBuyLimitTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getBuyLimitTest.php	(revision 22192)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getBuyLimitTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_getBuyLimitTest extends SC_Product_TestBase {
+class SC_Product_getBuyLimitTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testGetBuyLimit_商品数無限の場合販売制限なし() {
+    public function testGetBuyLimit_商品数無限の場合販売制限なし()
+    {
         
         $product = array('stock_unlimited' => '1'
@@ -30,5 +34,6 @@
     }
     
-    public function testGetBuyLimit_商品販売数制限数を返す() {
+    public function testGetBuyLimit_商品販売数制限数を返す()
+    {
         
         $product = array('stock_unlimited' => '1'
@@ -41,5 +46,6 @@
     }
     
-    public function testGetBuyLimit_商品在庫数を制限として返す() {
+    public function testGetBuyLimit_商品在庫数を制限として返す()
+    {
         
         $product = array('stock_unlimited' => null
@@ -52,5 +58,6 @@
     }
 
-    public function testGetBuyLimit_販売制限数大なり在庫数なら在庫数を返す() {
+    public function testGetBuyLimit_販売制限数大なり在庫数なら在庫数を返す()
+    {
         
         $product = array('stock_unlimited' => null
@@ -63,5 +70,6 @@
     }
     
-    public function testGetBuyLimit_販売制限数少なり在庫数なら販売制限数() {
+    public function testGetBuyLimit_販売制限数少なり在庫数なら販売制限数()
+    {
         
         $product = array('stock_unlimited' => null
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_listsTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_listsTest.php	(revision 22191)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_listsTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_listsTest extends SC_Product_TestBase {
+class SC_Product_listsTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testlists_商品一覧取得() {
+    public function testlists_商品一覧取得()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getDetailAndProductsClassTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getDetailAndProductsClassTest.php	(revision 22484)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getDetailAndProductsClassTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_getDetailAndProductsClassTest extends SC_Product_TestBase {
+class SC_Product_getDetailAndProductsClassTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testGetDetailAndProductsClass_商品規格IDの商品情報と規格情報を返す() {
+    public function testGetDetailAndProductsClass_商品規格IDの商品情報と規格情報を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_setProductStatusTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_setProductStatusTest.php	(revision 22227)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_setProductStatusTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_setProductStatusTest extends SC_Product_TestBase {
+class SC_Product_setProductStatusTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testSetProductStatus_登録した商品ステータスを返す() {
+    public function testSetProductStatus_登録した商品ステータスを返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getDetailTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getDetailTest.php	(revision 22484)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getDetailTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_getDetailTest extends SC_Product_TestBase {
+class SC_Product_getDetailTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testGetDetail_商品IDの詳細情報を返す() {
+    public function testGetDetail_商品IDの詳細情報を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductStatusTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductStatusTest.php	(revision 22192)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductStatusTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_getProductStatusTest extends SC_Product_TestBase {
+class SC_Product_getProductStatusTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testGetProductStatus_商品IDなしは空の配列を返す() {
+    public function testGetProductStatus_商品IDなしは空の配列を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -33,5 +37,6 @@
     }
     
-    public function testGetProductStatus_指定した商品IDの商品ステータスを返す() {
+    public function testGetProductStatus_指定した商品IDの商品ステータスを返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassByProductIdsTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassByProductIdsTest.php	(revision 22192)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassByProductIdsTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_getProductsClassByProductIdsTest extends SC_Product_TestBase {
+class SC_Product_getProductsClassByProductIdsTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testGetProductsClassByProductIds_商品IDなしは空配列を返す() {
+    public function testGetProductsClassByProductIds_商品IDなしは空配列を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -33,5 +37,6 @@
     }
     
-    public function testGetProductsClassByProductIds_指定の商品IDの情報を返す() {
+    public function testGetProductsClassByProductIds_指定の商品IDの情報を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -73,5 +78,6 @@
     }
     
-    public function testGetProductsClassByProductIds_削除商品含む商品情報を返す() {
+    public function testGetProductsClassByProductIds_削除商品含む商品情報を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getListByProductIdsTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getListByProductIdsTest.php	(revision 22484)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getListByProductIdsTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_getListsByProductIdsTest extends SC_Product_TestBase {
+class SC_Product_getListsByProductIdsTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testGetListByProductIds_商品ID指定がない場合は空配列() {
+    public function testGetListByProductIds_商品ID指定がない場合は空配列()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -31,5 +35,6 @@
     }
     
-    public function testGetListByProductIds_指定の商品IDで情報を取得する() {
+    public function testGetListByProductIds_指定の商品IDで情報を取得する()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassTest.php	(revision 22192)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_getProductsClassTest extends SC_Product_TestBase {
+class SC_Product_getProductsClassTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testGetProductsClass_商品規格IDから規格情報を返す() {
+    public function testGetProductsClass_商品規格IDから規格情報を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_TestBase.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_TestBase.php	(revision 22190)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_TestBase.php	(revision 22567)
@@ -6,10 +6,13 @@
  *
  */
-class SC_Product_TestBase extends Common_TestCase {
-    protected function setUp() {
+class SC_Product_TestBase extends Common_TestCase
+{
+    protected function setUp()
+    {
         parent::setUp();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -18,5 +21,6 @@
      * DBに商品クラス情報を設定します.
      */
-    protected function setUpProductClass() {
+    protected function setUpProductClass()
+    {
         $product_class = array(
             array(
@@ -59,5 +63,6 @@
 
         $this->objQuery->delete('dtb_products_class');
-        foreach ($product_class as $key => $item) {
+        foreach ($product_class as $key => $item)
+{
             $this->objQuery->insert('dtb_products_class', $item);
         }
@@ -69,5 +74,6 @@
      * DBに製品カテゴリ情報を登録します.
      */
-    protected function setUpClassCategory() {
+    protected function setUpClassCategory()
+    {
         $class_category = array(
             array(
@@ -96,5 +102,6 @@
      * DBに製品情報を登録します.
      */
-    protected function setUpProducts() {
+    protected function setUpProducts()
+    {
         $products = array(
             array(
@@ -156,5 +163,6 @@
      * DBに商品ステータス情報を登録します.
      */
-    protected function setUpProductStatus() {
+    protected function setUpProductStatus()
+    {
         $class_category = array(
             array(
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_findProductCountTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_findProductCountTest.php	(revision 22192)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_findProductCountTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_findProductCountTest extends SC_Product_TestBase {
+class SC_Product_findProductCountTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testFindProductCount_すべての商品数を返す() {
+    public function testFindProductCount_すべての商品数を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -31,5 +35,6 @@
     }
     
-    public function testFindProductCount_検索条件に一致する商品数を返す() {
+    public function testFindProductCount_検索条件に一致する商品数を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassByQueryTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassByQueryTest.php	(revision 22192)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getProductsClassByQueryTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_getProductsClassByQueryTest extends SC_Product_TestBase {
+class SC_Product_getProductsClassByQueryTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testGetProductsClassByQuery_クエリに該当する商品情報を返す() {
+    public function testGetProductsClassByQuery_クエリに該当する商品情報を返す()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_reduceStockTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_reduceStockTest.php	(revision 22192)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_reduceStockTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_reduceStockTest extends SC_Product_TestBase {
+class SC_Product_reduceStockTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testReduceStock_減少数０はFalse() {
+    public function testReduceStock_減少数０はFalse()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -32,5 +36,6 @@
     }
     
-    public function testReduceStock_減少数1はTrue() {
+    public function testReduceStock_減少数1はTrue()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -45,5 +50,6 @@
     }
     
-    public function testReduceStock_在庫数をマイナスにする数はFalse() {
+    public function testReduceStock_在庫数をマイナスにする数はFalse()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -59,5 +65,6 @@
     
         
-    public function testReduceStock_在庫数無限の場合はTrue() {
+    public function testReduceStock_在庫数無限の場合はTrue()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_setProductsOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_setProductsOrderTest.php	(revision 22188)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_setProductsOrderTest.php	(revision 22567)
@@ -6,17 +6,21 @@
  *
  */
-class SC_Product_setProductsOrderTest extends SC_Product_TestBase {
+class SC_Product_setProductsOrderTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
 
     /////////////////////////////////////////
-    public function testSetProductsOrder_デフォルト引数() {
+    public function testSetProductsOrder_デフォルト引数()
+    {
         $this->objProducts->setProductsOrder('name');
 
@@ -27,5 +31,6 @@
     }
 
-    public function testSetProductsOrder_引数指定() {
+    public function testSetProductsOrder_引数指定()
+    {
         $this->objProducts->setProductsOrder('name', 'dtb_products_class', 'DESC');
 
Index: branches/version-2_12-dev/tests/class/SC_Product/SC_Product_findProductIdsOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Product/SC_Product_findProductIdsOrderTest.php	(revision 22192)
+++ branches/version-2_12-dev/tests/class/SC_Product/SC_Product_findProductIdsOrderTest.php	(revision 22567)
@@ -6,12 +6,15 @@
  *
  */
-class SC_Product_findProductsOrderTest extends SC_Product_TestBase {
+class SC_Product_findProductsOrderTest extends SC_Product_TestBase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objProducts = new SC_Product_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -19,5 +22,6 @@
     /////////////////////////////////////////
 
-    public function testFindProductIdsOrder_商品ID降順() {
+    public function testFindProductIdsOrder_商品ID降順()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -33,5 +37,6 @@
     }
 
-    public function testFindProductIdsOrder_商品名昇順() {
+    public function testFindProductIdsOrder_商品名昇順()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
@@ -47,5 +52,6 @@
     }
     
-    public function testFindProductIdsOrder_arrOrderDataの設定による並び順() {
+    public function testFindProductIdsOrder_arrOrderDataの設定による並び順()
+    {
         $this->setUpProductClass();
         $this->setUpProducts();
Index: branches/version-2_12-dev/tests/class/Common_TestCase.php
===================================================================
--- branches/version-2_12-dev/tests/class/Common_TestCase.php	(revision 22139)
+++ branches/version-2_12-dev/tests/class/Common_TestCase.php	(revision 22567)
@@ -14,5 +14,6 @@
  *
  */
-class Common_TestCase extends PHPUnit_Framework_TestCase {
+class Common_TestCase extends PHPUnit_Framework_TestCase
+{
 
   /** SC_Query インスタンス */
@@ -24,10 +25,12 @@
   protected $actual;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     $this->objQuery = SC_Query_Ex::getSingletonInstance();
     $this->objQuery->begin();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     $this->objQuery->rollback();
     $this->objQuery = null;
@@ -38,5 +41,6 @@
    * 呼び出す前に、$expectedに期待値を、$actualに実際の値を導入してください。
    */
-  protected function verify($message = null) {
+  protected function verify($message = null)
+  {
     $this->assertEquals($this->expected, $this->actual, $message);
   }
@@ -50,5 +54,6 @@
    */
   /**
-  public function testExit() {
+  public function testExit()
+  {
     $resp = new SC_Response_Ex();
     $resp->actionExit();
@@ -64,5 +69,6 @@
    */
   /**
-  public function testDeviceType() {
+  public function testDeviceType()
+  {
     $this->expected = array(DEVICE_TYPE_MOBILE, DEVICE_TYPE_SMARTPHONE);
     $this->actual = array();
@@ -82,5 +88,6 @@
    */
   /**
-  public function testLoginState() {
+  public function testLoginState()
+  {
     $this->expected = array(FALSE, TRUE);
     $this->actual = array();
Index: branches/version-2_12-dev/tests/class/replace/SC_Display_Ex.php
===================================================================
--- branches/version-2_12-dev/tests/class/replace/SC_Display_Ex.php	(revision 22128)
+++ branches/version-2_12-dev/tests/class/replace/SC_Display_Ex.php	(revision 22567)
@@ -4,5 +4,6 @@
  * テスト用にSC_Displayクラスを変更してユーザエージェントを自在に設定できるようにしたクラスです。
  */
-class SC_Display_Ex extends SC_Display {
+class SC_Display_Ex extends SC_Display
+{
 
   /** テスト用に設定した端末種別 */
@@ -15,5 +16,6 @@
    * @return    integer 端末種別ID
    */
-  public static function detectDevice($reset = FALSE) {
+  public static function detectDevice($reset = FALSE)
+  {
     return self::$dummyDevice;
   }
@@ -25,5 +27,6 @@
    * @param     $deviceType 端末種別ID
    */
-  public static function setDummyDevice($deviceType) {
+  public static function setDummyDevice($deviceType)
+  {
     self::$dummyDevice = $deviceType;
   }
Index: branches/version-2_12-dev/tests/class/replace/SC_Response_Ex.php
===================================================================
--- branches/version-2_12-dev/tests/class/replace/SC_Response_Ex.php	(revision 22128)
+++ branches/version-2_12-dev/tests/class/replace/SC_Response_Ex.php	(revision 22567)
@@ -4,5 +4,6 @@
  * テスト用にexitしないSC_Responseクラスです。
  */
-class SC_Response_Ex extends SC_Response {
+class SC_Response_Ex extends SC_Response
+{
 
   /** exitしたかどうかを保持するフラグ */
@@ -14,5 +15,6 @@
    * SC_Response::actionExit()をラップし、PHPをexitさせないようにします。
    */
-  function actionExit() {
+  function actionExit()
+  {
     $this->exited = TRUE;
   }
@@ -22,5 +24,6 @@
    * また、リダイレクト先のパスを取得できるようにします。
    */
-  function sendRedirect($location, $arrQueryString = array(), $inheritQuerySring = false, $useSsl = null) {
+  function sendRedirect($location, $arrQueryString = array(), $inheritQuerySring = false, $useSsl = null)
+  {
     $this->exited = TRUE;
     $this->redirectPath = $location;
@@ -30,5 +33,6 @@
    * actionExit()が呼ばれたかどうかを取得します。
    */
-  public function isExited() {
+  public function isExited()
+  {
     return $this->exited;
   }
@@ -37,5 +41,6 @@
    * sendRedirect()で指定されたパスを取得します。 
    */
-  public function getRedirectPath() {
+  public function getRedirectPath()
+  {
     return $this->redirectPath;
   }
Index: branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setUniqIdTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setUniqIdTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setUniqIdTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Session_setUniqIdTest extends Common_TestCase {
+class SC_Session_setUniqIdTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objSiteSession = new SC_SiteSession_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testSetUniqId_ユニークなID設定する() {
+    public function testSetUniqId_ユニークなID設定する()
+    {
         $this->objSiteSession->setUniqId();
         $this->assertNotEmpty($_SESSION['site']['uniqid'], 'ユニークID');
Index: branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_checkUniqIdTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_checkUniqIdTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_checkUniqIdTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Session_checkUniqIdTest extends Common_TestCase {
+class SC_Session_checkUniqIdTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objSiteSession = new SC_SiteSession_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testCheckUniqId_POST値がない場合_True() {
+    public function testCheckUniqId_POST値がない場合_True()
+    {
         $_POST = null;
         $this->expected = true;
@@ -45,5 +49,6 @@
     }
     
-    public function testCheckUniqId_POSTとセッションのUniqIDが一致する場合_True() {
+    public function testCheckUniqId_POSTとセッションのUniqIDが一致する場合_True()
+    {
         $_POST['uniqid'] = '1234567890';
         $_SESSION['site']['uniqid'] = '1234567890';
@@ -54,5 +59,6 @@
     }
     
-    public function testCheckUniqId_POSTとセッションのUniqIDが一致しない場合_False() {
+    public function testCheckUniqId_POSTとセッションのUniqIDが一致しない場合_False()
+    {
         $_POST['uniqid'] = '0987654321';
         $_SESSION['site']['uniqid'] = '1234567890';
Index: branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_unsetUniqIdTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_unsetUniqIdTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_unsetUniqIdTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Session_unsetUniqIdTest extends Common_TestCase {
+class SC_Session_unsetUniqIdTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objSiteSession = new SC_SiteSession_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testUnsetUniqId_uniqIDを解除する() {
+    public function testUnsetUniqId_uniqIDを解除する()
+    {
         $_SESSION['site']['uniqid'] = '1234567890';
         $this->objSiteSession->unsetUniqId();
Index: branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_getUniqIdTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_getUniqIdTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_getUniqIdTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Session_getUniqIdTest extends Common_TestCase {
+class SC_Session_getUniqIdTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objSiteSession = new SC_SiteSession_Mock();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testGetUniqId_設定済みのユニークなID取得する() {
+    public function testGetUniqId_設定済みのユニークなID取得する()
+    {
         $_SESSION['site']['uniqid'] = '0987654321';
         $this->expected = '0987654321';
@@ -45,5 +49,6 @@
     }
     
-    public function testGetUniqId_新たにユニークなID取得する() {
+    public function testGetUniqId_新たにユニークなID取得する()
+    {
         $_SESSION['site']['uniqid'] = '';
         $this->expected = '1234567890';
@@ -53,6 +58,8 @@
 }
 
-class SC_SiteSession_Mock extends SC_SiteSession_Ex {
-    function setUniqId() {
+class SC_SiteSession_Mock extends SC_SiteSession_Ex
+{
+    function setUniqId()
+    {
         $_SESSION['site']['uniqid'] = '1234567890';
     }
Index: branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_getValueTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_getValueTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_getValueTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Session_getValueTest extends Common_TestCase {
+class SC_Session_getValueTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objSiteSession = new SC_SiteSession_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testSetNowPage_セッションの値を取得する() {
+    public function testSetNowPage_セッションの値を取得する()
+    {
         $this->expected = $_SERVER['SCRIPT_NAME'];
         $this->actual = $this->objSiteSession->getValue('now_page');
Index: branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setNowPageTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setNowPageTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setNowPageTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Session_setNowPageTest extends Common_TestCase {
+class SC_Session_setNowPageTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objSiteSession = new SC_SiteSession_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testSetNowPage_now_pageにパスを設定する() {
+    public function testSetNowPage_now_pageにパスを設定する()
+    {
         $this->expected = 'test.php';
         $this->objSiteSession->setNowPage('test.php');
Index: branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_isPrepageTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_isPrepageTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_isPrepageTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Session_isPrepageTest extends Common_TestCase {
+class SC_Session_isPrepageTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objSiteSession = new SC_SiteSession_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testIsPrepage_sessionが空の場合_false() {
+    public function testIsPrepage_sessionが空の場合_false()
+    {
         $this->expected = false;
         $this->actual = $this->objSiteSession->isPrepage();
@@ -44,5 +48,6 @@
     }
     
-    public function testIsPrepage_prepageとnowpageが違う場合_false() {
+    public function testIsPrepage_prepageとnowpageが違う場合_false()
+    {
         $this->expected = false;
         $_SESSION['site']['pre_page'] = 'test.php';
@@ -51,5 +56,6 @@
     }
     
-    public function testIsPrepage_prepageとnowpageが同じの場合_true() {
+    public function testIsPrepage_prepageとnowpageが同じの場合_true()
+    {
         $this->expected = true;
         $_SESSION['site']['pre_page'] = $_SERVER['SCRIPT_NAME'];
@@ -58,5 +64,6 @@
     }
     
-    public function testIsPrepage_pre_regist_successがtrueの場合_true() {
+    public function testIsPrepage_pre_regist_successがtrueの場合_true()
+    {
         $this->expected = true;
         $_SESSION['site']['pre_page'] = 'test.php';
Index: branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setRegistFlagTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setRegistFlagTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_SiteSession/SC_SiteSession_setRegistFlagTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Session_setRegistFlagTest extends Common_TestCase {
+class SC_Session_setRegistFlagTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objSiteSession = new SC_SiteSession_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testSetRegistFlag_TRUEがセットされる() {
+    public function testSetRegistFlag_TRUEがセットされる()
+    {
         $this->objSiteSession->setRegistFlag();
         $this->assertTrue($_SESSION['site']['regist_success'],'登録成功フラグ');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_arrayDefineIndexesTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_arrayDefineIndexesTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_arrayDefineIndexesTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_arrayDefineIndexesTest extends Common_TestCase {
+class SC_Utils_arrayDefineIndexesTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testArrayDefineIndexes_チェック対象のキーがすべて存在する場合_配列に変化がない() {
+  public function testArrayDefineIndexes_チェック対象のキーがすべて存在する場合_配列に変化がない()
+  {
     $input_array = array('apple' => 'りんご', 'banana' => 'バナナ', 'orange' => 'オレンジ');
     $defineIndexes = array('banana', 'orange');
@@ -54,5 +58,6 @@
   }
 
-  public function testArrayDefineIndexes_チェック対象のキーが一部存在しない場合_配列に追加される() {
+  public function testArrayDefineIndexes_チェック対象のキーが一部存在しない場合_配列に追加される()
+  {
     $input_array = array('apple' => 'りんご', 'banana' => 'バナナ', 'orange' => 'オレンジ');
     $defineIndexes = array('tomato', 'banana', 'kiwi');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrCombineTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrCombineTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrCombineTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfArrCombineTest extends Common_TestCase {
+class SC_Utils_sfArrCombineTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfArrCombine_入力の配列が空の場合_結果も空になる() {
+  public function testSfArrCombine_入力の配列が空の場合_結果も空になる()
+  {
     $keys = array();
     $values = array();
@@ -55,5 +59,6 @@
 
   // TODO 要確認　キーの方が短い場合はエラーで良いのでは？
-  public function testSfArrCombine_入力のキー配列の方が短い場合_余った値の配列の要素は無視される() {
+  public function testSfArrCombine_入力のキー配列の方が短い場合_余った値の配列の要素は無視される()
+  {
     $keys = array('apple', 'banana');
     $values = array('りんご', 'バナナ', 'オレンジ', '梨');
@@ -69,5 +74,6 @@
   }
 
-  public function testSfArrCombine_入力のキー配列の方が長い場合_余ったキーの配列の要素は空になる() {
+  public function testSfArrCombine_入力のキー配列の方が長い場合_余ったキーの配列の要素は空になる()
+  {
     $keys = array('apple', 'banana', 'orange', 'pear');
     $values = array('りんご', 'バナナ');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCommaListTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCommaListTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCommaListTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Utils_sfGetCommaListTest extends Common_TestCase {
+class SC_Utils_sfGetCommaListTest extends Common_TestCase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetCommaList_配列が空の場合_FALSEが返る() {
+  public function testSfGetCommaList_配列が空の場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfGetCommaList(array());
@@ -50,5 +54,6 @@
   }
 
-  public function testSfGetCommaList_スペースフラグが立っている場合_スペース付きで連結される() {
+  public function testSfGetCommaList_スペースフラグが立っている場合_スペース付きで連結される()
+  {
     $this->expected = 'りんご, ミカン, バナナ';
     $this->actual = SC_Utils::sfGetCommaList(
@@ -60,5 +65,6 @@
   }
 
-  public function testSfGetCommaList_スペースフラグが倒れている場合_スペース付きで連結される() {
+  public function testSfGetCommaList_スペースフラグが倒れている場合_スペース付きで連結される()
+  {
     $this->expected = 'りんご,ミカン,バナナ';
     $this->actual = SC_Utils::sfGetCommaList(
@@ -71,5 +77,6 @@
 
   // TODO 要確認：arrpopの役割
-  public function testSfGetCommaList_除外リストが指定されている場合_スペース付きで連結される() {
+  public function testSfGetCommaList_除外リストが指定されている場合_スペース付きで連結される()
+  {
     $this->expected = 'りんご, バナナ';
     $this->actual = SC_Utils::sfGetCommaList(
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetErrorColorTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetErrorColorTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetErrorColorTest.php	(revision 22567)
@@ -32,12 +32,15 @@
  * @version $Id$
  */
-class SC_Utils_sfGetErrorColorTest extends Common_TestCase {
+class SC_Utils_sfGetErrorColorTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
@@ -45,5 +48,6 @@
   /////////////////////////////////////////
   // TODO 要確認 実際には使われていない?
-  public function testSfGetErrorColor_引数が空でない場合_背景色変更用の文字列が返る() {
+  public function testSfGetErrorColor_引数が空でない場合_背景色変更用の文字列が返る()
+  {
     
     $this->expected = 'background-color:#ffe8e8';
@@ -53,5 +57,6 @@
   }
 
-  public function testSfGetErrorColor_引数が空の場合_0バイト文字列が返る() {
+  public function testSfGetErrorColor_引数が空の場合_0バイト文字列が返る()
+  {
     
     $this->expected = '';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_encodeRFC3986Test.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_encodeRFC3986Test.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_encodeRFC3986Test.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_encodeRFC3986Test extends Common_TestCase {
+class SC_Utils_encodeRFC3986Test extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testEncodeRFC3986_チルダが含まれる場合_エンコードされない() {
+  public function testEncodeRFC3986_チルダが含まれる場合_エンコードされない()
+  {
     $input = 'http://www.example.co.jp/~';
     $this->expected = 'http%3A%2F%2Fwww.example.co.jp%2F~';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetUniqRandomIdTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetUniqRandomIdTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetUniqRandomIdTest.php	(revision 22567)
@@ -33,17 +33,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetUniqRandomIdTest extends Common_TestCase {
+class SC_Utils_sfGetUniqRandomIdTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function test_prefix指定が無い場合_21文字のランダムな文字列が生成される() {
+  public function test_prefix指定が無い場合_21文字のランダムな文字列が生成される()
+  {
     $output1 = SC_Utils::sfGetUniqRandomId();
     $output2 = SC_Utils::sfGetUniqRandomId();
@@ -54,5 +58,6 @@
   }
 
-  public function test_prefix指定がある場合_prefixのあとに21文字のランダムな文字列が生成される() {
+  public function test_prefix指定がある場合_prefixのあとに21文字のランダムな文字列が生成される()
+  {
     $output1 = SC_Utils::sfGetUniqRandomId('hello');
     $output2 = SC_Utils::sfGetUniqRandomId('hello');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrayIntersectKeysTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrayIntersectKeysTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrayIntersectKeysTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfArrayIntersectKeysTest extends Common_TestCase {
+class SC_Utils_sfArrayIntersectKeysTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfArrayIntersectKeys_指定キーに含まれるものがない場合_空の配列が返る() {
+  public function testSfArrayIntersectKeys_指定キーに含まれるものがない場合_空の配列が返る()
+  {
     $input_array = array('apple' => 'りんご', 'banana' => 'バナナ', 'orange' => 'オレンジ');
     $key_array = array('kiwi', 'tomato');
@@ -54,5 +58,6 @@
   }
 
-  public function testSfArrayIntersctKeys_指定キーに含まれるものがある場合_含まれるものだけが返る() {
+  public function testSfArrayIntersctKeys_指定キーに含まれるものがある場合_含まれるものだけが返る()
+  {
     $input_array = array('apple' => 'りんご', 'banana' => 'バナナ', 'orange' => 'オレンジ');
     $key_array = array('orange', 'apple');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsMatchHashPassword_authTypeHmacTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsMatchHashPassword_authTypeHmacTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsMatchHashPassword_authTypeHmacTest.php	(revision 22567)
@@ -34,17 +34,21 @@
  * @version $Id$
  */
-class SC_Utils_sfIsMatchHashPassword_authTypeHmacTest extends Common_TestCase {
+class SC_Utils_sfIsMatchHashPassword_authTypeHmacTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfIsMatchHashPassword_ハッシュ化後の文字列が一致する場合_trueが返る() {
+  public function testSfIsMatchHashPassword_ハッシュ化後の文字列が一致する場合_trueが返る()
+  {
     $pass = 'ec-cube';
     $salt = 'salt';
@@ -57,5 +61,6 @@
   }
 
-  public function testSfIsMatchHashPassword_ハッシュ化後の文字列が一致しない場合_falseが返る() {
+  public function testSfIsMatchHashPassword_ハッシュ化後の文字列が一致しない場合_falseが返る()
+  {
     $pass = 'ec-cube';
     $salt = 'salt';
@@ -68,5 +73,6 @@
   }
 
-  public function testSfIsMatchHashPassword_saltが未指定の場合_旧バージョンの暗号化で比較される() {
+  public function testSfIsMatchHashPassword_saltが未指定の場合_旧バージョンの暗号化で比較される()
+  {
     $pass = 'ec-cube';
     $hashpass = sha1($pass . ':' . AUTH_MAGIC);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsHTTPSTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsHTTPSTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsHTTPSTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfIsHTTPSTest extends Common_TestCase {
+class SC_Utils_sfIsHTTPSTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfIsHTTPS_環境変数にSSLを示す値が入っている場合_trueが返る() {
+  public function testSfIsHTTPS_環境変数にSSLを示す値が入っている場合_trueが返る()
+  {
     $_SERVER['HTTPS'] = 'on';
     $this->expected = true;
@@ -52,5 +56,6 @@
   }
 
-  public function testSfIsHTTPS_環境変数に非SSLを示す値が入っている場合_falseが返る() {
+  public function testSfIsHTTPS_環境変数に非SSLを示す値が入っている場合_falseが返る()
+  {
     $_SERVER['HTTPS'] = 'off';
     $this->expected = false;
@@ -60,5 +65,6 @@
   }
 
-  public function testSfIsHTTPS_環境変数に値が入っていない場合_falseが返る() {
+  public function testSfIsHTTPS_環境変数に値が入っていない場合_falseが返る()
+  {
     unset($_SERVER['HTTPS']);
     $this->expected = false;
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_jsonEncodeTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_jsonEncodeTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_jsonEncodeTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_jsonEncodeTest extends Common_TestCase {
+class SC_Utils_jsonEncodeTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testJsonEncode__JSON形式にエンコードされた文字列が返る() {
+  public function testJsonEncode__JSON形式にエンコードされた文字列が返る()
+  {
     $input = array('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5);
     $this->expected = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfErrorHeaderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfErrorHeaderTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfErrorHeaderTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfErrorHeaderTest extends Common_TestCase {
+class SC_Utils_sfErrorHeaderTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfErrorHeader_printフラグがONの場合_指定したメッセージが出力される() {
+  public function testSfErrorHeader_printフラグがONの場合_指定したメッセージが出力される()
+  {
     global $GLOBAL_ERR; 
     $this->expectOutputString($GLOBAL_ERR . '<div id="errorHeader">ERROR MESSAGE</div>');
@@ -50,5 +54,6 @@
   }
 
-  public function testSfErrorHeader_printフラグがOFFの場合_指定したメッセージがグローバル変数に格納される() {
+  public function testSfErrorHeader_printフラグがOFFの場合_指定したメッセージがグローバル変数に格納される()
+  {
     global $GLOBAL_ERR;
     $this->expectOutputString('');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetClassCatCountTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetClassCatCountTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetClassCatCountTest.php	(revision 22567)
@@ -32,18 +32,22 @@
  * @version $Id$
  */
-class SC_Utils_sfGetClassCatCountTest extends Common_TestCase {
+class SC_Utils_sfGetClassCatCountTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpClassCat();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetClassCatCount__規格分類の件数がIDごとに取得できる() {
+  public function testSfGetClassCatCount__規格分類の件数がIDごとに取得できる()
+  {
     
     $this->expected = array(
@@ -58,5 +62,6 @@
   //////////////////////////////////////////
 
-  protected function setUpClassCat() {
+  protected function setUpClassCat()
+  {
     $classes = array(
       array(
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetSearchPageMaxTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetSearchPageMaxTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetSearchPageMaxTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetSearchPageMaxTest extends Common_TestCase {
+class SC_Utils_sfGetSearchPageMaxTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetSearchPageMax_正の整数が指定されている場合_指定の値が返る() {
+  public function testSfGetSearchPageMax_正の整数が指定されている場合_指定の値が返る()
+  {
     
     $this->expected = 100;
@@ -52,5 +56,6 @@
   }
 
-  public function testSfGetSearchPageMax_正の小数が指定されている場合_整数に変換される() {
+  public function testSfGetSearchPageMax_正の小数が指定されている場合_整数に変換される()
+  {
     
     $this->expected = 99;
@@ -60,5 +65,6 @@
   }
 
-  public function testSfGetSearchPageMax_負の数が指定されている場合_デフォルト値が返る() {
+  public function testSfGetSearchPageMax_負の数が指定されている場合_デフォルト値が返る()
+  {
     
     $this->expected = SEARCH_PMAX;
@@ -68,5 +74,6 @@
   }
 
-  public function testSfGetSearchPageMax_指定がない場合_デフォルト値が返る() {
+  public function testSfGetSearchPageMax_指定がない場合_デフォルト値が返る()
+  {
     
     $this->expected = SEARCH_PMAX;
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCalcIncTaxTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCalcIncTaxTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCalcIncTaxTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Utils_sfCalcIncTaxTest extends Common_TestCase {
+class SC_Utils_sfCalcIncTaxTest extends Common_TestCase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfCalcIncTax_四捨五入の場合_四捨五入の結果になる() {
+  public function testSfCalcIncTax_四捨五入の場合_四捨五入の結果になる()
+  {
     $this->expected = array(141, 152);
     $this->actual[0] = SC_Utils::sfCalcIncTax(140, 1, 1); // 1:四捨五入
@@ -51,5 +55,6 @@
   }
 
-  public function testSfCalcIncTax_切り捨ての場合_切り捨ての結果になる() {
+  public function testSfCalcIncTax_切り捨ての場合_切り捨ての結果になる()
+  {
     $this->expected = array(142, 153);
     $this->actual[0] = SC_Utils::sfCalcIncTax(140, 2, 2); // 2:切り捨て
@@ -59,5 +64,6 @@
   }
 
-  public function testSfCalcIncTax_切り上げの場合_切り上げの結果になる() {
+  public function testSfCalcIncTax_切り上げの場合_切り上げの結果になる()
+  {
     $this->expected = array(142, 152);
     $this->actual[0] = SC_Utils::sfCalcIncTax(140, 1, 3); // 3:切り上げ
@@ -67,5 +73,6 @@
   }
 
-  public function testSfCalcIncTax_それ以外の場合_切り上げの結果になる() {
+  public function testSfCalcIncTax_それ以外の場合_切り上げの結果になる()
+  {
     $this->expected = array(142, 152);
     $this->actual[0] = SC_Utils::sfCalcIncTax(140, 1, 4);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCopyDirtest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCopyDirtest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCopyDirtest.php	(revision 22567)
@@ -32,9 +32,11 @@
  * @version $Id$
  */
-class SC_Utils_sfCopyDirTest extends Common_TestCase {
+class SC_Utils_sfCopyDirTest extends Common_TestCase
+{
 
   static $TMP_DIR;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
     self::$TMP_DIR = realpath(dirname(__FILE__)) . "/../../../tmp";
@@ -43,10 +45,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfCopyDir_ディレクトリでない場合_falseを返し何もしない() {
+  public function testSfCopyDir_ディレクトリでない場合_falseを返し何もしない()
+  {
     mkdir(self::$TMP_DIR . "/src", 0777, true);
     $fp = fopen(self::$TMP_DIR . "/src/test.txt", "w");
@@ -67,5 +71,6 @@
   }
 
-  public function testSfCopyDir_コピー先のディレクトリが存在しない場合_新たに作成する() {
+  public function testSfCopyDir_コピー先のディレクトリが存在しない場合_新たに作成する()
+  {
     mkdir(self::$TMP_DIR . "/src", 0777, true);
     $fp = fopen(self::$TMP_DIR . "/src/test.txt", "w");
@@ -89,5 +94,6 @@
   // TODO CVS以下のEntriesなどはコピーされないが、CVSという親ディレクトリはコピーされてしまう。
   // そもそも、CVSだけ特別扱いする意味がないような…
-  public function testSfCopyDir_コピー先のディレクトリが存在する場合_そのままコピーする() {
+  public function testSfCopyDir_コピー先のディレクトリが存在する場合_そのままコピーする()
+  {
     mkdir(self::$TMP_DIR . "/src", 0777, true);
     mkdir(self::$TMP_DIR . "/dst", 0777, true); // コピー先も作成しておく
@@ -130,5 +136,6 @@
   }
 
-  public function testSfCopyDir_上書きフラグがONの場合_同名ファイルが上書きされる() {
+  public function testSfCopyDir_上書きフラグがONの場合_同名ファイルが上書きされる()
+  {
     mkdir(self::$TMP_DIR . "/src", 0777, true);
     mkdir(self::$TMP_DIR . "/dst", 0777, true); // コピー先も作成しておく
@@ -159,5 +166,6 @@
   }
 
-  public function testSfCopyDir_上書きフラグがONかつ書き込み権限がない場合_同名ファイルが上書きされない() {
+  public function testSfCopyDir_上書きフラグがONかつ書き込み権限がない場合_同名ファイルが上書きされない()
+  {
     mkdir(self::$TMP_DIR . "/src", 0777, true);
     mkdir(self::$TMP_DIR . "/dst", 0777, true); // コピー先も作成しておく
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_getHash2ArrayTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_getHash2ArrayTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_getHash2ArrayTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_getHash2ArrayTest extends Common_TestCase {
+class SC_Utils_getHash2ArrayTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testGetHash2Array_必須キー指定がない場合_値のみの配列が返る() {
+  public function testGetHash2Array_必須キー指定がない場合_値のみの配列が返る()
+  {
     $input_array = array('apple' => 'りんご', 'banana' => 'バナナ', 'orange' => 'オレンジ');
     $this->expected = array('りんご', 'バナナ', 'オレンジ');
@@ -52,5 +56,6 @@
   }
 
-  public function testGetHash2Array_必須キー指定がある場合_指定キーの値のみの配列が返る() {
+  public function testGetHash2Array_必須キー指定がある場合_指定キーの値のみの配列が返る()
+  {
     $input_array = array('apple' => 'りんご', 'banana' => 'バナナ', 'orange' => 'オレンジ');
     $requires = array('banana', 'apple');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTrimTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTrimTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTrimTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Utils_sfTrimTest extends Common_TestCase {
+class SC_Utils_sfTrimTest extends Common_TestCase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfTrim_文頭と途中にホワイトスペースがある場合_文頭だけが除去できる() {
+  public function testSfTrim_文頭と途中にホワイトスペースがある場合_文頭だけが除去できる()
+  {
     $this->expected = 'あ　い うえ' . chr(0x0D) . 'お';
     // 0x0A=CR, 0x0d=LF
@@ -51,5 +55,6 @@
   }
   
-  public function testSfTrim_途中と文末にホワイトスペースがある場合_文末だけが除去できる() {
+  public function testSfTrim_途中と文末にホワイトスペースがある場合_文末だけが除去できる()
+  {
     $this->expected = 'あ　い うえ' . chr(0x0D) . 'お';
     // 0x0A=CR, 0x0d=LF
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPrintRTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPrintRTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPrintRTest.php	(revision 22567)
@@ -32,12 +32,15 @@
  * @version $Id$
  */
-class SC_Utils_sfPrintRTest extends Common_TestCase {
+class SC_Utils_sfPrintRTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
@@ -46,5 +49,6 @@
   // TODO 環境により出力形式が異なるため、テスト不可(デバッグ用なので、テストしなくてもよさそう)
   /**
-  public function testSfPrintR__指定したオブジェクトの情報が出力される() {
+  public function testSfPrintR__指定したオブジェクトの情報が出力される()
+  {
     $output = '<div style="font-size: 12px;color: #00FF00;">' . "\n"
       . '<strong>**デバッグ中**</strong><br />' . "\n"
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfNoImageMainListTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfNoImageMainListTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfNoImageMainListTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfNoImageMainListTest extends Common_TestCase {
+class SC_Utils_sfNoImageMainListTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfNoImageMainList_ファイル名が空の場合_デフォルトのファイル名が返る() {
+  public function testSfNoImageMainList_ファイル名が空の場合_デフォルトのファイル名が返る()
+  {
     $this->expected = 'noimage_main_list.jpg';
     $this->actual = SC_Utils::sfNoImageMainList('');
@@ -51,5 +55,6 @@
   }
 
-  public function testSfNoImageMainList_ディレクトリが指定されている場合_そのディレクトリ以下でデフォルトのファイル名が返る() {
+  public function testSfNoImageMainList_ディレクトリが指定されている場合_そのディレクトリ以下でデフォルトのファイル名が返る()
+  {
     $this->expected = 'aaa/bbb/noimage_main_list.jpg';
     $this->actual = SC_Utils::sfNoImageMainList('aaa/bbb/');
@@ -58,5 +63,6 @@
   }
 
-  public function testSfNoImageMainList_ファイル名が指定されている場合_指定されたファイル名が返る() {
+  public function testSfNoImageMainList_ファイル名が指定されている場合_指定されたファイル名が返る()
+  {
     $this->expected = 'aaa/bbb/ccc.png';
     $this->actual = SC_Utils::sfNoImageMainList('aaa/bbb/ccc.png');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetProductClassIdTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetProductClassIdTest.php	(revision 22532)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetProductClassIdTest.php	(revision 22567)
@@ -32,18 +32,22 @@
  * @version $Id$
  */
-class SC_Utils_sfGetProductClassIdTest extends Common_TestCase {
+class SC_Utils_sfGetProductClassIdTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpProductsClass();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetProductClassId_存在する製品IDのみを指定した場合_カテゴリ0の対応する製品クラスが取得できる() {
+  public function testSfGetProductClassId_存在する製品IDのみを指定した場合_カテゴリ0の対応する製品クラスが取得できる()
+  {
     
     $this->expected = '2001';
@@ -53,5 +57,6 @@
   }
 
-  public function testSfGetProductClassId_存在する製品IDのみを指定してカテゴリ0の製品クラスが存在しなければ_nullが返る() {
+  public function testSfGetProductClassId_存在する製品IDのみを指定してカテゴリ0の製品クラスが存在しなければ_nullが返る()
+  {
     
     $this->expected = null;
@@ -61,5 +66,6 @@
   }
 
-  public function testSfGetProductClassId_存在する製品IDとカテゴリIDを指定した場合_対応する製品クラスが取得できる() {
+  public function testSfGetProductClassId_存在する製品IDとカテゴリIDを指定した場合_対応する製品クラスが取得できる()
+  {
     
     $this->expected = '1002';
@@ -69,5 +75,6 @@
   }
 
-  public function testSfGetProductClassId_存在する製品IDと存在しないカテゴリIDを指定した場合_nullが返る() {
+  public function testSfGetProductClassId_存在する製品IDと存在しないカテゴリIDを指定した場合_nullが返る()
+  {
     
     $this->expected = null;
@@ -77,5 +84,6 @@
   }
 
-  public function testSfGetProductClassId_存在しない製品IDを指定した場合_nullが返る() {
+  public function testSfGetProductClassId_存在しない製品IDを指定した場合_nullが返る()
+  {
     $this->expected = null;
     $this->actual = SC_Utils::sfGetProductClassId('9999');
@@ -85,5 +93,6 @@
 
   //////////////////////////////////////////
-  protected function setUpProductsClass() {
+  protected function setUpProductsClass()
+  {
     $products_class = array(
       array(
@@ -113,5 +122,6 @@
 
     $this->objQuery->delete('dtb_products_class');
-    foreach ($products_class as $item) {
+    foreach ($products_class as $item)
+{
       $this->objQuery->insert('dtb_products_class', $item);
     }
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsIntTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsIntTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsIntTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Utils_sfIsIntTest extends Common_TestCase {
+class SC_Utils_sfIsIntTest extends Common_TestCase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfIsInt_0バイト文字列の場合_FALSEが返る() {
+  public function testSfIsInt_0バイト文字列の場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfIsInt('');
@@ -50,5 +54,6 @@
   }
 
-  public function testSfIsInt_intの最大長より長い場合_FALSEが返る() {
+  public function testSfIsInt_intの最大長より長い場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfIsInt('10000000000');
@@ -57,5 +62,6 @@
   }
 
-  public function testSfIsInt_intの最大値ギリギリの場合_TRUEが返る() {
+  public function testSfIsInt_intの最大値ギリギリの場合_TRUEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfIsInt('2147483647');
@@ -64,5 +70,6 @@
   }
 
-  public function testSfIsInt_intの最大値を超える場合_FALSEが返る() {
+  public function testSfIsInt_intの最大値を超える場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfIsInt('2147483648');
@@ -71,5 +78,6 @@
   }
 
-  public function testSfIsInt_数値でない場合_FALSEが返る() {
+  public function testSfIsInt_数値でない場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfIsInt('HELLO123');
@@ -78,5 +86,6 @@
   }
 
-  public function testSfIsInt_正の整数の場合_TRUEが返る() {
+  public function testSfIsInt_正の整数の場合_TRUEが返る()
+  {
     $this->expected = TRUE;
     $this->actual = SC_Utils::sfIsInt('123456789');
@@ -87,5 +96,6 @@
   // TODO 「整数かどうか」という関数名なのでここはFALSEになるべきでは？
   /**
-  public function testSfIsInt_正の小数の場合_FALSEが返る() {
+  public function testSfIsInt_正の小数の場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfIsInt('123.456');
@@ -95,5 +105,6 @@
   */
 
-  public function testSfIsInt_負の整数の場合_TRUEが返る() {
+  public function testSfIsInt_負の整数の場合_TRUEが返る()
+  {
     $this->expected = TRUE;
     $this->actual = SC_Utils::sfIsInt('-12345678');
@@ -104,5 +115,6 @@
   // TODO 文字列長でチェックしているので負の場合は範囲が小さくなっている
   /**
-  public function testSfIsInt_負の整数で桁数が最大の場合_TRUEが返る() {
+  public function testSfIsInt_負の整数で桁数が最大の場合_TRUEが返る()
+  {
     $this->expected = TRUE;
     $this->actual = SC_Utils::sfIsInt('-123456789');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsMatchHashPassword_authTypePlainTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsMatchHashPassword_authTypePlainTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsMatchHashPassword_authTypePlainTest.php	(revision 22567)
@@ -34,12 +34,15 @@
  * @version $Id$
  */
-class SC_Utils_sfIsMatchHashPassword_authTypePlainTest extends Common_TestCase {
+class SC_Utils_sfIsMatchHashPassword_authTypePlainTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
@@ -47,5 +50,6 @@
   /////////////////////////////////////////
   /**
-  public function testSfIsMatchHashPassword_文字列が一致する場合_trueが返る() {
+  public function testSfIsMatchHashPassword_文字列が一致する場合_trueが返る()
+  {
     $pass = 'ec-cube';
     $hashpass = 'ec-cube';
@@ -57,5 +61,6 @@
   }
 
-  public function testSfIsMatchHashPassword_文字列が一致しない場合_falseが返る() {
+  public function testSfIsMatchHashPassword_文字列が一致しない場合_falseが返る()
+  {
     $pass = 'ec-cube';
     $hashpass = 'EC-cube';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCSVListTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCSVListTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCSVListTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetCSVListTest extends Common_TestCase {
+class SC_Utils_sfGetCSVListTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetCSVList_配列が空の場合_falseが返る() {
+  public function testSfGetCSVList_配列が空の場合_falseが返る()
+  {
     
     $this->expected = FALSE;
@@ -52,5 +56,6 @@
   }
 
-  public function testSfGetCSVList_配列に要素が存在する場合_CSV形式に変換した文字列が返る() {
+  public function testSfGetCSVList_配列に要素が存在する場合_CSV形式に変換した文字列が返る()
+  {
     
     $this->expected = '"1つ目の要素","カンマを,含む要素","3つ目の要素"' . "\r\n";
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMakeHiddenArrayTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMakeHiddenArrayTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMakeHiddenArrayTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfMakeHiddenArrayest extends Common_TestCase {
+class SC_Utils_sfMakeHiddenArrayest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfMakeHiddenArray__多段配列が1次元配列に変換される() {
+  public function testSfMakeHiddenArray__多段配列が1次元配列に変換される()
+  {
     $input_array = array(
       'vegetable' => '野菜',
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isBlankTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isBlankTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isBlankTest.php	(revision 22567)
@@ -32,92 +32,111 @@
  * @version $Id$
  */
-class SC_Utils_isBlankTest extends Common_TestCase {
+class SC_Utils_isBlankTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testIsBlank_0バイト文字列の場合_trueが返る() {
+  public function testIsBlank_0バイト文字列の場合_trueが返る()
+  {
     $input = '';
     $this->assertTrue(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_全角スペースの場合_trueが返る() {
+  public function testIsBlank_全角スペースの場合_trueが返る()
+  {
     $input = '　';
     $this->assertTrue(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_greedy指定なしで全角スペースの場合_falseが返る() {
+  public function testIsBlank_greedy指定なしで全角スペースの場合_falseが返る()
+  {
     $input = '　';
     $this->assertFalse(SC_Utils::isBlank($input, false), $input);
   }
 
-  public function testIsBlank_空の配列の場合_trueが返る() {
+  public function testIsBlank_空の配列の場合_trueが返る()
+  {
     $input = array();
     $this->assertTrue(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_ネストした配列の場合_trueが返る() {
+  public function testIsBlank_ネストした配列の場合_trueが返る()
+  {
     $input = array(array(array()));
     $this->assertTrue(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_greedy指定なしでネストした配列の場合_falseが返る() {
+  public function testIsBlank_greedy指定なしでネストした配列の場合_falseが返る()
+  {
     $input = array(array(array()));
     $this->assertFalse(SC_Utils::isBlank($input, false), $input);
   }
 
-  public function testIsBlank_空でない配列の場合_falseが返る() {
+  public function testIsBlank_空でない配列の場合_falseが返る()
+  {
     $input = array(array(array('1')));
     $this->assertFalse(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_greedy指定なしで空でない配列の場合_falseが返る() {
+  public function testIsBlank_greedy指定なしで空でない配列の場合_falseが返る()
+  {
     $input = array(array(array('1')));
     $this->assertFalse(SC_Utils::isBlank($input, false), $input);
   }
 
-  public function testIsBlank_全角スペースと空白の組み合わせの場合_trueが返る() {
+  public function testIsBlank_全角スペースと空白の組み合わせの場合_trueが返る()
+  {
     $input = "　\n　";
     $this->assertTrue(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_greedy指定なしで全角スペースと空白の組み合わせの場合_falseが返る() {
+  public function testIsBlank_greedy指定なしで全角スペースと空白の組み合わせの場合_falseが返る()
+  {
     $input = "　\n　";
     $this->assertFalse(SC_Utils::isBlank($input, false), $input);
   }
 
-  public function testIsBlank_全角スペースと非空白の組み合わせの場合_falseが返る() {
+  public function testIsBlank_全角スペースと非空白の組み合わせの場合_falseが返る()
+  {
     $input = '　A　';
     $this->assertFalse(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_greedy指定なしで全角スペースと非空白の組み合わせの場合_falseが返る() {
+  public function testIsBlank_greedy指定なしで全角スペースと非空白の組み合わせの場合_falseが返る()
+  {
     $input = '　A　';
     $this->assertFalse(SC_Utils::isBlank($input, false), $input);
   }
 
-  public function testIsBlank_数値のゼロを入力した場合_falseが返る() {
+  public function testIsBlank_数値のゼロを入力した場合_falseが返る()
+  {
     $input = 0;
     $this->assertFalse(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_値が空の配列を入力した場合_trueが返る() {
+  public function testIsBlank_値が空の配列を入力した場合_trueが返る()
+  {
     $input = array("");
     $this->assertTrue(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_すべてのホワイトスペースを並べた場合_trueが返る() {
+  public function testIsBlank_すべてのホワイトスペースを並べた場合_trueが返る()
+  {
     $input = " \t　\n\r\x0B\0";
     $this->assertTrue(SC_Utils::isBlank($input), $input);
   }
 
-  public function testIsBlank_通常の文字が含まれている場合_falseが返る() {
+  public function testIsBlank_通常の文字が含まれている場合_falseが返る()
+  {
     $input = " AB \n\t";
     $this->assertFalse(SC_Utils::isBlank($input), $input);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfEncodeFileTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfEncodeFileTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfEncodeFileTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfEncodeFileTest extends Common_TestCase {
+class SC_Utils_sfEncodeFileTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfEncodeFile_ファイルが正常に開けた場合_ファイルがエンコードされ出力先のパスが取得できる() {
+  public function testSfEncodeFile_ファイルが正常に開けた場合_ファイルがエンコードされ出力先のパスが取得できる()
+  {
     $outdir = realpath(dirname(__FILE__)) . "/../../../tmp/enc_output/";
     SC_Helper_FileManager::deleteFile($outdir);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetAddPointTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetAddPointTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetAddPointTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetAddPointTest extends Common_TestCase {
+class SC_Utils_sfGetAddPointTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetAddPoint_計算結果が正になる場合_値がそのまま返る() {
+  public function testSfGetAddPoint_計算結果が正になる場合_値がそのまま返る()
+  {
     $totalpoint = 100;
     $use_point = 2000;
@@ -55,5 +59,6 @@
   }
 
-  public function testSfGetAddPoint_計算結果が負になる場合_0が返る() {
+  public function testSfGetAddPoint_計算結果が負になる場合_0が返る()
+  {
     $totalpoint = 70;
     $use_point = 2000;
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetTimestampTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetTimestampTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetTimestampTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetTimestampTest extends Common_TestCase {
+class SC_Utils_sfGetTimestampTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetTimestamp_年が設定されていない場合_0バイト文字列が返る() {
+  public function testSfGetTimestamp_年が設定されていない場合_0バイト文字列が返る()
+  {
     $year = '';
     $month = '10';
@@ -54,5 +58,6 @@
   }
 
-  public function testSfGetTimestamp_月が設定されていない場合_0バイト文字列が返る() {
+  public function testSfGetTimestamp_月が設定されていない場合_0バイト文字列が返る()
+  {
     $year = '2012';
     $month = '';
@@ -64,5 +69,6 @@
   }
 
-  public function testSfGetTimestamp_日が設定されていない場合_0バイト文字列が返る() {
+  public function testSfGetTimestamp_日が設定されていない場合_0バイト文字列が返る()
+  {
     $year = '1999';
     $month = '09';
@@ -74,5 +80,6 @@
   }
 
-  public function testSfGetTimestamp_年月日すべて設定されている場合_連結された文字列が返る() {
+  public function testSfGetTimestamp_年月日すべて設定されている場合_連結された文字列が返る()
+  {
     $year = '1999';
     $month = '09';
@@ -85,5 +92,6 @@
   }
 
-  public function testSfGetTimestamp_最終時刻フラグがONの場合_時刻が深夜のものになる() {
+  public function testSfGetTimestamp_最終時刻フラグがONの場合_時刻が深夜のものになる()
+  {
     $year = '1999';
     $month = '09';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPassLenTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPassLenTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPassLenTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_getSfPassLenTest extends Common_TestCase {
+class SC_Utils_getSfPassLenTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfPassLen_入力が0の場合_0バイト文字列が返る() {
+  public function testSfPassLen_入力が0の場合_0バイト文字列が返る()
+  {
     $input = '';
     $this->expected = '';
@@ -52,5 +56,6 @@
   }
 
-  public function testSfPassLen_入力が正の数の場合_入力と同じ文字数のアスタリスクが返る() {
+  public function testSfPassLen_入力が正の数の場合_入力と同じ文字数のアスタリスクが返る()
+  {
     $input = 17;
     $this->expected = '*****************';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_copyDirectoryTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_copyDirectoryTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_copyDirectoryTest.php	(revision 22567)
@@ -32,9 +32,11 @@
  * @version $Id$
  */
-class SC_Utils_copyDirectoryTest extends Common_TestCase {
+class SC_Utils_copyDirectoryTest extends Common_TestCase
+{
 
   static $TMP_DIR;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
     self::$TMP_DIR = realpath(dirname(__FILE__)) . "/../../../tmp";
@@ -43,10 +45,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testCopyDirectory_存在するパスの場合_指定したパス以下が再帰的にコピーされる() {
+  public function testCopyDirectory_存在するパスの場合_指定したパス以下が再帰的にコピーされる()
+  {
     /**
      * tests/tmp/src
@@ -74,5 +78,6 @@
   }
 
-  public function testCopyDirectory_存在しないパスの場合_何も起こらない() {
+  public function testCopyDirectory_存在しないパスの場合_何も起こらない()
+  {
     /**
      * tests/tmp/src
@@ -92,5 +97,6 @@
   }
 
-  public function testCopyDirectory_コピー先のディレクトリが元々存在する場合_上書きされる() {
+  public function testCopyDirectory_コピー先のディレクトリが元々存在する場合_上書きされる()
+  {
     /**
      * tests/tmp/src
@@ -120,5 +126,6 @@
   }
 
-  public function testCopyDirectory_コピー先のファイルが元々存在する場合_上書きされる() {
+  public function testCopyDirectory_コピー先のファイルが元々存在する場合_上書きされる()
+  {
     /**
      * tests/tmp/src
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMbConvertEncodingTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMbConvertEncodingTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMbConvertEncodingTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfMbConvertEncodingTest extends Common_TestCase {
+class SC_Utils_sfMbConvertEncodingTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfMbConvertEncoding_MS932の場合_エラーが起きない() {
+  public function testSfMbConvertEncoding_MS932の場合_エラーが起きない()
+  {
     $input = 'あいうえお、今日は良い天気です。';
     $encode = 'MS932';
@@ -51,5 +55,6 @@
   }
 
-  public function testSfMbConvertEncoding_UTF8の場合_エラーが起きない() {
+  public function testSfMbConvertEncoding_UTF8の場合_エラーが起きない()
+  {
     $input = 'あいうえお、今日は良い天気です。';
     $encode = 'UTF8';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetRandomStringTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetRandomStringTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetRandomStringTest.php	(revision 22567)
@@ -32,11 +32,14 @@
  * @version $Id$
  */
-class SC_Utils_sfGetRandomStringTest extends Common_TestCase {
+class SC_Utils_sfGetRandomStringTest extends Common_TestCase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
@@ -44,5 +47,6 @@
   /////////////////////////////////////////
   // ランダムな文字列取得なので、文字列長のみ確認します。
-  public function testSfGetRandomString_文字列長未指定の場合_長さ1の文字列が取得できる() {
+  public function testSfGetRandomString_文字列長未指定の場合_長さ1の文字列が取得できる()
+  {
     $this->expected = 1;
     $this->actual = strlen(SC_Utils::sfGetRandomString());
@@ -51,5 +55,6 @@
   }
 
-  public function testSfGetRandomString_文字列長指定ありの場合_指定した長さの文字列が取得できる() {
+  public function testSfGetRandomString_文字列長指定ありの場合_指定した長さの文字列が取得できる()
+  {
     $this->expected = 10;
     $this->actual = strlen(SC_Utils::sfGetRandomString(10));
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isInternalDomainTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isInternalDomainTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isInternalDomainTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfIsInternalDomainTest extends Common_TestCase {
+class SC_Utils_sfIsInternalDomainTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testsfIsInternalDomain_ドメインが一致する場合_trueが返る() {
+  public function testsfIsInternalDomain_ドメインが一致する場合_trueが返る()
+  {
     $url = 'http://test.local/html/index.php';
     $this->expected = TRUE;
@@ -52,5 +56,6 @@
   }
 
-  public function testsfIsInternalDomain_アンカーを含むURLの場合_trueが返る() {
+  public function testsfIsInternalDomain_アンカーを含むURLの場合_trueが返る()
+  {
     $url = 'http://test.local/html/index.php#hoge';
     $this->expected = TRUE;
@@ -60,5 +65,6 @@
   }
 
-  public function testsfIsInternalDomain_ドメインが一致しない場合_falseが返る() {
+  public function testsfIsInternalDomain_ドメインが一致しない場合_falseが返る()
+  {
     $url = 'http://test.local.jp/html/index.php';
     $this->expected = TRUE;
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsSucceessTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsSucceessTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsSucceessTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfIsSuccessTest extends Common_TestCase {
+class SC_Utils_sfIsSuccessTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfIsSuccess_認証に失敗している場合_falseが返る() {
+  public function testSfIsSuccess_認証に失敗している場合_falseが返る()
+  {
     $objSess = new SC_Session_Mock();
     $objSess->is_success = SUCCESS + 1;
@@ -54,5 +58,6 @@
   }
 
-  public function testSfIsSuccess_認証成功でリファラがない場合_trueが返る() {
+  public function testSfIsSuccess_認証成功でリファラがない場合_trueが返る()
+  {
     $objSess = new SC_Session_Mock();
     $objSess->is_success = SUCCESS;
@@ -65,5 +70,6 @@
 
   // TODO 正規のドメインであることは確認しているが、管理画面からというのはチェックしていないのでは？
-  public function testSfIsSuccess_認証成功でリファラが正しい場合_trueが返る() {
+  public function testSfIsSuccess_認証成功でリファラが正しい場合_trueが返る()
+  {
     $objSess = new SC_Session_Mock();
     $objSess->is_success = SUCCESS;
@@ -76,5 +82,6 @@
   }
 
-  public function testSfIsSuccess_認証成功でリファラが不正な場合_falseが返る() {
+  public function testSfIsSuccess_認証成功でリファラが不正な場合_falseが返る()
+  {
     $objSess = new SC_Session_Mock();
     $objSess->is_success = SUCCESS;
@@ -91,9 +98,11 @@
 }
 
-class SC_Session_Mock extends SC_Session {
+class SC_Session_Mock extends SC_Session
+{
 
   public $is_success;
 
-  function IsSuccess() {
+  function IsSuccess()
+  {
     return $this->is_success;
   }
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMultiplyTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMultiplyTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfMultiplyTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfMultiplyTest extends Common_TestCase {
+class SC_Utils_sfMultiplyTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfMultiply__掛け算の結果が返る() {
+  public function testSfMultiply__掛け算の結果が返る()
+  {
     $this->expected = 520;
     $this->actual = SC_Utils::sfMultiply(13, 40);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsZeroFillingTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsZeroFillingTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfIsZeroFillingTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Utils_sfIsZeroFillingTest extends Common_TestCase {
+class SC_Utils_sfIsZeroFillingTest extends Common_TestCase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfIsZeroFilling_桁数が1の場合_FALSEを返す() {
+  public function testSfIsZeroFilling_桁数が1の場合_FALSEを返す()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfIsZeroFilling('0');
@@ -50,5 +54,6 @@
   }
 
-  public function testSfIsZeroFilling_桁数が2以上で0埋めされていない場合_FALSEを返す() {
+  public function testSfIsZeroFilling_桁数が2以上で0埋めされていない場合_FALSEを返す()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Utils::sfIsZeroFilling('12');
@@ -57,5 +62,6 @@
   }
 
-  public function testSfIsZeroFilling_桁数が2以上で0埋めされている場合_TRUEを返す() {
+  public function testSfIsZeroFilling_桁数が2以上で0埋めされている場合_TRUEを返す()
+  {
     $this->expected = TRUE;
     $this->actual = SC_Utils::sfIsZeroFilling('01');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfFlushTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfFlushTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfFlushTest.php	(revision 22567)
@@ -33,17 +33,21 @@
  * @version $Id$
  */
-class SC_Utils_sfFlushTest extends Common_TestCase {
+class SC_Utils_sfFlushTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfFlush_IEの場合_フラッシュされる() {
+  public function testSfFlush_IEの場合_フラッシュされる()
+  {
     $this->expectOutputString('');
     echo 'Hello, World!!';
@@ -51,5 +55,6 @@
   }
 
-  public function testSfFlush_文字列を指定した場合_フラッシュされる() {
+  public function testSfFlush_文字列を指定した場合_フラッシュされる()
+  {
     $this->expectOutputString('');
     echo 'Hello, World!!';
@@ -57,5 +62,6 @@
   }
 
-  public function testSfFlush_参考_この関数を呼ばないとバッファに出力が残る() {
+  public function testSfFlush_参考_この関数を呼ばないとバッファに出力が残る()
+  {
     $this->expectOutputString('Hello, World!!');
     echo 'Hello, World!!';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCutStringTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCutStringTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfCutStringTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfCutStringTest extends Common_TestCase {
+class SC_Utils_sfCutStringTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfCutString_マルチバイト指定で指定長より2文字以上長い場合_指定長でカットされる() {
+  public function testSfCutString_マルチバイト指定で指定長より2文字以上長い場合_指定長でカットされる()
+  {
     $input = 'あいうえおABC、こんにちは。';
     $this->expected = 'あいうえおABC、こんにち...';
@@ -52,5 +56,6 @@
   }
 
-  public function testSfCutString_マルチバイト指定で指定長より1文字長い場合_カットされない() {
+  public function testSfCutString_マルチバイト指定で指定長より1文字長い場合_カットされない()
+  {
     $input = 'あいうえおABC、こんにちは';
     $this->expected = 'あいうえおABC、こんにちは';
@@ -60,5 +65,6 @@
   }
 
-  public function testSfCutString_マルチバイト指定で指定長以内の場合_カットされない() {
+  public function testSfCutString_マルチバイト指定で指定長以内の場合_カットされない()
+  {
     $input = 'あいうえおABC、こんにち';
     $this->expected = 'あいうえおABC、こんにち';
@@ -68,5 +74,6 @@
   }
 
-  public function testSfCutString_1バイト指定で指定長より3文字以上長い場合_指定長でカットされる() {
+  public function testSfCutString_1バイト指定で指定長より3文字以上長い場合_指定長でカットされる()
+  {
     $input = 'hello, world!!';
     $this->expected = 'hello, worl...';
@@ -76,5 +83,6 @@
   }
 
-  public function testSfCutString_1バイト指定で指定長より2文字長い場合_カットされない() {
+  public function testSfCutString_1バイト指定で指定長より2文字長い場合_カットされない()
+  {
     $input = 'hello, world!';
     $this->expected = 'hello, world!';
@@ -84,5 +92,6 @@
   }
 
-  public function testSfCutString_1バイト指定で指定長より1文字長い場合_カットされない() {
+  public function testSfCutString_1バイト指定で指定長より1文字長い場合_カットされない()
+  {
     $input = 'hello, world';
     $this->expected = 'hello, world';
@@ -92,5 +101,6 @@
   }
 
-  public function testSfCutString_1バイト指定で指定長以内の場合_カットされない() {
+  public function testSfCutString_1バイト指定で指定長以内の場合_カットされない()
+  {
     $input = 'hello, worl';
     $this->expected = 'hello, worl';
@@ -101,5 +111,6 @@
 
   // [までの場合
-  public function testSfCutString_絵文字を含んでカットされる場合_中途半端な絵文字がカットされる1() {
+  public function testSfCutString_絵文字を含んでカットされる場合_中途半端な絵文字がカットされる1()
+  {
     $input = "hello[emoji:135], world.";
     $this->expected = 'hello...';
@@ -110,5 +121,6 @@
 
   // ]の直前までの場合
-  public function testSfCutString_絵文字を含んでカットされる場合_中途半端な絵文字がカットされる2() {
+  public function testSfCutString_絵文字を含んでカットされる場合_中途半端な絵文字がカットされる2()
+  {
     $input = "hello[emoji:135], world.";
     $this->expected = 'hello...';
@@ -119,5 +131,6 @@
 
   // 最初の絵文字の途中
-  public function testSfCutString_複数の絵文字を含んでいてカットされる場合_中途半端な絵文字がカットされる1() {
+  public function testSfCutString_複数の絵文字を含んでいてカットされる場合_中途半端な絵文字がカットされる1()
+  {
     $input = "hello[emoji:100][emoji:20], world![emoji:10]";
     $this->expected = 'hello...';
@@ -128,5 +141,6 @@
 
   // 2つめの絵文字の途中
-  public function testSfCutString_複数の絵文字を含んでいてカットされる場合_中途半端な絵文字がカットされる2() {
+  public function testSfCutString_複数の絵文字を含んでいてカットされる場合_中途半端な絵文字がカットされる2()
+  {
     $input = "hello[emoji:100][emoji:20], world![emoji:10]";
     $this->expected = 'hello[emoji:100]...';
@@ -137,5 +151,6 @@
 
   // 3つめの絵文字の途中
-  public function testSfCutString_複数の絵文字を含んでいてカットされる場合_中途半端な絵文字がカットされる3() {
+  public function testSfCutString_複数の絵文字を含んでいてカットされる場合_中途半端な絵文字がカットされる3()
+  {
     $input = "hello[emoji:100][emoji:20], world![emoji:10]";
     $this->expected = 'hello[emoji:100][emoji:20], wo...';
@@ -146,5 +161,6 @@
 
   // TODO 要確認 三点リーダ付けない場合は、lenと比較した方が良いのでは？
-  public function testSfCutString_三点リーダ付加指定がない場合_付加されない() {
+  public function testSfCutString_三点リーダ付加指定がない場合_付加されない()
+  {
     $input = 'hello, world';
     $this->expected = 'hello';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfUpDirNameTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfUpDirNameTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfUpDirNameTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfUpDirNameTest extends Common_TestCase {
+class SC_Utils_sfUpDirNameTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfUpDirName__1階層上のディレクトリ名が取得できる() {
+  public function testSfUpDirName__1階層上のディレクトリ名が取得できる()
+  {
     $_SERVER['SCRIPT_NAME'] = 'dir1/dir2/updir/current';
 
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetUnderChildrenArrayTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetUnderChildrenArrayTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetUnderChildrenArrayTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetUnderChildrenArrayTest extends Common_TestCase {
+class SC_Utils_sfGetUnderChildrenArrayTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetUnderChildrenArray__与えられた親IDを持つ要素だけが抽出される() {
+  public function testSfGetUnderChildrenArray__与えられた親IDを持つ要素だけが抽出される()
+  {
     $input_array = array(
       array('parent_id' => '1001', 'child_id' => '1001001'),
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetAddressTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetAddressTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetAddressTest.php	(revision 22567)
@@ -32,18 +32,22 @@
  * @version $Id$
  */
-class SC_Utils_sfGetAddressTest extends Common_TestCase {
+class SC_Utils_sfGetAddressTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpAddress();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function test_住所がヒットしない場合_空の配列が返る() {
+  public function test_住所がヒットしない場合_空の配列が返る()
+  {
     $this->expected = array();
     $this->actual = SC_Utils::sfGetAddress('9999999');
@@ -52,5 +56,6 @@
   }
 
-  public function test_住所が一件だけヒットする場合_住所データが取得できる() {
+  public function test_住所が一件だけヒットする場合_住所データが取得できる()
+  {
     $this->expected = array(
       array(
@@ -69,5 +74,6 @@
   // $data_list[0]を返した方が良いのでは?
   /**
-  public function test_住所が二件以上ヒットする場合_町名を消した住所データが取得できる() {
+  public function test_住所が二件以上ヒットする場合_町名を消した住所データが取得できる()
+  {
     $this->expected = array(
       array(
@@ -88,5 +94,6 @@
   */
 
-  public function test_住所に但し書きが含まれる場合_但し書きが消去される() {
+  public function test_住所に但し書きが含まれる場合_但し書きが消去される()
+  {
     $this->expected = array(
       array(
@@ -101,5 +108,6 @@
   }
 
-  public function test_住所に注意文言がある場合_町名が消去される() {
+  public function test_住所に注意文言がある場合_町名が消去される()
+  {
     $this->expected = array(
       array(
@@ -114,5 +122,6 @@
   }
 
-  public function test_住所に番地の説明が含まれる場合_町名が消去される() {
+  public function test_住所に番地の説明が含まれる場合_町名が消去される()
+  {
     $this->expected = array(
       array(
@@ -129,5 +138,6 @@
   //////////////////////////////////////////
 
-  protected function setUpAddress() {
+  protected function setUpAddress()
+  {
 
     $address = array(
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCheckedTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCheckedTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCheckedTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetCheckedTest extends Common_TestCase {
+class SC_Utils_sfGetCheckedTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetChecked_引数が一致する場合_チェック済みの文字列が返る() {
+  public function testSfGetChecked_引数が一致する場合_チェック済みの文字列が返る()
+  {
     $this->expected = 'checked="checked"';
     $this->actual = SC_Utils::sfGetChecked('1', '1');
@@ -51,5 +55,6 @@
   }
 
-  public function testSfGetChecked_引数が一致しない場合_0バイト文字列が返る() {
+  public function testSfGetChecked_引数が一致しない場合_0バイト文字列が返る()
+  {
     $this->expected = '';
     $this->actual = SC_Utils::sfGetChecked('2', '1');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetBrothersArrayTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetBrothersArrayTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetBrothersArrayTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetBrothersArrayTest extends Common_TestCase {
+class SC_Utils_sfGetBrothersArrayTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetBrothersArray__与えられたIDの兄弟要素だけが抽出される() {
+  public function testSfGetBrothersArray__与えられたIDの兄弟要素だけが抽出される()
+  {
     $input_array = array(
       array('parent_id' => '1001', 'child_id' => '1001001'),
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_repeatStrWithSeparatorTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_repeatStrWithSeparatorTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_repeatStrWithSeparatorTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Utils_repeatStrWithSeparatorTest extends Common_TestCase {
+class SC_Utils_repeatStrWithSeparatorTest extends Common_TestCase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testRepeatStrWithSeparator_反復回数が0回の場合_結果が0バイト文字列になる() {
+  public function testRepeatStrWithSeparator_反復回数が0回の場合_結果が0バイト文字列になる()
+  {
     $this->expected = '';
     $this->actual = SC_Utils::repeatStrWithSeparator('ECサイト', 0, '#');
@@ -50,5 +54,6 @@
   }
 
-  public function testRepeatStrWithSeparator_反復回数が1回の場合_区切り文字が入らない() {
+  public function testRepeatStrWithSeparator_反復回数が1回の場合_区切り文字が入らない()
+  {
     $this->expected = 'ECサイト';
     $this->actual = SC_Utils::repeatStrWithSeparator('ECサイト', 1, '#');
@@ -57,5 +62,6 @@
   }
 
-  public function testRepeatStrWithSeparator_反復回数が2回以上の場合_区切り文字が入って出力される() {
+  public function testRepeatStrWithSeparator_反復回数が2回以上の場合_区切り文字が入って出力される()
+  {
     $this->expected = 'ECサイト#ECサイト#ECサイト#ECサイト#ECサイト';
     $this->actual = SC_Utils::repeatStrWithSeparator('ECサイト', 5, '#');
@@ -64,5 +70,6 @@
   }
 
-  public function testRepeatStrWithSeparator_区切り文字が未指定の場合_カンマ区切りとなる() {
+  public function testRepeatStrWithSeparator_区切り文字が未指定の場合_カンマ区切りとなる()
+  {
     $this->expected = 'ECサイト,ECサイト,ECサイト';
     $this->actual = SC_Utils::repeatStrWithSeparator('ECサイト', 3);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTrimURLTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTrimURLTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTrimURLTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfTrimURLTest extends Common_TestCase {
+class SC_Utils_sfTrimURLTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfTrimURL_URLがスラッシュで終わる場合_スラッシュが取り除かれる() {
+  public function testSfTrimURL_URLがスラッシュで終わる場合_スラッシュが取り除かれる()
+  {
     $input = 'http://www.example.co.jp/';
     $this->expected = 'http://www.example.co.jp';
@@ -51,5 +55,6 @@
   }
 
-  public function testSfTrimURL_URL末尾にスラッシュがない場合_文字列に変化がない() {
+  public function testSfTrimURL_URL末尾にスラッシュがない場合_文字列に変化がない()
+  {
     $input = 'http://www.example.co.jp';
     $this->expected = $input;
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPrePointTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPrePointTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfPrePointTest.php	(revision 22567)
@@ -34,17 +34,21 @@
  * @version $Id$
  */
-class SC_Utils_sfPrePointTest extends Common_TestCase {
+class SC_Utils_sfPrePointTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfPrePoint_四捨五入の設定の場合_四捨五入された値が返る() {
+  public function testSfPrePoint_四捨五入の設定の場合_四捨五入された値が返る()
+  {
     $rule = 1; // 四捨五入
 
@@ -55,5 +59,6 @@
   }
 
-  public function testSfPrePoint_切り捨ての設定の場合_切り捨てされた値が返る() {
+  public function testSfPrePoint_切り捨ての設定の場合_切り捨てされた値が返る()
+  {
     $rule = 2; // 切り捨て 
 
@@ -64,5 +69,6 @@
   }
 
-  public function testSfPrePoint_切り上げの設定の場合_切り上げされた値が返る() {
+  public function testSfPrePoint_切り上げの設定の場合_切り上げされた値が返る()
+  {
     $rule = 3; // 切り上げ
 
@@ -73,5 +79,6 @@
   }
 
-  public function testSfPrePoint_存在しない選択肢の場合_切り上げされた値が返る() {
+  public function testSfPrePoint_存在しない選択肢の場合_切り上げされた値が返る()
+  {
     $rule = 4; // 存在しない選択肢
 
@@ -82,5 +89,6 @@
   }
 
-  public function testSfPrePoint_丸め方法の指定がない場合_定数で指定された値が使われる() {
+  public function testSfPrePoint_丸め方法の指定がない場合_定数で指定された値が使われる()
+  {
     $this->expected = array(9, 9);
     $this->actual = array(
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isAbsoluteRealPathTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isAbsoluteRealPathTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isAbsoluteRealPathTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_Test extends Common_TestCase {
+class SC_Utils_Test extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testIsAbsoluteRealPath_絶対パスの場合_trueが返る() {
+  public function testIsAbsoluteRealPath_絶対パスの場合_trueが返る()
+  {
 
     if (strpos(PHP_OS, 'WIN')) {
@@ -57,5 +61,6 @@
   }
 
-  public function testIsAbsoluteRealPath_相対パスの場合_trueが返る() {
+  public function testIsAbsoluteRealPath_相対パスの場合_trueが返る()
+  {
 
     if (strpos(PHP_OS, 'WIN')) {
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfDispDBDateTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfDispDBDateTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfDispDBDateTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfDispDBDateTest extends Common_TestCase {
+class SC_Utils_sfDispDBDateTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfDispDBDate_年が指定されていない場合_0バイト文字列が返る() {
+  public function testSfDispDBDate_年が指定されていない場合_0バイト文字列が返る()
+  {
     $dbdate = '-01-23 01:12:24';
     
@@ -52,5 +56,6 @@
     $this->verify();
   }
-  public function testSfDispDBDate_月が指定されていない場合_0バイト文字列が返る() {
+  public function testSfDispDBDate_月が指定されていない場合_0バイト文字列が返る()
+  {
     $dbdate = '2012--23 01:12:24';
     
@@ -60,5 +65,6 @@
     $this->verify();
   }
-  public function testSfDispDBDate_日が指定されていない場合_0バイト文字列が返る() {
+  public function testSfDispDBDate_日が指定されていない場合_0バイト文字列が返る()
+  {
     $dbdate = '2012-01- 01:12:24';
     
@@ -68,5 +74,6 @@
     $this->verify();
   }
-  public function testSfDispDBDate_年月日すべて存在する場合_フォーマット済み文字列が返る() {
+  public function testSfDispDBDate_年月日すべて存在する場合_フォーマット済み文字列が返る()
+  {
     $dbdate = '2012-1-23 1:12:24';
     
@@ -76,5 +83,6 @@
     $this->verify();
   }
-  public function testSfDispDBDate_時刻表示フラグがOFFの場合_時刻なしのフォーマット済み文字列が返る() {
+  public function testSfDispDBDate_時刻表示フラグがOFFの場合_時刻なしのフォーマット済み文字列が返る()
+  {
     $dbdate = '2012-1-23 1:12:24';
     
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfDBDateToTimeTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfDBDateToTimeTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfDBDateToTimeTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfDBDatetoTimeTest extends Common_TestCase {
+class SC_Utils_sfDBDatetoTimeTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfDbDatetoTime_時刻にマイクロ秒が含まれている場合_マイクロ秒を無視して変換できる() {
+  public function testSfDbDatetoTime_時刻にマイクロ秒が含まれている場合_マイクロ秒を無視して変換できる()
+  {
     
     $this->expected = mktime(10, 20, 30, 10, 31, 2012);
@@ -52,5 +56,6 @@
   }
 
-  public function testSfDbDatetoTime_時刻にマイクロ秒が含まれていない場合_そのまま変換できる() {
+  public function testSfDbDatetoTime_時刻にマイクロ秒が含まれていない場合_そのまま変換できる()
+  {
     
     $this->expected = mktime(10, 20, 30, 10, 31, 2012);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_clearCompliedTemplateTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_clearCompliedTemplateTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_clearCompliedTemplateTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_clearCompliedTemplateTest extends Common_TestCase {
+class SC_Utils_clearCompliedTemplateTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function test__コンパイル済みのファイルを配置するディレクトリが空になる() {
+  public function test__コンパイル済みのファイルを配置するディレクトリが空になる()
+  {
     SC_Utils::clearCompliedTemplate();
 
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_getRealURLTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_getRealURLTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_getRealURLTest.php	(revision 22567)
@@ -32,12 +32,15 @@
  * @version $Id$
  */
-class SC_Utils_getRealURLTest extends Common_TestCase {
+class SC_Utils_getRealURLTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
@@ -45,5 +48,6 @@
   /////////////////////////////////////////
   // TODO ポート番号のためのコロンが必ず入ってしまうのはOK?
-  public function testGetRealURL_親ディレクトリへの参照を含む場合_正しくパースできる() {
+  public function testGetRealURL_親ディレクトリへの参照を含む場合_正しくパースできる()
+  {
     $input = 'http://www.example.jp/aaa/../index.php';
     $this->expected = 'http://www.example.jp:/index.php';
@@ -53,5 +57,6 @@
   }
 
-  public function testGetRealURL_親ディレクトリへの参照を複数回含む場合_正しくパースできる() {
+  public function testGetRealURL_親ディレクトリへの参照を複数回含む場合_正しくパースできる()
+  {
     $input = 'http://www.example.jp/aaa/bbb/../../ccc/ddd/../index.php';
     $this->expected = 'http://www.example.jp:/ccc/index.php';
@@ -61,5 +66,6 @@
   }
 
-  public function testGetRealURL_カレントディレクトリへの参照を含む場合_正しくパースできる() {
+  public function testGetRealURL_カレントディレクトリへの参照を含む場合_正しくパースできる()
+  {
     $input = 'http://www.example.jp/aaa/./index.php';
     $this->expected = 'http://www.example.jp:/aaa/index.php';
@@ -69,5 +75,6 @@
   }
 
-  public function testGetRealURL_httpsの場合_正しくパースできる() {
+  public function testGetRealURL_httpsの場合_正しくパースできる()
+  {
     $input = 'https://www.example.jp/aaa/./index.php';
     $this->expected = 'https://www.example.jp:/aaa/index.php';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTermMonthTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTermMonthTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTermMonthTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfTermMonthTest extends Common_TestCase {
+class SC_Utils_sfTermMonthTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfTermMonth_締め日が月末より早い場合_設定した締め日の通りになる() {
+  public function testSfTermMonth_締め日が月末より早い場合_設定した締め日の通りになる()
+  {
     $this->expected = array('2012/9/16', '2012/10/15 23:59:59');
     $this->actual = SC_Utils::sfTermMonth(2012, 10, 15);
@@ -51,5 +55,6 @@
   }
 
-  public function testSfTermMonth_該当月の末日が締め日より早い場合_末日に合わせられる() {
+  public function testSfTermMonth_該当月の末日が締め日より早い場合_末日に合わせられる()
+  {
     $this->expected = array('2012/9/1', '2012/9/30 23:59:59');
     $this->actual = SC_Utils::sfTermMonth(2012, 9, 31);
@@ -58,5 +63,6 @@
   }
 
-  public function testSfTermMonth_前月の末日が締め日より早い場合_末日に合わせられる() {
+  public function testSfTermMonth_前月の末日が締め日より早い場合_末日に合わせられる()
+  {
     $this->expected = array('2012/10/1', '2012/10/31 23:59:59');
     $this->actual = SC_Utils::sfTermMonth(2012, 10, 31);
@@ -65,5 +71,6 @@
   }
 
-  public function testSfTermMonth_年をまたぐ場合_前月が前年十二月になる() {
+  public function testSfTermMonth_年をまたぐ場合_前月が前年十二月になる()
+  {
     $this->expected = array('2012/12/16', '2013/1/15 23:59:59');
     $this->actual = SC_Utils::sfTermMonth(2013, 1, 15);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetHashString_authTypePlainTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetHashString_authTypePlainTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetHashString_authTypePlainTest.php	(revision 22567)
@@ -34,12 +34,15 @@
  * @version $Id$
  */
-class SC_Utils_sfGetHashString_authTypePlainTest extends Common_TestCase {
+class SC_Utils_sfGetHashString_authTypePlainTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
@@ -47,5 +50,6 @@
   /////////////////////////////////////////
   /**
-  public function testSfGetHashString_暗号化なしの設定になっている場合_文字列が変換されない() {
+  public function testSfGetHashString_暗号化なしの設定になっている場合_文字列が変換されない()
+  {
     $input = 'hello, world';
 
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfRmDupSlashTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfRmDupSlashTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfRmDupSlashTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfRmDupSlashTest extends Common_TestCase {
+class SC_Utils_sfRmDupSlashTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfRmDupSlash_非SSLの場合_スキーマ部分以外の重複スラッシュが1つになる() {
+  public function testSfRmDupSlash_非SSLの場合_スキーマ部分以外の重複スラッシュが1つになる()
+  {
     $input = 'http://www.example.co.jp///aaa//bb/co.php';
     $this->expected = 'http://www.example.co.jp/aaa/bb/co.php';
@@ -52,5 +56,6 @@
   }
 
-  public function testSfRmDupSlash_SSLの場合_スキーマ部分以外の重複スラッシュが1つになる() {
+  public function testSfRmDupSlash_SSLの場合_スキーマ部分以外の重複スラッシュが1つになる()
+  {
     $input = 'https://www.example.co.jp///aaa//bb/co.php';
     $this->expected = 'https://www.example.co.jp/aaa/bb/co.php';
@@ -60,5 +65,6 @@
   }
 
-  public function testSfRmDupSlash_上記以外の場合_すべての重複スラッシュが1つになる() {
+  public function testSfRmDupSlash_上記以外の場合_すべての重複スラッシュが1つになる()
+  {
     $input = 'hoge//www.example.co.jp///aaa//bb/co.php';
     $this->expected = 'hoge/www.example.co.jp/aaa/bb/co.php';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_jsonDecodeTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_jsonDecodeTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_jsonDecodeTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_jsonDecodeTest extends Common_TestCase {
+class SC_Utils_jsonDecodeTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testJsonDecode__JSON形式にエンコードされた文字列からarrayに変換される() {
+  public function testJsonDecode__JSON形式にエンコードされた文字列からarrayに変換される()
+  {
     $input = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
 
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfNoImageMainTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfNoImageMainTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfNoImageMainTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfNoImageMainTest extends Common_TestCase {
+class SC_Utils_sfNoImageMainTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfNoImageMain_ファイル名が空の場合_デフォルトのファイル名が返る() {
+  public function testSfNoImageMain_ファイル名が空の場合_デフォルトのファイル名が返る()
+  {
     $this->expected = 'noimage_main.png';
     $this->actual = SC_Utils::sfNoImageMain('');
@@ -51,5 +55,6 @@
   }
 
-  public function testSfNoImageMain_ディレクトリが指定されている場合_そのディレクトリ以下でデフォルトのファイル名が返る() {
+  public function testSfNoImageMain_ディレクトリが指定されている場合_そのディレクトリ以下でデフォルトのファイル名が返る()
+  {
     $this->expected = 'aaa/bbb/noimage_main.png';
     $this->actual = SC_Utils::sfNoImageMain('aaa/bbb/');
@@ -58,5 +63,6 @@
   }
 
-  public function testSfNoImageMain_ファイル名が指定されている場合_指定されたファイル名が返る() {
+  public function testSfNoImageMain_ファイル名が指定されている場合_指定されたファイル名が返る()
+  {
     $this->expected = 'aaa/bbb/ccc.png';
     $this->actual = SC_Utils::sfNoImageMain('aaa/bbb/ccc.png');
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfSetErrorStyleTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfSetErrorStyleTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfSetErrorStyleTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfSetErrorStyleTest extends Common_TestCase {
+class SC_Utils_sfSetErrorStyleTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfSetErrorStyle__背景色変更用の文字列が返る() {
+  public function testSfSetErrorStyle__背景色変更用の文字列が返る()
+  {
     
     $this->expected = 'style="background-color:#ffe8e8"';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetHashString_authTypeHmacTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetHashString_authTypeHmacTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetHashString_authTypeHmacTest.php	(revision 22567)
@@ -34,17 +34,21 @@
  * @version $Id$
  */
-class SC_Utils_sfGetHashString_authTypeHmacTest extends Common_TestCase {
+class SC_Utils_sfGetHashString_authTypeHmacTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfGetHashString_暗号化ありの設定になっている場合_文字列が変換される() {
+  public function testSfGetHashString_暗号化ありの設定になっている場合_文字列が変換される()
+  {
     $input = 'hello, world';
     $salt = 'sample';
@@ -55,5 +59,6 @@
   }
 
-  public function testSfGetHashString_暗号化ありの設定になっていてsaltがない場合_文字列が変換される() {
+  public function testSfGetHashString_暗号化ありの設定になっていてsaltがない場合_文字列が変換される()
+  {
     $input = 'hello, world';
     $output = SC_Utils::sfGetHashString($input);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetEnabledTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetEnabledTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetEnabledTest.php	(revision 22567)
@@ -34,12 +34,15 @@
  * @version $Id$
  */
-class SC_Utils_sfGetEnabledTest extends Common_TestCase {
+class SC_Utils_sfGetEnabledTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
@@ -47,5 +50,6 @@
   /////////////////////////////////////////
   // TODO 要確認 実際には使われていない?
-  public function testSfGetEnabled_falseを指定した場合_無効化するための文字列が返る() {
+  public function testSfGetEnabled_falseを指定した場合_無効化するための文字列が返る()
+  {
     
     $this->expected = ' disabled="disabled"';
@@ -55,5 +59,6 @@
   }
 
-  public function testSfGetEnabled_trueを指定した場合_0バイト文字列が返る() {
+  public function testSfGetEnabled_trueを指定した場合_0バイト文字列が返る()
+  {
     
     $this->expected = '';
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrKeyValueTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrKeyValueTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfArrKeyValueTest.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class SC_Utils_sfArrKeyValueTest extends Common_TestCase {
+class SC_Utils_sfArrKeyValueTest extends Common_TestCase
+{
 
   var $arrList;
@@ -38,5 +39,6 @@
   var $valuename;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
 
@@ -51,10 +53,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfArrKeyValue_最大長が配列より短い場合_最大長でカットされる() {
+  public function testSfArrKeyValue_最大長が配列より短い場合_最大長でカットされる()
+  {
     $len_max = 3;
 
@@ -69,5 +73,6 @@
   }
 
-  public function testSfArrKeyValue_最大長が指定されていない場合_全要素が出力される() {
+  public function testSfArrKeyValue_最大長が指定されていない場合_全要素が出力される()
+  {
     $this->expected = array(
       '1011' => '2001',
@@ -81,5 +86,6 @@
   }
 
-  public function testSfArrKeyValue_キーサイズが短い場合_キーサイズでカットされる() {
+  public function testSfArrKeyValue_キーサイズが短い場合_キーサイズでカットされる()
+  {
     $len_max = 5;
     $keysize = 1;
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTaxTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTaxTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfTaxTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Utils_sfTaxTest extends Common_TestCase {
+class SC_Utils_sfTaxTest extends Common_TestCase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfTax_四捨五入の場合_四捨五入の結果になる() {
+  public function testSfTax_四捨五入の場合_四捨五入の結果になる()
+  {
     $this->expected = array(1, 2);
     $this->actual[0] = SC_Utils::sfTax(140, 1, 1); // 1:四捨五入
@@ -51,5 +55,6 @@
   }
 
-  public function testSfTax_切り捨ての場合_切り捨ての結果になる() {
+  public function testSfTax_切り捨ての場合_切り捨ての結果になる()
+  {
     $this->expected = array(2, 3);
     $this->actual[0] = SC_Utils::sfTax(140, 2, 2); // 2:切り捨て
@@ -59,5 +64,6 @@
   }
 
-  public function testSfTax_切り上げの場合_切り上げの結果になる() {
+  public function testSfTax_切り上げの場合_切り上げの結果になる()
+  {
     $this->expected = array(2, 2);
     $this->actual[0] = SC_Utils::sfTax(140, 1, 3); // 3:切り上げ
@@ -67,5 +73,6 @@
   }
 
-  public function testSfTax_それ以外の場合_切り上げの結果になる() {
+  public function testSfTax_それ以外の場合_切り上げの結果になる()
+  {
     $this->expected = array(2, 2);
     $this->actual[0] = SC_Utils::sfTax(140, 1, 4);
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isAppInnerUrlTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isAppInnerUrlTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isAppInnerUrlTest.php	(revision 22567)
@@ -35,12 +35,15 @@
  * @version $Id$
  */
-class SC_Utils_isAppInnerUrlTest extends Common_TestCase {
+class SC_Utils_isAppInnerUrlTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
@@ -48,5 +51,6 @@
   /////////////////////////////////////////
   /**
-  public function testIsAppInnerUrl_非SSLかつアプリ内URLの場合_trueが返る() {
+  public function testIsAppInnerUrl_非SSLかつアプリ内URLの場合_trueが返る()
+  {
     $input = 'http://sample.eccube.jp/admin/';
     $this->expected = true;
@@ -56,5 +60,6 @@
   }
 
-  public function testIsAppInnerUrl_非SSLかつアプリ外URLの場合_falseが返る() {
+  public function testIsAppInnerUrl_非SSLかつアプリ外URLの場合_falseが返る()
+  {
     $input = 'http://outside.eccube.jp/admin/';
     $this->expected = false;
@@ -64,5 +69,6 @@
   }
 
-  public function testIsAppInnerUrl_SSLかつアプリ内URLの場合_trueが返る() {
+  public function testIsAppInnerUrl_SSLかつアプリ内URLの場合_trueが返る()
+  {
     $input = 'https://sample.eccube.jp/admin/';
     $this->expected = true;
@@ -72,5 +78,6 @@
   }
 
-  public function testIsAppInnerUrl_SSLかつアプリ外URLの場合_falseが返る() {
+  public function testIsAppInnerUrl_SSLかつアプリ外URLの場合_falseが返る()
+  {
     $input = 'https://outside.eccube.jp/admin/';
     $this->expected = false;
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_recursiveMkDirTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_recursiveMkDirTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_recursiveMkDirTest.php	(revision 22567)
@@ -32,9 +32,11 @@
  * @version $Id$
  */
-class SC_Utils_recursiveMkdirTest extends Common_TestCase {
+class SC_Utils_recursiveMkdirTest extends Common_TestCase
+{
 
   static $TMP_DIR;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     self::$TMP_DIR = realpath(dirname(__FILE__)) . "/../../../tmp";
     SC_Helper_FileManager::deleteFile(self::$TMP_DIR);
@@ -43,10 +45,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testRecursiveMkdir_パーミッションを指定した場合_指定のパーミッションでディレクトリが作られる() {
+  public function testRecursiveMkdir_パーミッションを指定した場合_指定のパーミッションでディレクトリが作られる()
+  {
     $path = realpath(dirname(__FILE__)) . "/../../../tmp/dir1/dir2/dir3/";
     $mode = 0755;
@@ -59,5 +63,6 @@
   }
 
-  public function testRecursiveMkdir_パーミッションを指定しない場合_0777でディレクトリが作られる() {
+  public function testRecursiveMkdir_パーミッションを指定しない場合_0777でディレクトリが作られる()
+  {
     $path = realpath(dirname(__FILE__)) . "/../../../tmp/dir1/dir2/dir3/";
 
Index: branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfSwapArrayTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfSwapArrayTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfSwapArrayTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Utils_sfSwapArrayTest extends Common_TestCase {
+class SC_Utils_sfSwapArrayTest extends Common_TestCase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfSwapArray_カラム名ありの指定の場合_キーに名称が入る() {
+  public function testSfSwapArray_カラム名ありの指定の場合_キーに名称が入る()
+  {
     $input_array = array(
       array('id' => '1001', 'name' => 'name1001'),
@@ -59,5 +63,6 @@
   }
 
-  public function testSfSwapArray_カラム名なしの指定の場合_キーに名称が入らない() {
+  public function testSfSwapArray_カラム名なしの指定の場合_キーに名称が入らない()
+  {
     $input_array = array(
       array('id' => '1001', 'name' => 'name1001'),
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_rollbackOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_rollbackOrderTest.php	(revision 22247)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_rollbackOrderTest.php	(revision 22567)
@@ -31,9 +31,11 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_rollbackOrderTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_rollbackOrderTest extends SC_Helper_Purchase_TestBase
+{
 
   private $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
 
@@ -41,10 +43,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testRollbackOrder_デフォルトの引数で呼び出した場合_カートの状態をロールバックして元に戻る(){
+  public function testRollbackOrder_デフォルトの引数で呼び出した場合_カートの状態をロールバックして元に戻る()
+  {
     $this->objQuery->begin();
     $order_id = '1001';
@@ -84,5 +88,6 @@
    * 問題なく処理が完了することのみ確認
    */
-  public function testRollbackOrder_トランザクションが開始していない場合_内部で開始する() {
+  public function testRollbackOrder_トランザクションが開始していない場合_内部で開始する()
+  {
     $order_id = '1001';
 
@@ -120,8 +125,10 @@
 }
 
-class SC_Helper_Purchase_rollbackOrderMock extends SC_Helper_Purchase {
+class SC_Helper_Purchase_rollbackOrderMock extends SC_Helper_Purchase
+{
   public $testResult = array();
 
-  function cancelOrder($order_id, $orderStatus, $is_delete) {
+  function cancelOrder($order_id, $orderStatus, $is_delete)
+  {
     $this->testResult['cancelOrder'] = array(
       'order_id' => $order_id,
@@ -131,5 +138,6 @@
   }
 
-  function getOrderTempByOrderId($order_id) {
+  function getOrderTempByOrderId($order_id)
+  {
     $this->testResult['getOrderTempByOrderId'] = array(
       'order_id' => $order_id
@@ -140,5 +148,6 @@
   }
 
-  function saveOrderTemp($uniqid, $arrOrderTemp, $objCustomer) {
+  function saveOrderTemp($uniqid, $arrOrderTemp, $objCustomer)
+  {
     $this->testResult['saveOrderTemp'] = array(
       'uniqid' => $uniqid,
@@ -147,5 +156,6 @@
   }
 
-  function verifyChangeCart($uniqid, $objCartSession) {
+  function verifyChangeCart($uniqid, $objCartSession)
+  {
     $this->testResult['verifyChangeCart'] = array(
       'uniqid' => $uniqid
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetShippingTempTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetShippingTempTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetShippingTempTest.php	(revision 22567)
@@ -32,7 +32,9 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_unsetShippingTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_unsetShippingTempTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
 
@@ -42,10 +44,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testUnsetShippingTemp__配送情報がすべて破棄される() {
+  public function testUnsetShippingTemp__配送情報がすべて破棄される()
+  {
     SC_Helper_Purchase::unsetShippingTemp(TRUE);
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShipmentItemsTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShipmentItemsTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShipmentItemsTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_getShipmentItemsTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_getShipmentItemsTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpShipmentItem();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testGetShipmentItems_存在しない受注IDを指定した場合_結果が空になる() {
+  public function testGetShipmentItems_存在しない受注IDを指定した場合_結果が空になる()
+  {
     $order_id = '100'; // 存在しないID
     $shipping_id = '1';
@@ -54,5 +58,6 @@
   }
 
-  public function testGetShipmentItems_存在しない配送先IDを指定した場合_結果が空になる() {
+  public function testGetShipmentItems_存在しない配送先IDを指定した場合_結果が空になる()
+  {
     $order_id = '1';
     $shipping_id = '100'; // 存在しないID
@@ -64,5 +69,6 @@
   }
 
-  public function testGetShipmentItems_存在する受注IDと配送先IDを指定した場合_結果が取得できる() {
+  public function testGetShipmentItems_存在する受注IDと配送先IDを指定した場合_結果が取得できる()
+  {
     $order_id = '1';
     $shipping_id = '1';
@@ -97,5 +103,6 @@
   }
 
-  public function testGetShipmentItems_詳細フラグをOFFにした場合_結果に詳細情報が含まれない() {
+  public function testGetShipmentItems_詳細フラグをOFFにした場合_結果に詳細情報が含まれない()
+  {
     $order_id = '1';
     $shipping_id = '1';
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_copyFromOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_copyFromOrderTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_copyFromOrderTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_copyFromOrderTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_copyFromOrderTest extends SC_Helper_Purchase_TestBase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testCopyFromOrder_すべてデフォルト設定にした場合_デフォルトの接頭辞・キーでコピーされる() {
+  public function testCopyFromOrder_すべてデフォルト設定にした場合_デフォルトの接頭辞・キーでコピーされる()
+  {
      $dest = array();
      $src = array(
@@ -90,5 +94,6 @@
   }
 
-  public function testCopyFromOrder_接頭辞・キーを設定した場合_指定の値でコピーされる() {
+  public function testCopyFromOrder_接頭辞・キーを設定した場合_指定の値でコピーされる()
+  {
      $dest = array();
      $src = array(
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cleanupSessionTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cleanupSessionTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cleanupSessionTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_cleanupSessionTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_cleanupSessionTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpProductClass();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testCleanupSession__カートとセッションの配送情報が削除される() {
+  public function testCleanupSession__カートとセッションの配送情報が削除される()
+  {
     // 引数の準備
     $helper = new SC_Helper_Purchase();
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderDetailTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderDetailTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderDetailTest.php	(revision 22567)
@@ -32,8 +32,10 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_getOrderDetailTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_getOrderDetailTest extends SC_Helper_Purchase_TestBase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrder();
@@ -42,10 +44,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testGetOrderDetail_存在しない受注IDを指定した場合_結果が空になる() {
+  public function testGetOrderDetail_存在しない受注IDを指定した場合_結果が空になる()
+  {
     $order_id = '9999';
 
@@ -56,5 +60,6 @@
   }
 
-  public function testGetOrderDetail_存在する受注IDを指定した場合_対応する受注詳細情報が取得できる() {
+  public function testGetOrderDetail_存在する受注IDを指定した場合_対応する受注詳細情報が取得できる()
+  {
     $order_id = '1001';
 
@@ -102,5 +107,6 @@
   }
 
-  public function testGetOrderDetail_ステータス取得フラグがOFFのの場合_ステータス以外の情報が取得できる() {
+  public function testGetOrderDetail_ステータス取得フラグがOFFのの場合_ステータス以外の情報が取得できる()
+  {
     $order_id = '1001';
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingPrefTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingPrefTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingPrefTest.php	(revision 22567)
@@ -32,11 +32,14 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_getShippingPrefTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_getShippingPrefTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
@@ -44,5 +47,6 @@
   /////////////////////////////////////////
   // TODO 要確認：引数の名前がおかしい（is_multipleではないはず）
-  public function testGetShippingPref_保有フラグがOFFの場合_全配送情報を取得する() {
+  public function testGetShippingPref_保有フラグがOFFの場合_全配送情報を取得する()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
@@ -53,5 +57,6 @@
   }
 
-  public function testGetShippingPref_保有フラグがONの場合_商品のある配送情報のみ取得する() {
+  public function testGetShippingPref_保有フラグがONの場合_商品のある配送情報のみ取得する()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderTempTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderTempTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderTempTest.php	(revision 22567)
@@ -32,18 +32,22 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_getOrderTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_getOrderTempTest extends SC_Helper_Purchase_TestBase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrderTemp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testGetOrderTemp_存在しない受注IDを指定した場合_結果が空になる() {
+  public function testGetOrderTemp_存在しない受注IDを指定した場合_結果が空になる()
+  {
     $order_id = '9999';
 
@@ -54,5 +58,6 @@
   }
 
-  public function testGetOrderTemp_存在する受注IDを指定した場合_対応する結果が取得できる() {
+  public function testGetOrderTemp_存在する受注IDを指定した場合_対応する結果が取得できる()
+  {
     $order_temp_id = '1002';
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setShipmentItemTempForSoleTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setShipmentItemTempForSoleTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setShipmentItemTempForSoleTest.php	(revision 22567)
@@ -32,12 +32,15 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_setShipmentItemTempForSoleTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_setShipmentItemTempForSoleTest extends SC_Helper_Purchase_TestBase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
     $_SESSION['testResult'] = null;
@@ -45,5 +48,6 @@
 
   /////////////////////////////////////////
-  public function testSetShipmentItemTempForSole__いったん配送情報がクリアされたあと改めて指定のものが設定される() {
+  public function testSetShipmentItemTempForSole__いったん配送情報がクリアされたあと改めて指定のものが設定される()
+  {
     $helper = new SC_Helper_Purchase_setShipmentItemTempForSoleMock();
     $cartSession = new SC_CartSession_setShipmentItemTempForSoleMock();
@@ -68,10 +72,13 @@
 }
 
-class SC_Helper_Purchase_setShipmentItemTempForSoleMock extends SC_Helper_Purchase {
-  function clearShipmentItemTemp() {
+class SC_Helper_Purchase_setShipmentItemTempForSoleMock extends SC_Helper_Purchase
+{
+  function clearShipmentItemTemp()
+  {
     $_SESSION['testResult']['clearShipmentItemTemp'] = TRUE;
   }
 
-  function setShipmentItemTemp($shipping_id, $id, $quantity) {
+  function setShipmentItemTemp($shipping_id, $id, $quantity)
+  {
     $_SESSION['testResult']['shipmentItemTemp'][] = 
       array('shipping_id' => $shipping_id, 'id' => $id, 'quantity' => $quantity);
@@ -79,6 +86,8 @@
 }
 
-class SC_CartSession_setShipmentItemTempForSoleMock extends SC_CartSession {
-  function getCartList($key) {
+class SC_CartSession_setShipmentItemTempForSoleMock extends SC_CartSession
+{
+  function getCartList($key)
+  {
     return array(
       array('id'=>'1', 'quantity'=>'10'),
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setDownloadableFlgToTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setDownloadableFlgToTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setDownloadableFlgToTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_setDownloadableFlgToTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_setDownloadableFlgToTest extends SC_Helper_Purchase_TestBase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSetDownloadableFlgTo_販売価格が0円の場合_フラグがONになる() {
+  public function testSetDownloadableFlgTo_販売価格が0円の場合_フラグがONになる()
+  {
     $input = array(
       '1001' => array('price' => 0)
@@ -56,5 +60,6 @@
   }
 
-  public function testSetDownloadableFlgTo_ダウンロード期限内かつ入金日ありの場合_フラグがONになる() {
+  public function testSetDownloadableFlgTo_ダウンロード期限内かつ入金日ありの場合_フラグがONになる()
+  {
     $input = array(
       '1001' => array('price' => 1000, 'effective' => '1', 'payment_date' => '2012-12-12')
@@ -68,5 +73,6 @@
   }
 
-  public function testSetDownloadableFlgTo_ダウンロード期限内かつ入金日なしの場合_フラグがOFFになる() {
+  public function testSetDownloadableFlgTo_ダウンロード期限内かつ入金日なしの場合_フラグがOFFになる()
+  {
     $input = array(
       '1001' => array('price' => 1000, 'effective' => '1', 'payment_date' => null)
@@ -80,5 +86,6 @@
   }
 
-  public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日ありの場合_フラグがOFFになる() {
+  public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日ありの場合_フラグがOFFになる()
+  {
     $input = array(
       '1001' => array('price' => 1000, 'effective' => '0', 'payment_date' => '2012-12-12')
@@ -92,5 +99,6 @@
   }
 
-  public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日なしの場合_フラグがOFFになる() {
+  public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日なしの場合_フラグがOFFになる()
+  {
     $input = array(
       '1001' => array('price' => 1000, 'effective' => '0', 'payment_date' => null)
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_clearShipmentItemTempTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_clearShipmentItemTempTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_clearShipmentItemTempTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_clearShipmentItemTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_clearShipmentItemTempTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testClearShipmentItem_配送先ID未指定の場合_全ての配送商品がクリアされる() {
+  public function testClearShipmentItem_配送先ID未指定の場合_全ての配送商品がクリアされる()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
@@ -57,5 +61,6 @@
   }
 
-  public function testClearShipmentItem_配送先ID指定の場合_指定したIDの配送商品がクリアされる() {
+  public function testClearShipmentItem_配送先ID指定の場合_指定したIDの配送商品がクリアされる()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
@@ -71,5 +76,6 @@
   }
 
-  public function testClearShipmentItem_存在しないIDを指定した場合_何も変更されない() {
+  public function testClearShipmentItem_存在しないIDを指定した場合_何も変更されない()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
@@ -85,5 +91,6 @@
   }
 
-  public function testClearShipmentItem_商品情報が配列でない場合_何も変更されない() {
+  public function testClearShipmentItem_商品情報が配列でない場合_何も変更されない()
+  {
     $this->setUpShipping($this->getMultipleShipping());
     // 内容を配列でないように変更
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_completeOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_completeOrderTest.php	(revision 22257)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_completeOrderTest.php	(revision 22567)
@@ -32,9 +32,11 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_completeOrderTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_completeOrderTest extends SC_Helper_Purchase_TestBase
+{
 
   private $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrder();
@@ -54,5 +56,6 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
@@ -60,5 +63,6 @@
   /////////////////////////////////////////
   // 適切なfunctionが呼ばれていることのみ確認
-  public function testCompleteOrder_顧客IDが指定されている場合_購入日が更新される() {
+  public function testCompleteOrder_顧客IDが指定されている場合_購入日が更新される()
+  {
     $_SESSION['customer']['customer_id'] = '1002'; // 顧客ID
     $this->helper->completeOrder(ORDER_DELIV);
@@ -97,5 +101,6 @@
   }
 
-  public function testCompleteOrder_顧客IDが指定されていない場合_特にエラーなく修了できる() {
+  public function testCompleteOrder_顧客IDが指定されていない場合_特にエラーなく修了できる()
+  {
     $this->helper->completeOrder(); // デフォルトのステータス(NEW)
 
@@ -135,16 +140,20 @@
 }
 
-class SC_Helper_Purchase_completeOrderMock extends SC_Helper_Purchase{
+class SC_Helper_Purchase_completeOrderMock extends SC_Helper_Purchase
+{
 
-  function verifyChangeCart($uniqId, $objCartSession){
+  function verifyChangeCart($uniqId, $objCartSession)
+  {
     $_SESSION['testResult']['verifyChangeCart'] = array('uniqId'=>$uniqId);
   }
 
-  function getOrderTemp($uniqId) {
+  function getOrderTemp($uniqId)
+  {
     $_SESSION['testResult']['getOrderTemp'] = array('uniqId'=>$uniqId);
     return parent::getOrderTemp($uniqId);
   }
 
-  function registerOrderComplete($orderTemp, $objCartSession, $cartKey) {
+  function registerOrderComplete($orderTemp, $objCartSession, $cartKey)
+  {
     $_SESSION['testResult']['registerOrderComplete'] = array(
       'order_temp_id' => $orderTemp['order_temp_id'],
@@ -155,5 +164,6 @@
   }
 
-  function registerShipmentItem($order_id, $shipping_id, $shipment_item) {
+  function registerShipmentItem($order_id, $shipping_id, $shipment_item)
+  {
     $_SESSION['testResult']['registerShipmentItem'][] = array(
       'order_id' => $order_id,
@@ -163,5 +173,6 @@
   }
 
-  function registerShipping($order_id, $shipping_temp) {
+  function registerShipping($order_id, $shipping_temp)
+  {
     $_SESSION['testResult']['registerShipping'] = array(
       'order_id' => $order_id
@@ -169,5 +180,6 @@
   }
 
-  function cleanupSession($order_id, $objCartSesion, $objCustomer, $cartKey) {
+  function cleanupSession($order_id, $objCartSesion, $objCustomer, $cartKey)
+  {
     $_SESSION['testResult']['cleanupSession'] = array(
       'order_id' => $order_id,
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingTempTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingTempTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingTempTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_getShippingTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_getShippingTempTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testGetShippingTemp_保有フラグがOFFの場合_セッション情報を取得する() {
+  public function testGetShippingTemp_保有フラグがOFFの場合_セッション情報を取得する()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
@@ -52,5 +56,6 @@
   }
 
-  public function testGetShippingTemp_保有フラグがONの場合_商品のある情報のみ取得する() {
+  public function testGetShippingTemp_保有フラグがONの場合_商品のある情報のみ取得する()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setShipmentItemTempTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setShipmentItemTempTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_setShipmentItemTempTest.php	(revision 22567)
@@ -32,8 +32,10 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_setShipmentItemTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_setShipmentItemTempTest extends SC_Helper_Purchase_TestBase
+{
   private $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpProductClass();
@@ -46,10 +48,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSetShipmentItemTemp_製品情報が既に存在する場合_存在する情報が価格に反映される() {
+  public function testSetShipmentItemTemp_製品情報が既に存在する場合_存在する情報が価格に反映される()
+  {
     $this->helper->setShipmentItemTemp('1001', '1001', 10);
 
@@ -67,5 +71,6 @@
   }
 
-  public function testSetShipmentItemTemp_製品情報が存在しない場合_DBから取得した値が反映される() {
+  public function testSetShipmentItemTemp_製品情報が存在しない場合_DBから取得した値が反映される()
+  {
     $this->helper->setShipmentItemTemp('1001', '1002', 10);
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShipmentItemTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShipmentItemTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShipmentItemTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_registerShipmentItemTest extends SC_Helper_Purchase_TestBase {
-
-  protected function setUp() {
+class SC_Helper_Purchase_registerShipmentItemTest extends SC_Helper_Purchase_TestBase
+{
+
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpShipmentItem();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testRegisterShipmentItem_製品クラスIDが入っていない場合_登録を行わない() {
+  public function testRegisterShipmentItem_製品クラスIDが入っていない場合_登録を行わない()
+  {
     // 引数の設定
     $order_id = '1';
@@ -75,5 +79,6 @@
   }
 
-  public function testRegisterShipmentItem_製品名等が指定されている場合_指定された値で登録を行う() {
+  public function testRegisterShipmentItem_製品名等が指定されている場合_指定された値で登録を行う()
+  {
     // 引数の設定
     $order_id = '1';
@@ -115,5 +120,6 @@
   }
 
-  public function testRegisterShipmentItem_製品名等が指定されていない場合_DBからマスタ情報を取得して登録を行う() {
+  public function testRegisterShipmentItem_製品名等が指定されていない場合_DBからマスタ情報を取得して登録を行う()
+  {
     // 引数の設定
     $order_id = '1';
@@ -158,5 +164,6 @@
   }
 
-  public function testRegisterShipmentItem_DBに存在しないカラムを指定した場合_エラーなく登録できる() {
+  public function testRegisterShipmentItem_DBに存在しないカラムを指定した場合_エラーなく登録できる()
+  {
     // 引数の設定
     $order_id = '1';
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderTest.php	(revision 22567)
@@ -32,18 +32,22 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_getOrderTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_getOrderTest extends SC_Helper_Purchase_TestBase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrder();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testGetOrder_存在しない受注IDを指定した場合_結果が空になる() {
+  public function testGetOrder_存在しない受注IDを指定した場合_結果が空になる()
+  {
     $order_id = '9999';
 
@@ -54,5 +58,6 @@
   }
 
-  public function testGetOrder_存在しない顧客IDを指定した場合_結果が空になる() {
+  public function testGetOrder_存在しない顧客IDを指定した場合_結果が空になる()
+  {
     $order_id = '1002';
     $customer_id = '9999';
@@ -64,5 +69,6 @@
   }
 
-  public function testGetOrder_顧客IDを指定しなかった場合_受注IDに対応する結果が取得できる() {
+  public function testGetOrder_顧客IDを指定しなかった場合_受注IDに対応する結果が取得できる()
+  {
     $order_id = '1002';
 
@@ -78,5 +84,6 @@
   }
 
-  public function testGetOrder_存在する顧客IDを指定した場合_対応する結果が取得できる() {
+  public function testGetOrder_存在する顧客IDを指定した場合_対応する結果が取得できる()
+  {
     $order_id = '1002';
     $customer_id = '1002';
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_extractShippingTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_extractShippingTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_extractShippingTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_extractShippingTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_extractShippingTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     // parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     // parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testExtractShipping__予め指定されたキーだけが抽出される() {
+  public function testExtractShipping__予め指定されたキーだけが抽出される()
+  {
     $helper = new SC_Helper_Purchase();
     $helper->arrShippingKey = array('id', 'name', 'code');
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getPaymentsByPriceTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getPaymentsByPriceTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getPaymentsByPriceTest.php	(revision 22567)
@@ -32,8 +32,10 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_getPaymentsByPriceTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_getPaymentsByPriceTest extends SC_Helper_Purchase_TestBase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpPayment();
@@ -41,10 +43,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testGetPaymentsByPrice_購入金額がすべての上限を上回る場合_上限の設定がないものだけ取得できる() {
+  public function testGetPaymentsByPrice_購入金額がすべての上限を上回る場合_上限の設定がないものだけ取得できる()
+  {
     $deliv_id = '1003';
     $total = 21001;
@@ -71,5 +75,6 @@
   }
 
-  public function testGetPaymentsByPrice_購入金額が一部の上限を上回る場合_上限に引っかからないものだけ取得できる() {
+  public function testGetPaymentsByPrice_購入金額が一部の上限を上回る場合_上限に引っかからないものだけ取得できる()
+  {
     $deliv_id = '1003';
     $total = 20500;
@@ -84,5 +89,6 @@
   }
 
-  public function testGetPaymentsByPrice_購入金額が一部の下限を下回る場合_下限に引っかからないものだけ取得できる() {
+  public function testGetPaymentsByPrice_購入金額が一部の下限を下回る場合_下限に引っかからないものだけ取得できる()
+  {
     $deliv_id = '1003';
     $total = 11000;
@@ -97,5 +103,6 @@
   }
 
-  public function testGetPaymentsByPrice_購入金額がすべての下限を下回る場合_下限の設定がないものだけ取得できる() {
+  public function testGetPaymentsByPrice_購入金額がすべての下限を下回る場合_下限の設定がないものだけ取得できる()
+  {
     $deliv_id = '1003';
     $total = 9999;
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetAllShippingTempTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetAllShippingTempTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetAllShippingTempTest.php	(revision 22567)
@@ -32,7 +32,9 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_unsetAllShippingTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_unsetAllShippingTempTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
 
@@ -42,10 +44,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testUnsetAllShippingTemp_複数配送も破棄するフラグがOFFの場合_情報の一部が破棄される() {
+  public function testUnsetAllShippingTemp_複数配送も破棄するフラグがOFFの場合_情報の一部が破棄される()
+  {
     SC_Helper_Purchase::unsetAllShippingTemp();
 
@@ -57,5 +61,6 @@
   }
 
-  public function testUnsetAllShippingTemp_複数配送も破棄するフラグがONの場合_全ての情報が破棄される() {
+  public function testUnsetAllShippingTemp_複数配送も破棄するフラグがONの場合_全ての情報が破棄される()
+  {
     SC_Helper_Purchase::unsetAllShippingTemp(TRUE);
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShippingTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShippingTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShippingTest.php	(revision 22567)
@@ -32,17 +32,21 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_registerShippingTest extends SC_Helper_Purchase_TestBase {
-
-  protected function setUp() {
+class SC_Helper_Purchase_registerShippingTest extends SC_Helper_Purchase_TestBase
+{
+
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpShippingOnDb();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testRegisterShipping_元々存在しない受注IDの場合_新規にデータが作られる() {
+  public function testRegisterShipping_元々存在しない受注IDの場合_新規にデータが作られる()
+  {
     $order_id = '10';
     $arrParams = array(
@@ -81,5 +85,6 @@
   }
 
-  public function testRegisterShipping_元々存在する受注IDの場合_既存のデータが置き換えられる() {
+  public function testRegisterShipping_元々存在する受注IDの場合_既存のデータが置き換えられる()
+  {
     $order_id = '2';
     $arrParams = array(
@@ -118,5 +123,6 @@
   }
 
-  public function testRegisterShipping_配送日付が空の場合_エラーが起きず変換処理がスキップされる() {
+  public function testRegisterShipping_配送日付が空の場合_エラーが起きず変換処理がスキップされる()
+  {
     $order_id = '2';
     $arrParams = array(
@@ -155,5 +161,6 @@
   }
 
-  public function testRegisterShipping_非会員購入の場合_配送IDが設定される() {
+  public function testRegisterShipping_非会員購入の場合_配送IDが設定される()
+  {
     $order_id = '2';
     $arrParams = array(
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_saveShippingTempTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_saveShippingTempTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_saveShippingTempTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_saveShippingTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_saveShippingTempTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSaveShippingTemp_元々存在しない配送先IDの場合_新規に配列が作られる() {
+  public function testSaveShippingTemp_元々存在しない配送先IDの場合_新規に配列が作られる()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
@@ -64,5 +68,6 @@
   }
 
-  public function testSaveShippingTemp_元々存在する配送先IDの場合_情報がマージされる() {
+  public function testSaveShippingTemp_元々存在する配送先IDの場合_情報がマージされる()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_isAddPointTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_isAddPointTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_isAddPointTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_isAddPointTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_isAddPointTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testIsAddPoint_新規注文の場合_FALSEが返る() {
+  public function testIsAddPoint_新規注文の場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_NEW);
@@ -50,5 +54,6 @@
   }
 
-  public function testIsAddPoint_入金待ちの場合_FALSEが返る() {
+  public function testIsAddPoint_入金待ちの場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_PAY_WAIT);
@@ -57,5 +62,6 @@
   }
 
-  public function testIsAddPoint_入金済みの場合_FALSEが返る() {
+  public function testIsAddPoint_入金済みの場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_PRE_END);
@@ -64,5 +70,6 @@
   }
 
-  public function testIsAddPoint_キャンセルの場合_FALSEが返る() {
+  public function testIsAddPoint_キャンセルの場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_CANCEL);
@@ -71,5 +78,6 @@
   }
 
-  public function testIsAddPoint_取り寄せ中の場合_FALSEが返る() {
+  public function testIsAddPoint_取り寄せ中の場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_BACK_ORDER);
@@ -78,5 +86,6 @@
   }
 
-  public function testIsAddPoint_発送済みの場合_TRUEが返る() {
+  public function testIsAddPoint_発送済みの場合_TRUEが返る()
+  {
     $this->expected = TRUE;
     $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_DELIV);
@@ -85,5 +94,6 @@
   }
 
-  public function testIsAddPoint_その他の場合_FALSEが返る() {
+  public function testIsAddPoint_その他の場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_PENDING);
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetOneShippingTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetOneShippingTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_unsetOneShippingTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_unsetOneShippingTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_unsetOneShippingTempTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testUnsetOneShippingTemp__指定したIDの配送情報のみが破棄される() {
+  public function testUnsetOneShippingTemp__指定したIDの配送情報のみが破棄される()
+  {
     $this->setUpShipping($this->getMultipleShipping());
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_isUsePointTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_isUsePointTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_isUsePointTest.php	(revision 22567)
@@ -32,16 +32,20 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_isUsePointTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_isUsePointTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testIsUsePoint_ステータスがnullの場合_FALSEが返る() {
+  public function testIsUsePoint_ステータスがnullの場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Helper_Purchase::isUsePoint(null);
@@ -50,5 +54,6 @@
   }
 
-  public function testIsUsePoint_ステータスがキャンセルの場合_FALSEが返る() {
+  public function testIsUsePoint_ステータスがキャンセルの場合_FALSEが返る()
+  {
     $this->expected = FALSE;
     $this->actual = SC_Helper_Purchase::isUsePoint(ORDER_CANCEL);
@@ -58,5 +63,6 @@
 
   // TODO 要確認：本当にキャンセルのとき以外はすべてTRUEで良いのか、現在の使われ方の都合か
-  public function testIsUsePoint_ステータスがキャンセル以外の場合_TRUEが返る() {
+  public function testIsUsePoint_ステータスがキャンセル以外の場合_TRUEが返る()
+  {
     $this->expected = TRUE;
     $this->actual = SC_Helper_Purchase::isUsePoint(ORDER_NEW);
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderDetailTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderDetailTest.php	(revision 22247)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderDetailTest.php	(revision 22567)
@@ -31,17 +31,21 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_registerOrderDetailTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_registerOrderDetailTest extends SC_Helper_Purchase_TestBase
+{
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrderDetail();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testRegisterOrderDetail_該当の受注が存在する場合_削除後に新しい情報が登録される() {
+  public function testRegisterOrderDetail_該当の受注が存在する場合_削除後に新しい情報が登録される()
+  {
     $params = array(
       array(
@@ -76,5 +80,6 @@
   }
 
-  public function testRegisterOrderDetail_該当の受注が存在しない場合_新しい情報が追加登録される() {
+  public function testRegisterOrderDetail_該当の受注が存在しない場合_新しい情報が追加登録される()
+  {
     $params = array(
       array(
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingsTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingsTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getShippingsTest.php	(revision 22567)
@@ -32,8 +32,10 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_getShippingsTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_getShippingsTest extends SC_Helper_Purchase_TestBase
+{
 
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpShipmentItem();
@@ -41,10 +43,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testGetShippings_存在しない受注IDを指定した場合_結果が空になる() {
+  public function testGetShippings_存在しない受注IDを指定した場合_結果が空になる()
+  {
     $order_id = '100'; // 存在しないID
 
@@ -56,5 +60,6 @@
   }
 
-  public function testGetShippings_存在する受注IDを指定した場合_結果が取得できる() {
+  public function testGetShippings_存在する受注IDを指定した場合_結果が取得できる()
+  {
     $order_id = '1';
   
@@ -78,5 +83,6 @@
   }
 
-  public function testGetShippings_商品取得フラグをOFFにした場合_結果に商品情報が含まれない() {
+  public function testGetShippings_商品取得フラグをOFFにした場合_結果に商品情報が含まれない()
+  {
     $order_id = '1';
     
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_sfUpdateOrderNameColTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_sfUpdateOrderNameColTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_sfUpdateOrderNameColTest.php	(revision 22567)
@@ -32,8 +32,10 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_sfUpdateOrderNameColTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_sfUpdateOrderNameColTest extends SC_Helper_Purchase_TestBase
+{
   var $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrder();
@@ -47,10 +49,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSfUpdateOrderNameCol_TEMPフラグがOFFの場合_受注テーブルと発送テーブルが更新される() {
+  public function testSfUpdateOrderNameCol_TEMPフラグがOFFの場合_受注テーブルと発送テーブルが更新される()
+  {
     $order_id = '1002';
 
@@ -73,5 +77,6 @@
   }
 
-  public function testSfUpdateOrderNameCol_TEMPフラグがONの場合_一時テーブルが更新される() {
+  public function testSfUpdateOrderNameCol_TEMPフラグがONの場合_一時テーブルが更新される()
+  {
     $order_id = '1002';
 
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderCompleteTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderCompleteTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderCompleteTest.php	(revision 22567)
@@ -33,8 +33,10 @@
  */
 
-class SC_Helper_Purchase_registerOrderCompleteTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_registerOrderCompleteTest extends SC_Helper_Purchase_TestBase
+{
   private $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrderTemp();
@@ -42,10 +44,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testRegisterOrderComplete_不要な変数が含まれている場合_登録前に除外される() {
+  public function testRegisterOrderComplete_不要な変数が含まれている場合_登録前に除外される()
+  {
     // 引数の準備
     $orderParams = array(
@@ -94,5 +98,6 @@
   }
 
-  public function testRegisterOrderComplete_ステータスの指定がない場合_新規受付扱いとなる() {
+  public function testRegisterOrderComplete_ステータスの指定がない場合_新規受付扱いとなる()
+  {
     // 引数の準備
     $orderParams = array(
@@ -124,7 +129,9 @@
 }
 
-class SC_Helper_Purchase_registerOrderCompleteMock extends SC_Helper_Purchase {
+class SC_Helper_Purchase_registerOrderCompleteMock extends SC_Helper_Purchase
+{
 
-  function registerOrder($order_id, $params) {
+  function registerOrder($order_id, $params)
+  {
     $_SESSION['testResult']['registerOrder'] = array(
       'order_id' => $order_id,
@@ -134,5 +141,6 @@
   }
 
-  function registerOrderDetail($order_id, $params) {
+  function registerOrderDetail($order_id, $params)
+  {
     $_SESSION['testResult']['registerOrderDetail'] = array(
       'order_id' => $order_id,
@@ -141,11 +149,14 @@
   }
 
-  function setUniqId() {}
+  function setUniqId()
+  {}
 }
 
-class SC_CartSession_registerOrderCompleteMock extends SC_CartSession {
+class SC_CartSession_registerOrderCompleteMock extends SC_CartSession
+{
 
   // カートの内容を取得
-  function getCartList($cartKey) {
+  function getCartList($cartKey)
+  {
     return array(
       array(
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php	(revision 22247)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php	(revision 22567)
@@ -31,11 +31,14 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_TestBase extends Common_TestCase {
-
-  protected function setUp() {
+class SC_Helper_Purchase_TestBase extends Common_TestCase
+{
+
+  protected function setUp()
+  {
     parent::setUp();
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
@@ -45,5 +48,6 @@
    * セッションに配送情報を設定します。
    */
-  protected function setUpShipping($shipping) {
+  protected function setUpShipping($shipping)
+  {
     if (!$shipping) {
       $shipping = $this->getSingleShipping(); 
@@ -53,5 +57,6 @@
   }
 
-  protected function getSingleShipping() {
+  protected function getSingleShipping()
+  {
     return array(
       '00001' => array(
@@ -62,5 +67,6 @@
   }
 
-  protected function getMultipleShipping() {
+  protected function getMultipleShipping()
+  {
     return array(
       '00001' => array(
@@ -82,5 +88,6 @@
    * DBに配送情報を設定します。
    */
-  protected function setUpShippingOnDb() {
+  protected function setUpShippingOnDb()
+  {
     $shippings = array(
       array(
@@ -116,5 +123,6 @@
    * DBに配送商品情報を設定します。
    */
-  protected function setUpShipmentItem() {
+  protected function setUpShipmentItem()
+  {
       $shipping_items = array(
         array(
@@ -144,5 +152,6 @@
    * DBに商品クラス情報を設定します.
    */
-  protected function setUpProductClass() {
+  protected function setUpProductClass()
+  {
       $product_class = array(
         array(
@@ -173,5 +182,6 @@
 
     $this->objQuery->delete('dtb_products_class');
-    foreach ($product_class as $key => $item) {
+    foreach ($product_class as $key => $item)
+{
       $this->objQuery->insert('dtb_products_class', $item);
     }
@@ -183,5 +193,6 @@
    * DBに製品カテゴリ情報を登録します.
    */
-  protected function setUpClassCategory() {
+  protected function setUpClassCategory()
+  {
     $class_category = array(
       array(
@@ -210,5 +221,6 @@
    * DBに製品情報を登録します.
    */
- protected function setUpProducts() {
+ protected function setUpProducts()
+ {
    $products = array(
      array(
@@ -239,5 +251,6 @@
   * DBに支払方法の情報を登録します.
   */
- protected function setUpPaymentOptions() {
+ protected function setUpPaymentOptions()
+ {
    $payment_options = array(
      array(
@@ -292,5 +305,6 @@
   * DBに配送業者の情報を登録します.
   */
- protected function setUpDeliv() {
+ protected function setUpDeliv()
+ {
    $deliv = array(
      array(  // 削除フラグON
@@ -338,5 +352,6 @@
   * DBにお届け時間の情報を登録します.
   */
- protected function setUpDelivTime() {
+ protected function setUpDelivTime()
+ {
    $deliv_time = array(
      array(
@@ -366,5 +381,6 @@
   * DBに支払方法の情報を登録します.
   */
- protected function setUpPayment() {
+ protected function setUpPayment()
+ {
    $payment = array(
      array(
@@ -433,5 +449,6 @@
   * DBに受注情報を設定します.
   */
-  protected function setUpOrder() {
+  protected function setUpOrder()
+  {
     $order = array(
       array(
@@ -468,5 +485,6 @@
   * DBに受注一時情報を設定します.
   */
-  protected function setUpOrderTemp() {
+  protected function setUpOrderTemp()
+  {
     $order = array(
       array(
@@ -496,5 +514,6 @@
   * DBに受注詳細を設定します.
   */
- protected function setUpOrderDetail() {
+ protected function setUpOrderDetail()
+ {
    $order_detail = array(
      array(
@@ -546,5 +565,6 @@
   * DBに顧客情報を設定します。
   */
- protected function setUpCustomer() {
+ protected function setUpCustomer()
+ {
    $customer = array(
      array(
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_sfUpdateOrderStatusTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_sfUpdateOrderStatusTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_sfUpdateOrderStatusTest.php	(revision 22567)
@@ -32,9 +32,11 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_sfUpdateOrderStatusTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_sfUpdateOrderStatusTest extends SC_Helper_Purchase_TestBase
+{
 
   private $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrder();
@@ -43,5 +45,6 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
@@ -49,5 +52,6 @@
   /////////////////////////////////////////
   // オプションの引数：対応状況、使用ポイント、加算ポイント
-  public function testSfUpdateOrderStatus_オプションの引数が未指定の場合_DBの値が引き継がれる() {
+  public function testSfUpdateOrderStatus_オプションの引数が未指定の場合_DBの値が引き継がれる()
+  {
     $order_id = '1001';
     $old_update_date = $this->objQuery->get('update_date', 'dtb_order', 'order_id = ?', array($order_id));
@@ -81,5 +85,6 @@
   // TODO 定数を変更できないためテスト不可
   /**
-  public function testSfUpdateOrderStatus_ポイント使用しない設定の場合_ポイントに関する処理が行われない() {
+  public function testSfUpdateOrderStatus_ポイント使用しない設定の場合_ポイントに関する処理が行われない()
+  {
 
 
@@ -88,5 +93,6 @@
   */
 
-  public function testSfUpdateOrderStatus_対応状況が発送済みに変更された場合_発送日が更新される() {
+  public function testSfUpdateOrderStatus_対応状況が発送済みに変更された場合_発送日が更新される()
+  {
     $order_id = '1001';
     $old_dates = $this->objQuery->select(
@@ -124,5 +130,6 @@
   }
 
-  public function testSfUpdateOrderStatus_対応状況が入金済みに変更された場合_入金日が更新される() {
+  public function testSfUpdateOrderStatus_対応状況が入金済みに変更された場合_入金日が更新される()
+  {
     $order_id = '1002';
     $old_dates = $this->objQuery->select(
@@ -155,5 +162,6 @@
   }
 
-  public function testSfUpdateOrderStatus_変更前の対応状況が利用対象の場合_変更前の使用ポイントを戻す() {
+  public function testSfUpdateOrderStatus_変更前の対応状況が利用対象の場合_変更前の使用ポイントを戻す()
+  {
     $order_id = '1002';
     $old_dates = $this->objQuery->select(
@@ -183,5 +191,6 @@
   }
 
-  public function testSfUpdateOrderStatus_変更後の対応状況が利用対象の場合_変更後の使用ポイントを引く() {
+  public function testSfUpdateOrderStatus_変更後の対応状況が利用対象の場合_変更後の使用ポイントを引く()
+  {
     $order_id = '1001';
     $old_dates = $this->objQuery->select(
@@ -210,5 +219,6 @@
   }
 
-  public function testSfUpdateOrderStatus_変更前の対応状況が加算対象の場合_変更前の加算ポイントを戻す() {
+  public function testSfUpdateOrderStatus_変更前の対応状況が加算対象の場合_変更前の加算ポイントを戻す()
+  {
     $order_id = '1002';
     $old_dates = $this->objQuery->select(
@@ -238,5 +248,6 @@
   }
 
-  public function testSfUpdateOrderStatus_変更後の対応状況が加算対象の場合_変更後の加算ポイントを足す() {
+  public function testSfUpdateOrderStatus_変更後の対応状況が加算対象の場合_変更後の加算ポイントを足す()
+  {
     $order_id = '1001';
     $old_dates = $this->objQuery->select(
@@ -265,5 +276,6 @@
   }
 
-  public function testSfUpdateOrderStatus_加算ポイントがプラスの場合_会員テーブルが更新される() {
+  public function testSfUpdateOrderStatus_加算ポイントがプラスの場合_会員テーブルが更新される()
+  {
     $order_id = '1001';
     $old_dates = $this->objQuery->select(
@@ -294,5 +306,6 @@
   }
 
-  public function testSfUpdateOrderStatus_加算ポイントが負でポイントが足りている場合_会員テーブルが更新される() {
+  public function testSfUpdateOrderStatus_加算ポイントが負でポイントが足りている場合_会員テーブルが更新される()
+  {
     $order_id = '1001';
     $old_dates = $this->objQuery->select(
@@ -325,5 +338,6 @@
   // TODO ロールバックされる場合はexitするためテスト不可.
   /**
-  public function testSfUpdateOrderStatus_加算ポイントが負でポイントが足りていない場合_会員テーブルがロールバックされエラーとなる() {
+  public function testSfUpdateOrderStatus_加算ポイントが負でポイントが足りていない場合_会員テーブルがロールバックされエラーとなる()
+  {
   }
   */
@@ -331,5 +345,6 @@
   //////////////////////////////////////////
 
-  function assertUpdate($new_dates, $old_dates, $key, $message, $is_update = true) {
+  function assertUpdate($new_dates, $old_dates, $key, $message, $is_update = true)
+  {
     $new_date = $new_dates[0][$key];
     $old_date = $old_dates[0][$key];
@@ -345,10 +360,12 @@
 }
 
-class SC_Helper_Purchase_sfUpdateOrderStatusMock extends SC_Helper_Purchase {
+class SC_Helper_Purchase_sfUpdateOrderStatusMock extends SC_Helper_Purchase
+{
 
   var $usePoint;
   var $addPoint;
 
-  function isUsePoint($status) {
+  function isUsePoint($status)
+  {
     if (is_null($this->usePoint)) {
       return parent::isUsePoint($status);
@@ -357,5 +374,6 @@
   }
 
-  function isAddPoint($status) {
+  function isAddPoint($status)
+  {
     if (is_null($this->addPoint)) {
       return parent::isAddPoint($status);
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_copyFromCustomerTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_copyFromCustomerTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_copyFromCustomerTest.php	(revision 22567)
@@ -32,10 +32,12 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_copyFromCustomerTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_copyFromCustomerTest extends SC_Helper_Purchase_TestBase
+{
 
   var $customer;
   var $customer_array;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->customer = new SC_Customer();
@@ -64,10 +66,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testCopyFromCustomer_ログインしていない場合_何もしない() {
+  public function testCopyFromCustomer_ログインしていない場合_何もしない()
+  {
     $dest = array();
     User_Utils::setLoginState(FALSE, $this->customer_array, $this->objQuery);
@@ -81,5 +85,6 @@
   }
 
-  public function testCopyFromCustomer_モバイルの場合_モバイルのメールアドレスを設定する() {
+  public function testCopyFromCustomer_モバイルの場合_モバイルのメールアドレスを設定する()
+  {
     $dest = array();
     User_Utils::setLoginState(TRUE, $this->customer_array, $this->objQuery);
@@ -117,5 +122,6 @@
   }
 
-  public function testCopyFromCustomer_モバイルかつモバイルのメールアドレスがない場合_通常のメールアドレスを設定する() {
+  public function testCopyFromCustomer_モバイルかつモバイルのメールアドレスがない場合_通常のメールアドレスを設定する()
+  {
     $dest = array();
     $prefix = 'order';
@@ -138,5 +144,6 @@
   }
 
-  public function testCopyFromCustomer_モバイルでない場合_通常のメールアドレスをそのまま設定する() {
+  public function testCopyFromCustomer_モバイルでない場合_通常のメールアドレスをそのまま設定する()
+  {
     $dest = array();
     $prefix = 'prefix';
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerOrderTest.php	(revision 22567)
@@ -32,9 +32,11 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_registerOrderTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_registerOrderTest extends SC_Helper_Purchase_TestBase
+{
 
   private $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrder();
@@ -42,10 +44,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testRegisterOrder_既に受注IDが存在する場合_情報が更新される() {
+  public function testRegisterOrder_既に受注IDが存在する場合_情報が更新される()
+  {
     $order_id = '1001';
     $arrParams = array(
@@ -89,5 +93,6 @@
   }
 
-  public function testRegisterOrder_存在しない受注IDを指定した場合_新規に登録される() {
+  public function testRegisterOrder_存在しない受注IDを指定した場合_新規に登録される()
+  {
     $order_id = '1003';
     $arrParams = array(
@@ -132,5 +137,6 @@
   }
 
-  public function testRegisterOrder_受注IDが未指定の場合_新たにIDが発行される() {
+  public function testRegisterOrder_受注IDが未指定の場合_新たにIDが発行される()
+  {
     $order_id = '';
     $arrParams = array( // 顧客IDも未指定
@@ -182,6 +188,8 @@
 }
 
-class SC_Helper_Purchase_registerOrderMock extends SC_Helper_Purchase {
-  function sfUpdateOrderStatus($order_id, $status, $add_point, $use_point, $values) {
+class SC_Helper_Purchase_registerOrderMock extends SC_Helper_Purchase
+{
+  function sfUpdateOrderStatus($order_id, $status, $add_point, $use_point, $values)
+  {
     $_SESSION['testResult']['sfUpdateOrderStatus'] = array(
       'order_id' => $order_id,
@@ -192,5 +200,6 @@
   }
 
-  function sfUpdateOrderNameCol($order_id) {
+  function sfUpdateOrderNameCol($order_id)
+  {
    $_SESSION['testResult']['sfUpdateOrderNameCol'] = $order_id;
   }
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_saveOrderTempTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_saveOrderTempTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_saveOrderTempTest.php	(revision 22567)
@@ -32,8 +32,10 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_saveOrderTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_saveOrderTempTest extends SC_Helper_Purchase_TestBase
+{
   private $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpOrderTemp();
@@ -41,10 +43,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testSaveOrderTemp_受注一時情報IDが空の場合_何もしない(){
+  public function testSaveOrderTemp_受注一時情報IDが空の場合_何もしない()
+  {
     $this->helper->saveOrderTemp(null,
       array(
@@ -61,5 +65,6 @@
   }
 
-  public function testSaveOrderTemp_既存の情報がない場合_情報が新規登録される(){
+  public function testSaveOrderTemp_既存の情報がない場合_情報が新規登録される()
+  {
     $this->helper->saveOrderTemp('1003',
       array(
@@ -86,5 +91,6 @@
   }
 
-  public function testSaveOrderTemp_既存の情報がある場合_情報が更新される(){
+  public function testSaveOrderTemp_既存の情報がある場合_情報が更新される()
+  {
     $this->helper->saveOrderTemp('1002',
       array(
@@ -111,5 +117,6 @@
   }
 
-  public function testSaveOrderTemp_注文者情報がある場合_情報がコピーされる(){
+  public function testSaveOrderTemp_注文者情報がある場合_情報がコピーされる()
+  {
     $this->helper->saveOrderTemp('1003',
       array(
@@ -135,6 +142,8 @@
 }
 
-class SC_Helper_Purchase_saveOrderTempMock extends SC_Helper_Purchase {
-  function copyFromCustomer($sqlval, $objCustomer) {
+class SC_Helper_Purchase_saveOrderTempMock extends SC_Helper_Purchase
+{
+  function copyFromCustomer($sqlval, $objCustomer)
+  {
     echo('COPY_FROM_CUSTOMER');
   }
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cancelOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cancelOrderTest.php	(revision 22252)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cancelOrderTest.php	(revision 22567)
@@ -31,9 +31,11 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_cancelOrderTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_cancelOrderTest extends SC_Helper_Purchase_TestBase
+{
 
   private $helper;
 
-  protected function setUp() {
+  protected function setUp()
+  {
     parent::setUp();
     $this->setUpProductClass();
@@ -41,10 +43,12 @@
   }
 
-  protected function tearDown() {
+  protected function tearDown()
+  {
     parent::tearDown();
   }
 
   /////////////////////////////////////////
-  public function testCancelOrder_デフォルトの引数で呼び出した場合_製品クラスのデータが更新される(){
+  public function testCancelOrder_デフォルトの引数で呼び出した場合_製品クラスのデータが更新される()
+  {
     $order_id = '1001';
     $this->objQuery->begin();
@@ -79,5 +83,6 @@
   // 実際にトランザクションを開始したかどうかはテストできないが、
   // 問題なく処理が完了することのみ確認
-  public function testCancelOrder_トランザクションが開始していない場合_内部で開始する(){
+  public function testCancelOrder_トランザクションが開始していない場合_内部で開始する()
+  {
     $order_id = '1001';
 
@@ -110,5 +115,6 @@
   }
 
-  public function testCancelOrder_削除フラグが立っている場合_DB更新時に削除フラグが立てられる(){
+  public function testCancelOrder_削除フラグが立っている場合_DB更新時に削除フラグが立てられる()
+  {
     $order_id = '1001';
     $this->objQuery->begin();
@@ -147,7 +153,9 @@
 }
 
-class SC_Helper_Purchase_cancelOrderMock extends SC_Helper_Purchase {
+class SC_Helper_Purchase_cancelOrderMock extends SC_Helper_Purchase
+{
 
-  function registerOrder($order_id, $params) {
+  function registerOrder($order_id, $params)
+  {
     $_SESSION['testResult']['registerOrder'] = array(
       'order_id' => $order_id,
@@ -156,5 +164,6 @@
   }
 
-  function getOrderDetail($order_id) {
+  function getOrderDetail($order_id)
+  {
     $_SESSION['testResult']['getOrderDetail'] = array(
       'order_id' => $order_id
Index: branches/version-2_12-dev/tests/class/test/util/User_Utils.php
===================================================================
--- branches/version-2_12-dev/tests/class/test/util/User_Utils.php	(revision 22164)
+++ branches/version-2_12-dev/tests/class/test/util/User_Utils.php	(revision 22567)
@@ -5,5 +5,6 @@
  *
  */
-class User_Utils {
+class User_Utils
+{
 
   /**
@@ -13,5 +14,6 @@
    * @param deviceType  端末種別ID
    */
-  public static function setDeviceType($deviceType) {
+  public static function setDeviceType($deviceType)
+  {
     SC_Display_Ex::setDummyDevice($deviceType);
   }
@@ -23,5 +25,6 @@
    * @param isLogin true:ログインしている、false:ログインしていない
    */
-  public static function setLoginState($isLogin, $customer = null, $objQuery = null) {
+  public static function setLoginState($isLogin, $customer = null, $objQuery = null)
+  {
     if (!$isLogin) {
       $_SESSION['customer']['customer_id'] = null;
@@ -39,5 +42,6 @@
    * ユーザ情報を外部から設定しなかった場合のデフォルト値を取得します。
    */
-  private static function getDefaultCustomer() {
+  private static function getDefaultCustomer()
+  {
     $arrValue['customer_id'] = '999999998';
     $arrValue['name01'] = '苗字';
Index: branches/version-2_12-dev/tests/class/test/util/Test_Utils.php
===================================================================
--- branches/version-2_12-dev/tests/class/test/util/Test_Utils.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/test/util/Test_Utils.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id$
  */
-class Test_Utils {
+class Test_Utils
+{
 
   /**
@@ -40,5 +41,6 @@
    * @return 指定したキーのみを持つ連想配列
    */
-  public static function mapArray($input_array, $map_keys) {
+  public static function mapArray($input_array, $map_keys)
+  {
     $output_array = array();
     foreach ($map_keys as $index => $map_key) {
@@ -58,5 +60,6 @@
    * @return 指定のキーだけを抜き出した配列
    */
-  public static function mapCols($input_array, $key) {
+  public static function mapCols($input_array, $key)
+  {
     $output_array = array();
     foreach ($input_array as $data) {
@@ -75,5 +78,6 @@
    * @param new_array 追加要素を持つ配列
    */
-  public static function array_append(&$orig_array, $new_array) {
+  public static function array_append(&$orig_array, $new_array)
+  {
     foreach ($new_array as $element) {
       $orig_array[] = $element;
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getDayTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getDayTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getDayTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_getDayTest extends Common_TestCase {
+class SC_Date_getDayTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testGetDay_要素の数が31の配列を返す() {
+    public function testGetDay_要素の数が31の配列を返す()
+    {
         $this->expected = 31;
         $this->actual = count($this->objDate->getDay());
@@ -45,5 +49,6 @@
     }
 
-    public function testGetDay_要素の最低値が1の配列を返す() {
+    public function testGetDay_要素の最低値が1の配列を返す()
+    {
         $this->expected = 1;
         $this->actual = min($this->objDate->getDay());
@@ -52,5 +57,6 @@
     }
 
-    public function testGetDay_要素の最大値が31の配列を返す() {
+    public function testGetDay_要素の最大値が31の配列を返す()
+    {
         $this->expected = 31;
         $this->actual = max($this->objDate->getDay());
@@ -59,5 +65,6 @@
     }
 
-    public function testGetDay_TRUEを与えた場合要素の数が32の配列を返す() {
+    public function testGetDay_TRUEを与えた場合要素の数が32の配列を返す()
+    {
         $this->expected = 32;
         $this->actual = count($this->objDate->getDay(true));
@@ -66,5 +73,6 @@
     }
 
-    public function testGetDay_TRUEを与えた場合ーー含まれるの配列を返す() {
+    public function testGetDay_TRUEを与えた場合ーー含まれるの配列を返す()
+    {
         $result = in_array('--', $this->objDate->getDay(true));
 
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getHourTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getHourTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getHourTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_getHourTest extends Common_TestCase {
+class SC_Date_getHourTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testGetHour_24の配列を返す() {
+    public function testGetHour_24の配列を返す()
+    {
         $this->expected = 24;
         $this->actual = count($this->objDate->getHour());
@@ -45,5 +49,6 @@
     }
 
-    public function testGetHour_要素の最低値が0の配列を返す() {
+    public function testGetHour_要素の最低値が0の配列を返す()
+    {
         $this->expected = 0;
         $this->actual = min($this->objDate->getHour());
@@ -52,5 +57,6 @@
     }
 
-    public function testGetHour_要素の最大値が23の配列を返す() {
+    public function testGetHour_要素の最大値が23の配列を返す()
+    {
         $this->expected = 23;
         $this->actual = max($this->objDate->getHour());
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getYearTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getYearTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getYearTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_getYearTest extends Common_TestCase {
+class SC_Date_getYearTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
   
-    public function testGetYear_要素の数が4の配列を返す() {
+    public function testGetYear_要素の数が4の配列を返す()
+    {
         $this->expected = 4;
         $this->actual = count($this->objDate->getYear());
@@ -45,5 +49,6 @@
     }
     
-    public function testGetYear_最小値が今年の配列を返す() {
+    public function testGetYear_最小値が今年の配列を返す()
+    {
         $this->expected = DATE('Y');
         $this->actual = min($this->objDate->getYear());
@@ -52,5 +57,6 @@
     }
     
-    public function testGetYear_最低値が引数の年の配列を返す() {
+    public function testGetYear_最低値が引数の年の配列を返す()
+    {
         $this->expected = '2007';
         $this->actual = min($this->objDate->getYear('2007'));
@@ -59,5 +65,6 @@
     }
     
-    public function testGetYear_最低値がメンバー変数の年の配列を返す() {
+    public function testGetYear_最低値がメンバー変数の年の配列を返す()
+    {
         $this->expected = '2004';
         $this->objDate->setStartYear('2004');
@@ -67,5 +74,6 @@
     }
     
-    public function testGetYear_最大値が3年後の配列を返す() {
+    public function testGetYear_最大値が3年後の配列を返す()
+    {
         $this->expected = DATE('Y')+3;
         $this->actual = max($this->objDate->getYear());
@@ -74,5 +82,6 @@
     }
     
-    public function testGetYear_最大値がメンバ変数の配列を返す() {
+    public function testGetYear_最大値がメンバ変数の配列を返す()
+    {
         $this->expected = '2020';
         $this->objDate->setEndYear('2020');
@@ -82,10 +91,12 @@
     }
     
-    public function testGetYear_デフォルト値が含まれる配列を返す() {
+    public function testGetYear_デフォルト値が含まれる配列を返す()
+    {
         $result = in_array('----', $this->objDate->getYear(DATE('Y'), TRUE));
         $this->assertTrue($result, "デフォルト値");
     }
     
-    public function testGetYear_デフォルト値の引数に年を指定した配列を返す() {
+    public function testGetYear_デフォルト値の引数に年を指定した配列を返す()
+    {
         $year = date('Y');
         $this->expected = array( $year => $year, $year+1 => $year+1
@@ -96,5 +107,6 @@
     }
 
-    public function testGetYear_引数に指定したキーがデフォルト値となる配列を返す() {
+    public function testGetYear_引数に指定したキーがデフォルト値となる配列を返す()
+    {
         $this->expected = 'default';
         $return = $this->objDate->getYear(DATE('Y'), TRUE, 'default');
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getZeroYearTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getZeroYearTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getZeroYearTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_getZeroYearTest extends Common_TestCase {
+class SC_Date_getZeroYearTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
   
-    public function testGetZeroYear_要素の数が4の配列を返す() {
+    public function testGetZeroYear_要素の数が4の配列を返す()
+    {
         $this->expected = 4;
         $this->actual = count($this->objDate->getZeroYear());
@@ -44,5 +48,6 @@
     }
     
-    public function testGetZeroYear_最小値が2桁表記の今年の配列を返す() {
+    public function testGetZeroYear_最小値が2桁表記の今年の配列を返す()
+    {
         $this->expected = DATE('y');
         $this->actual = min($this->objDate->getZeroYear());
@@ -50,5 +55,6 @@
     }
     
-    public function testGetZeroYear_最低値が引数の年の2桁表記の配列を返す() {
+    public function testGetZeroYear_最低値が引数の年の2桁表記の配列を返す()
+    {
         $this->expected = '07';
         $this->actual = min($this->objDate->getZeroYear('2007'));
@@ -57,5 +63,6 @@
     }
     
-    public function testGetZeroYear_最低値がメンバー変数の年の2桁表記の配列を返す() {
+    public function testGetZeroYear_最低値がメンバー変数の年の2桁表記の配列を返す()
+    {
         $this->expected = '04';
         $this->objDate->setStartYear('2004');
@@ -65,5 +72,6 @@
     }
     
-    public function testGetZeroYear_最大値が3年後の2桁表記の配列を返す() {
+    public function testGetZeroYear_最大値が3年後の2桁表記の配列を返す()
+    {
         $this->expected = DATE('y')+3;
         $this->actual = max($this->objDate->getZeroYear());
@@ -72,5 +80,6 @@
     }
     
-    public function testGetZeroYear_最大値がメンバ変数の2桁表記の配列を返す() {
+    public function testGetZeroYear_最大値がメンバ変数の2桁表記の配列を返す()
+    {
         $this->expected = '20';
         $this->objDate->setEndYear('2020');
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_AccessorTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_AccessorTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_AccessorTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_AccessorTest extends Common_TestCase {
+class SC_Date_AccessorTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex('2010','2014');
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testGetStartYear_startYearの値を取得する() {
+    public function testGetStartYear_startYearの値を取得する()
+    {
         $this->expected = '2010';
         $this->actual = $this->objDate->getStartYear();
@@ -45,5 +49,6 @@
     }
 
-    public function testGetEndYear_endYearの値を取得する() {
+    public function testGetEndYear_endYearの値を取得する()
+    {
         $this->expected = '2014';
         $this->actual = $this->objDate->getEndYear();
@@ -52,5 +57,6 @@
     }
 
-    public function testsetMonth_monthの値を設定する() {
+    public function testsetMonth_monthの値を設定する()
+    {
         $this->expected = '9';
         $this->objDate->setMonth('9');
@@ -60,5 +66,6 @@
     }
     
-    public function testsetDay_dayの値を設定する() {
+    public function testsetDay_dayの値を設定する()
+    {
         $this->expected = '28';
         $this->objDate->setDay('28');
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMinutesTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMinutesTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMinutesTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_getMinutesTest extends Common_TestCase {
+class SC_Date_getMinutesTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testGetMinutes_要素の数が60の配列を返す() {
+    public function testGetMinutes_要素の数が60の配列を返す()
+    {
         $this->expected = 60;
         $this->actual = count($this->objDate->getMinutes());
@@ -45,5 +49,6 @@
     }
 
-    public function testGetMinutes_要素の最低値が0の配列を返す() {
+    public function testGetMinutes_要素の最低値が0の配列を返す()
+    {
         $this->expected = 0;
         $this->actual = min($this->objDate->getMinutes());
@@ -52,5 +57,6 @@
     }
 
-    public function testGetMinutes_要素の最大値が59の配列を返す() {
+    public function testGetMinutes_要素の最大値が59の配列を返す()
+    {
         $this->expected = 59;
         $this->actual = max($this->objDate->getMinutes());
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMonthTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMonthTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMonthTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_getMonthTest extends Common_TestCase {
+class SC_Date_getMonthTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testGetMonth_要素の数が12の配列を返す() {
+    public function testGetMonth_要素の数が12の配列を返す()
+    {
         $this->expected = 12;
         $this->actual = count($this->objDate->getMonth());
@@ -45,5 +49,6 @@
     }
 
-    public function testGetMonth_要素の最低値が1の配列を返す() {
+    public function testGetMonth_要素の最低値が1の配列を返す()
+    {
         $this->expected = 1;
         $this->actual = min($this->objDate->getMonth());
@@ -52,5 +57,6 @@
     }
 
-    public function testGetMonth_要素の最大値が12の配列を返す() {
+    public function testGetMonth_要素の最大値が12の配列を返す()
+    {
         $this->expected = 12;
         $this->actual = max($this->objDate->getMonth());
@@ -59,5 +65,6 @@
     }
 
-    public function testGetMonth_TRUEを与えた場合要素の数が13の配列を返す() {
+    public function testGetMonth_TRUEを与えた場合要素の数が13の配列を返す()
+    {
         $this->expected = 13;
         $this->actual = count($this->objDate->getMonth(true));
@@ -66,5 +73,6 @@
     }
 
-    public function testGetMonth_TRUEを与えた場合ーー含まれるの配列を返す() {
+    public function testGetMonth_TRUEを与えた場合ーー含まれるの配列を返す()
+    {
         $result = in_array('--', $this->objDate->getMonth(true));
 
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getZeroMonthTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getZeroMonthTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getZeroMonthTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_getZeroMonthTest extends Common_TestCase {
+class SC_Date_getZeroMonthTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testGetZeroMonth_要素の数が12の配列を返す() {
+    public function testGetZeroMonth_要素の数が12の配列を返す()
+    {
         $this->expected = 12;
         $this->actual = count($this->objDate->getZeroMonth());
@@ -45,5 +49,6 @@
     }
 
-    public function testGetZeroMonth_0をつけた月の配列を返す() {
+    public function testGetZeroMonth_0をつけた月の配列を返す()
+    {
         $this->expected = array('01'=>'01','02'=>'02','03'=>'03'
                                 ,'04'=>'04','05'=>'05','06'=>'06'
Index: branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMinutesIntervalTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMinutesIntervalTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/SC_Date/SC_Date_getMinutesIntervalTest.php	(revision 22567)
@@ -25,12 +25,15 @@
 require_once($HOME . "/tests/class/Common_TestCase.php");
 
-class SC_Date_getMinutesIntervalTest extends Common_TestCase {
+class SC_Date_getMinutesIntervalTest extends Common_TestCase
+{
 
-    protected function setUp() {
+    protected function setUp()
+    {
         parent::setUp();
         $this->objDate = new SC_Date_Ex();
     }
 
-    protected function tearDown() {
+    protected function tearDown()
+    {
         parent::tearDown();
     }
@@ -38,5 +41,6 @@
     /////////////////////////////////////////
 
-    public function testGetMinutesInterval_要素が00と30の配列を返す() {
+    public function testGetMinutesInterval_要素が00と30の配列を返す()
+    {
         $this->expected = array('00'=>'00', '30'=>'30');
         $this->actual = $this->objDate->getMinutesInterval();
Index: branches/version-2_12-dev/html/test/upgrade/index.php
===================================================================
--- branches/version-2_12-dev/html/test/upgrade/index.php	(revision 22206)
+++ branches/version-2_12-dev/html/test/upgrade/index.php	(revision 22567)
@@ -73,5 +73,6 @@
  * @return string
  */
-function getMode() {
+function getMode()
+{
     if (isset($_GET['mode'])) {
         return $_GET['mode'];
@@ -86,5 +87,6 @@
  *
  */
-function displayProductsList() {
+function displayProductsList()
+{
     $arrRet = array(
         'status' => 'SUCCESS',
@@ -103,5 +105,6 @@
  * @param array $arrProductsList
  */
-function updateModuleTable($arrProductsList) {
+function updateModuleTable($arrProductsList)
+{
     $table = 'dtb_module';
     $where = 'module_id = ?';
Index: branches/version-2_12-dev/html/upgrade/index.php
===================================================================
--- branches/version-2_12-dev/html/upgrade/index.php	(revision 22206)
+++ branches/version-2_12-dev/html/upgrade/index.php	(revision 22567)
@@ -43,5 +43,6 @@
 
 
-function lfPageFactory($mode) {
+function lfPageFactory($mode)
+{
     $prefix = 'LC_Page_Upgrade_';
     $file   = CLASS_REALDIR . "pages/upgrade/${prefix}";
Index: branches/version-2_12-dev/html/install/index.php
===================================================================
--- branches/version-2_12-dev/html/install/index.php	(revision 22348)
+++ branches/version-2_12-dev/html/install/index.php	(revision 22567)
@@ -275,5 +275,6 @@
 //-----------------------------------------------------------------------------------------------------------------------------------
 // ようこそ画面の表示
-function lfDispWelcome($objPage) {
+function lfDispWelcome($objPage)
+{
     global $objWebParam;
     global $objDBParam;
@@ -290,5 +291,6 @@
 
 // 使用許諾契約書の表示
-function lfDispAgreement($objPage) {
+function lfDispAgreement($objPage)
+{
     global $objWebParam;
     global $objDBParam;
@@ -305,5 +307,6 @@
 
 // STEP0画面の表示(チェック)
-function lfDispStep0($objPage) {
+function lfDispStep0($objPage)
+{
     global $objWebParam;
     global $objDBParam;
@@ -449,5 +452,6 @@
 
 // STEP0_1画面の表示(ファイルのコピー)
-function lfDispStep0_1($objPage) {
+function lfDispStep0_1($objPage)
+{
     global $objWebParam;
     global $objDBParam;
@@ -466,5 +470,6 @@
 }
 
-function lfGetFileMode($path) {
+function lfGetFileMode($path)
+{
     $mode = substr(sprintf('%o', fileperms($path)), -3);
     return $mode;
@@ -472,5 +477,6 @@
 
 // STEP1画面の表示
-function lfDispStep1($objPage) {
+function lfDispStep1($objPage)
+{
     global $objDBParam;
     // hiddenに入力値を保持
@@ -484,5 +490,6 @@
 
 // STEP2画面の表示
-function lfDispStep2($objPage) {
+function lfDispStep2($objPage)
+{
     global $objWebParam;
     global $objDBParam;
@@ -497,5 +504,6 @@
 
 // STEP3画面の表示
-function lfDispStep3($objPage) {
+function lfDispStep3($objPage)
+{
     global $objWebParam;
     global $objDBParam;
@@ -512,5 +520,6 @@
 
 // STEP4画面の表示
-function lfDispStep4($objPage) {
+function lfDispStep4($objPage)
+{
     global $objWebParam;
     global $objDBParam;
@@ -545,5 +554,6 @@
 
 // 完了画面の表示
-function lfDispComplete($objPage) {
+function lfDispComplete($objPage)
+{
     global $objWebParam;
     global $objDBParam;
@@ -617,5 +627,6 @@
 
 // WEBパラメーター情報の初期化
-function lfInitWebParam($objWebParam) {
+function lfInitWebParam($objWebParam)
+{
     global $objDb;
 
@@ -704,5 +715,6 @@
 
 // DBパラメーター情報の初期化
-function lfInitDBParam($objDBParam) {
+function lfInitDBParam($objDBParam)
+{
 
     if (defined('DB_SERVER')) {
@@ -747,5 +759,6 @@
 
 // 入力内容のチェック
-function lfCheckWebError($objWebParam) {
+function lfCheckWebError($objWebParam)
+{
     // 入力データを渡す。
     $arrRet = $objWebParam->getHashArray();
@@ -781,5 +794,6 @@
 
 // 入力内容のチェック
-function lfCheckDBError($objDBParam) {
+function lfCheckDBError($objDBParam)
+{
     global $objPage;
 
@@ -812,5 +826,6 @@
 
 // SQL文の実行
-function lfExecuteSQL($filepath, $arrDsn, $disp_err = true) {
+function lfExecuteSQL($filepath, $arrDsn, $disp_err = true)
+{
     $arrErr = array();
 
@@ -869,5 +884,6 @@
  * @return array エラーが発生した場合はエラーメッセージの配列
  */
-function lfDropSequence($arrSequences, $arrDsn) {
+function lfDropSequence($arrSequences, $arrDsn)
+{
     $arrErr = array();
 
@@ -908,5 +924,6 @@
  * @return array エラーが発生した場合はエラーメッセージの配列
  */
-function lfCreateSequence($arrSequences, $arrDsn) {
+function lfCreateSequence($arrSequences, $arrDsn)
+{
     $arrErr = array();
 
@@ -947,5 +964,6 @@
 
 // 設定ファイルの作成
-function lfMakeConfigFile() {
+function lfMakeConfigFile()
+{
     global $objWebParam;
     global $objDBParam;
@@ -1041,5 +1059,6 @@
  */
 $alldirs = array();
-function listdirs($dir) {
+function listdirs($dir)
+{
     global $alldirs;
     $alldirs[] = $dir;
@@ -1056,5 +1075,6 @@
  * 保持したスタティック変数をクリアする。
  */
-function initdirs() {
+function initdirs()
+{
     global $alldirs;
     $alldirs = array();
@@ -1066,5 +1086,6 @@
  * @return array シーケンスを使用するテーブル名とカラム名の配列
  */
-function getSequences() {
+function getSequences()
+{
     return array(
         array('dtb_best_products', 'best_id'),
@@ -1107,5 +1128,6 @@
  * @param string 設定する管理機能のディレクトリ名
  */
-function renameAdminDir($adminDir) {
+function renameAdminDir($adminDir)
+{
     $oldAdminDir = SC_Utils_Ex::sfTrimURL(ADMIN_DIR);
     if ($adminDir === $oldAdminDir) {
@@ -1121,5 +1143,6 @@
 }
 
-function getArrayDsn(SC_FormParam $objDBParam) {
+function getArrayDsn(SC_FormParam $objDBParam)
+{
     $arrRet = $objDBParam->getHashArray();
 
Index: branches/version-2_12-dev/html/user_data/__default.php
===================================================================
--- branches/version-2_12-dev/html/user_data/__default.php	(revision 20813)
+++ branches/version-2_12-dev/html/user_data/__default.php	(revision 22567)
@@ -10,5 +10,6 @@
  * @package Page
  */
-class LC_Page_User extends LC_Page_Ex {
+class LC_Page_User extends LC_Page_Ex 
+{
 
     /**
@@ -17,5 +18,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -26,5 +28,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -37,5 +40,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
     }
 
@@ -45,5 +49,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/SC_CartSession.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_CartSession.php	(revision 22554)
+++ branches/version-2_12-dev/data/class/SC_CartSession.php	(revision 22567)
@@ -28,5 +28,6 @@
  * @version $Id$
  */
-class SC_CartSession {
+class SC_CartSession 
+{
     /** ユニークIDを指定する. */
     var $key_tmp;
@@ -36,5 +37,6 @@
 
     /* コンストラクタ */
-    function __construct($cartKey = 'cart') {
+    function __construct($cartKey = 'cart')
+    {
         if (!isset($_SESSION[$cartKey])) {
             $_SESSION[$cartKey] = array();
@@ -44,5 +46,6 @@
 
     // 商品購入処理中のロック
-    function saveCurrentCart($key_tmp, $productTypeId) {
+    function saveCurrentCart($key_tmp, $productTypeId)
+    {
         $this->key_tmp = 'savecart_' . $key_tmp;
         // すでに情報がなければ現状のカート情報を記録しておく
@@ -59,5 +62,6 @@
 
     // 商品購入中の変更があったかをチェックする。
-    function getCancelPurchase($productTypeId) {
+    function getCancelPurchase($productTypeId)
+    {
         $ret = isset($this->cartSession[$productTypeId]['cancel_purchase'])
             ? $this->cartSession[$productTypeId]['cancel_purchase'] : '';
@@ -67,5 +71,6 @@
 
     // 購入処理中に商品に変更がなかったかを判定
-    function checkChangeCart($productTypeId) {
+    function checkChangeCart($productTypeId)
+    {
         $change = false;
         $max = $this->getMax($productTypeId);
@@ -95,5 +100,6 @@
 
     // 次に割り当てるカートのIDを取得する
-    function getNextCartID($productTypeId) {
+    function getNextCartID($productTypeId)
+    {
         $count = array();
         foreach ($this->cartSession[$productTypeId] as $key => $value) {
@@ -111,5 +117,6 @@
      * @deprecated SC_CartSession::getCartList() を使用してください
      */
-    function getProductTotal($id, $productTypeId) {
+    function getProductTotal($id, $productTypeId)
+    {
         $max = $this->getMax($productTypeId);
         for ($i = 0; $i <= $max; $i++) {
@@ -129,5 +136,6 @@
 
     // 値のセット
-    function setProductValue($id, $key, $val, $productTypeId) {
+    function setProductValue($id, $key, $val, $productTypeId)
+    {
         $max = $this->getMax($productTypeId);
         for ($i = 0; $i <= $max; $i++) {
@@ -141,5 +149,6 @@
 
     // カート内商品の最大要素番号を取得する。
-    function getMax($productTypeId) {
+    function getMax($productTypeId)
+    {
         $max = 0;
         if (count($this->cartSession[$productTypeId]) > 0) {
@@ -156,5 +165,6 @@
 
     // カート内商品数量の合計
-    function getTotalQuantity($productTypeId) {
+    function getTotalQuantity($productTypeId)
+    {
         $total = 0;
         $max = $this->getMax($productTypeId);
@@ -166,5 +176,6 @@
 
     // 全商品の合計価格
-    function getAllProductsTotal($productTypeId) {
+    function getAllProductsTotal($productTypeId)
+    {
         // 税込み合計
         $total = 0;
@@ -190,5 +201,6 @@
 
     // 全商品の合計税金
-    function getAllProductsTax($productTypeId) {
+    function getAllProductsTax($productTypeId)
+    {
         // 税合計
         $total = 0;
@@ -204,5 +216,6 @@
 
     // 全商品の合計ポイント
-    function getAllProductsPoint($productTypeId) {
+    function getAllProductsPoint($productTypeId)
+    {
         // ポイント合計
         $total = 0;
@@ -229,5 +242,6 @@
 
     // カートへの商品追加
-    function addProduct($product_class_id, $quantity) {
+    function addProduct($product_class_id, $quantity)
+    {
         $objProduct = new SC_Product_Ex();
         $arrProduct = $objProduct->getProductsClass($product_class_id);
@@ -253,5 +267,6 @@
 
     // 前頁のURLを記録しておく
-    function setPrevURL($url, $excludePaths = array()) {
+    function setPrevURL($url, $excludePaths = array())
+    {
         // 前頁として記録しないページを指定する。
         $arrExclude = array(
@@ -274,10 +289,12 @@
 
     // 前頁のURLを取得する
-    function getPrevURL() {
+    function getPrevURL()
+    {
         return isset($_SESSION['prev_url']) ? $_SESSION['prev_url'] : '';
     }
 
     // キーが一致した商品の削除
-    function delProductKey($keyname, $val, $productTypeId) {
+    function delProductKey($keyname, $val, $productTypeId)
+    {
         $max = count($this->cartSession[$productTypeId]);
         for ($i = 0; $i < $max; $i++) {
@@ -288,9 +305,11 @@
     }
 
-    function setValue($key, $val, $productTypeId) {
+    function setValue($key, $val, $productTypeId)
+    {
         $this->cartSession[$productTypeId][$key] = $val;
     }
 
-    function getValue($key, $productTypeId) {
+    function getValue($key, $productTypeId)
+    {
         return $this->cartSession[$productTypeId][$key];
     }
@@ -300,5 +319,6 @@
      * productsClass項目から、不必要な項目を削除する。
      */
-    function adjustSessionProductsClass(&$arrProductsClass) {
+    function adjustSessionProductsClass(&$arrProductsClass)
+    {
         $arrNecessaryItems = array(
             'product_id'          => true,
@@ -333,5 +353,6 @@
      * @return array カート内商品一覧の配列
      */
-    function getCartList($productTypeId) {
+    function getCartList($productTypeId)
+    {
         $objProduct = new SC_Product_Ex();
         $max = $this->getMax($productTypeId);
@@ -373,5 +394,6 @@
      * @return array すべてのカートの内容
      */
-    function getAllCartList() {
+    function getAllCartList()
+    {
         $results = array();
         $cartKeys = $this->getKeys();
@@ -394,5 +416,6 @@
      * @return array 商品規格ID の配列
      */
-    function getAllProductClassID($productTypeId) {
+    function getAllProductClassID($productTypeId)
+    {
         $max = $this->getMax($productTypeId);
         $productClassIDs = array();
@@ -411,5 +434,6 @@
      * @return void
      */
-    function delAllProducts($productTypeId) {
+    function delAllProducts($productTypeId)
+    {
         $max = $this->getMax($productTypeId);
         for ($i = 0; $i <= $max; $i++) {
@@ -419,5 +443,6 @@
 
     // 商品の削除
-    function delProduct($cart_no, $productTypeId) {
+    function delProduct($cart_no, $productTypeId)
+    {
         $max = $this->getMax($productTypeId);
         for ($i = 0; $i <= $max; $i++) {
@@ -429,5 +454,6 @@
 
     // 数量の増加
-    function upQuantity($cart_no, $productTypeId) {
+    function upQuantity($cart_no, $productTypeId)
+    {
         $quantity = $this->getQuantity($cart_no, $productTypeId);
         if (strlen($quantity + 1) <= INT_LEN) {
@@ -437,5 +463,6 @@
 
     // 数量の減少
-    function downQuantity($cart_no, $productTypeId) {
+    function downQuantity($cart_no, $productTypeId)
+    {
         $quantity = $this->getQuantity($cart_no, $productTypeId);
         if ($quantity > 1) {
@@ -451,5 +478,6 @@
      * @return integer 該当商品規格の数量
      */
-    function getQuantity($cart_no, $productTypeId) {
+    function getQuantity($cart_no, $productTypeId)
+    {
         $max = $this->getMax($productTypeId);
         for ($i = 0; $i <= $max; $i++) {
@@ -468,5 +496,6 @@
      * @retrun void
      */
-    function setQuantity($quantity, $cart_no, $productTypeId) {
+    function setQuantity($quantity, $cart_no, $productTypeId)
+    {
         $max = $this->getMax($productTypeId);
         for ($i = 0; $i <= $max; $i++) {
@@ -484,5 +513,6 @@
      * @return integer 商品規格ID
      */
-    function getProductClassId($cart_no, $productTypeId) {
+    function getProductClassId($cart_no, $productTypeId)
+    {
         for ($i = 0; $i < count($this->cartSession[$productTypeId]); $i++) {
             if ($this->cartSession[$productTypeId][$i]['cart_no'] == $cart_no) {
@@ -506,5 +536,6 @@
      * @return string エラーが発生した場合はエラーメッセージ
      */
-    function checkProducts($productTypeId) {
+    function checkProducts($productTypeId)
+    {
         $objProduct = new SC_Product_Ex();
         $objDelivery = new SC_Helper_Delivery_Ex();
@@ -561,5 +592,6 @@
      * @return boolean 送料無料の場合 true
      */
-    function isDelivFree($productTypeId) {
+    function isDelivFree($productTypeId)
+    {
         $objDb = new SC_Helper_DB_Ex();
 
@@ -675,5 +707,6 @@
      * @return array 商品種別IDの配列
      */
-    function getKeys() {
+    function getKeys()
+    {
         $keys = array_keys($this->cartSession);
         // 数量が 0 の商品種別は削除する
@@ -693,5 +726,6 @@
      * @return void
      */
-    function registerKey($key) {
+    function registerKey($key)
+    {
         $_SESSION['cartKey'] = $key;
     }
@@ -702,5 +736,6 @@
      * @return void
      */
-    function unsetKey() {
+    function unsetKey()
+    {
         unset($_SESSION['cartKey']);
     }
@@ -711,5 +746,6 @@
      * @return integer 商品種別ID
      */
-    function getKey() {
+    function getKey()
+    {
         return $_SESSION['cartKey'];
     }
@@ -720,5 +756,6 @@
      * @return boolean カートが複数商品種別の場合 true
      */
-    function isMultiple() {
+    function isMultiple()
+    {
         return count($this->getKeys()) > 1;
     }
@@ -730,5 +767,6 @@
      * @return boolean 指定の商品種別がカートに含まれる場合 true
      */
-    function hasProductType($product_type_id) {
+    function hasProductType($product_type_id)
+    {
         return in_array($product_type_id, $this->getKeys());
     }
Index: branches/version-2_12-dev/data/class/SC_CustomerList.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_CustomerList.php	(revision 22273)
+++ branches/version-2_12-dev/data/class/SC_CustomerList.php	(revision 22567)
@@ -25,9 +25,11 @@
  *  [概要] 会員検索用クラス
  */
-class SC_CustomerList extends SC_SelectSql_Ex {
+class SC_CustomerList extends SC_SelectSql_Ex 
+{
 
     var $arrColumnCSV;
 
-    function __construct($array, $mode = '') {
+    function __construct($array, $mode = '')
+    {
         parent::__construct($array);
 
@@ -327,10 +329,12 @@
 
     // 検索用SQL
-    function getList() {
+    function getList()
+    {
         $this->select = 'SELECT customer_id,name01,name02,kana01,kana02,sex,email,email_mobile,tel01,tel02,tel03,pref,status,update_date,mailmaga_flg FROM dtb_customer ';
         return $this->getSql(2);
     }
 
-    function getListMailMagazine($is_mobile = false) {
+    function getListMailMagazine($is_mobile = false)
+    {
 
         $colomn = $this->getMailMagazineColumn($is_mobile);
@@ -344,5 +348,6 @@
 
     // 検索総数カウント用SQL
-    function getListCount() {
+    function getListCount()
+    {
         $this->select = 'SELECT COUNT(customer_id) FROM dtb_customer ';
         return $this->getSql(1);
@@ -350,5 +355,6 @@
 
     // CSVダウンロード用SQL
-    function getListCSV($arrColumnCSV) {
+    function getListCSV($arrColumnCSV)
+    {
         $this->arrColumnCSV = $arrColumnCSV;
         $i = 0;
@@ -363,5 +369,6 @@
     }
 
-    function getWhere() {
+    function getWhere()
+    {
         return array($this->where, $this->arrVal);
     }
Index: branches/version-2_12-dev/data/class/SC_SelectSql.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SelectSql.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_SelectSql.php	(revision 22567)
@@ -23,5 +23,6 @@
 
 /* ---- SQL文を作るクラス ---- */
-class SC_SelectSql {
+class SC_SelectSql 
+{
 
     var $sql;
@@ -35,5 +36,6 @@
 
     //--　コンストラクタ。
-    function __construct($array = '') {
+    function __construct($array = '')
+    {
         if (is_array($array)) {
             $this->arrSql = $array;
@@ -42,5 +44,6 @@
 
     //-- SQL分生成
-    function getSql($mode = '') {
+    function getSql($mode = '')
+    {
         $this->sql = $this->select .' '. $this->where .' '. $this->group .' ';
 
@@ -53,5 +56,6 @@
 
         // 検索用
-    function addSearchStr($val) {
+    function addSearchStr($val)
+    {
         $return = '%' .$val. '%';
         return $return;
@@ -59,5 +63,6 @@
 
     //-- 範囲検索（○　~　○　まで）
-    function selectRange($from, $to, $column) {
+    function selectRange($from, $to, $column)
+    {
 
         // ある単位のみ検索($from = $to)
@@ -82,5 +87,6 @@
 
     //--　期間検索（○年○月○日か~○年○月○日まで）
-    function selectTermRange($from_year, $from_month, $from_day, $to_year, $to_month, $to_day, $column) {
+    function selectTermRange($from_year, $from_month, $from_day, $to_year, $to_month, $to_day, $column)
+    {
         $return = array();
 
@@ -121,5 +127,6 @@
 
     // checkboxなどで同一カラム内で単一、もしくは複数選択肢が有る場合　例: AND ( sex = xxx OR sex = xxx OR sex = xxx) AND ...
-    function setItemTerm($arr, $ItemStr) {
+    function setItemTerm($arr, $ItemStr)
+    {
         $return = array();
         foreach ($arr as $data) {
@@ -146,5 +153,6 @@
 
     //　NULL値が必要な場合
-    function setItemTermWithNull($arr, $ItemStr) {
+    function setItemTermWithNull($arr, $ItemStr)
+    {
         $return = array();
         $item = " {$ItemStr} IS NULL ";
@@ -164,5 +172,6 @@
     }
     // NULLもしくは''で検索する場合
-    function setItemTermWithNullAndSpace($arr, $ItemStr) {
+    function setItemTermWithNullAndSpace($arr, $ItemStr)
+    {
         $return = array();
         $count = count($arr);
@@ -189,5 +198,6 @@
 
     */
-    function setWhereByOR($arrWhere) {
+    function setWhereByOR($arrWhere)
+    {
 
         $count = count($arrWhere);
@@ -211,5 +221,6 @@
     }
 
-    function setWhere($where) {
+    function setWhere($where)
+    {
         if ($where != '') {
             if ($this->where) {
@@ -224,5 +235,6 @@
     }
 
-    function setOrder($order) {
+    function setOrder($order)
+    {
 
             $this->order =  'ORDER BY ' . $order;
@@ -230,5 +242,6 @@
     }
 
-    function setGroup($group) {
+    function setGroup($group)
+    {
 
         $this->group =  'GROUP BY ' . $group;
@@ -236,5 +249,6 @@
     }
 
-    function clearSql() {
+    function clearSql()
+    {
         $this->select = '';
         $this->where = '';
@@ -243,5 +257,6 @@
     }
 
-    function setSelect($sql) {
+    function setSelect($sql)
+    {
         $this->select = $sql;
     }
Index: branches/version-2_12-dev/data/class/SC_Customer.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Customer.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Customer.php	(revision 22567)
@@ -25,10 +25,12 @@
  *  [概要] 会員管理クラス
  */
-class SC_Customer {
+class SC_Customer 
+{
 
     /** 会員情報 */
     var $customer_data;
 
-    function getCustomerDataFromEmailPass($pass, $email, $mobile = false) {
+    function getCustomerDataFromEmailPass($pass, $email, $mobile = false)
+    {
         // 小文字に変換
         $email = strtolower($email);
@@ -63,5 +65,6 @@
      *                 は false を返す。
      */
-    function checkMobilePhoneId() {
+    function checkMobilePhoneId()
+    {
         //docomo用にデータを取り出す。
         if (SC_MobileUserAgent_Ex::getCarrier() == 'docomo') {
@@ -88,5 +91,6 @@
      *                 それ以外の場合は false を返す。
      */
-    function getCustomerDataFromMobilePhoneIdPass($pass) {
+    function getCustomerDataFromMobilePhoneIdPass($pass)
+    {
         //docomo用にデータを取り出す。
         if (SC_MobileUserAgent_Ex::getCarrier() == 'docomo') {
@@ -118,5 +122,6 @@
      * @return void
      */
-    function updateMobilePhoneId() {
+    function updateMobilePhoneId()
+    {
         if (!isset($_SESSION['mobile']['phone_id']) || $_SESSION['mobile']['phone_id'] === false) {
             return;
@@ -136,5 +141,6 @@
 
     // パスワードを確認せずにログイン
-    function setLogin($email) {
+    function setLogin($email)
+    {
         // 本登録された会員のみ
         $sql = 'SELECT * FROM dtb_customer WHERE (email = ? OR email_mobile = ?) AND del_flg = 0 AND status = 2';
@@ -147,5 +153,6 @@
 
     // セッション情報を最新の情報に更新する
-    function updateSession() {
+    function updateSession()
+    {
         $sql = 'SELECT * FROM dtb_customer WHERE customer_id = ? AND del_flg = 0';
         $customer_id = $this->getValue('customer_id');
@@ -157,5 +164,6 @@
 
     // ログイン情報をセッションに登録し、ログに書き込む
-    function startSession() {
+    function startSession()
+    {
         $_SESSION['customer'] = $this->customer_data;
         // セッション情報の保存
@@ -164,5 +172,6 @@
 
     // ログアウト　$_SESSION['customer']を解放し、ログに書き込む
-    function EndSession() {
+    function EndSession()
+    {
         // セッション情報破棄の前にcustomer_idを保存
         $customer_id = $_SESSION['customer']['customer_id'];
@@ -184,5 +193,6 @@
 
     // ログインに成功しているか判定する。
-    function isLoginSuccess($dont_check_email_mobile = false) {
+    function isLoginSuccess($dont_check_email_mobile = false)
+    {
         // ログイン時のメールアドレスとDBのメールアドレスが一致している場合
         if (isset($_SESSION['customer']['customer_id'])
@@ -205,5 +215,6 @@
 
     // パラメーターの取得
-    function getValue($keyname) {
+    function getValue($keyname)
+    {
         // ポイントはリアルタイム表示
         if ($keyname == 'point') {
@@ -218,10 +229,12 @@
 
     // パラメーターのセット
-    function setValue($keyname, $val) {
+    function setValue($keyname, $val)
+    {
         $_SESSION['customer'][$keyname] = $val;
     }
 
     // パラメーターがNULLかどうかの判定
-    function hasValue($keyname) {
+    function hasValue($keyname)
+    {
         if (isset($_SESSION['customer'][$keyname])) {
             return !SC_Utils_Ex::isBlank($_SESSION['customer'][$keyname]);
@@ -231,5 +244,6 @@
 
     // 誕生日月であるかどうかの判定
-    function isBirthMonth() {
+    function isBirthMonth()
+    {
         if (isset($_SESSION['customer']['birth'])) {
             $arrRet = preg_split('|[- :/]|', $_SESSION['customer']['birth']);
@@ -252,5 +266,6 @@
      * @return string $_SERVER['REMOTE_HOST'] 又は $_SERVER['REMOTE_ADDR']の文字列
      */
-    function getRemoteHost() {
+    function getRemoteHost()
+    {
 
         if (!empty($_SERVER['REMOTE_HOST'])) {
@@ -264,5 +279,6 @@
 
     //受注関連の会員情報を更新
-    function updateOrderSummary($customer_id) {
+    function updateOrderSummary($customer_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrOrderSummary =  $objQuery->getRow('SUM( payment_total) as buy_total, COUNT(order_id) as buy_times,MAX( create_date) as last_buy_date, MIN(create_date) as first_buy_date','dtb_order','customer_id = ? AND del_flg = 0 AND status <> ?',array($customer_id,ORDER_CANCEL));
@@ -282,5 +298,6 @@
      * @return boolean ログインに成功した場合 true; 失敗した場合 false
      */
-    function doLogin($login_email, $login_pass) {
+    function doLogin($login_email, $login_pass)
+    {
         switch (SC_Display_Ex::detectDevice()) {
             case DEVICE_TYPE_MOBILE:
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_CSV.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_CSV.php	(revision 22267)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_CSV.php	(revision 22567)
@@ -13,5 +13,6 @@
    * @version $Id$
    */
-class SC_Helper_CSV {
+class SC_Helper_CSV 
+{
 
     // {{{ properties
@@ -29,5 +30,6 @@
      * デフォルトコンストラクタ.
      */
-    function __construct() {
+    function __construct()
+    {
         $this->init();
     }
@@ -42,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         $this->arrSubnavi = array(
             1 => 'product',
@@ -70,5 +73,6 @@
      * @return mixed $is_download = true時 成功失敗フラグ(boolean) 、$is_downalod = false時 string
      */
-    function sfDownloadCsv($csv_id, $where = '', $arrVal = array(), $order = '', $is_download = false) {
+    function sfDownloadCsv($csv_id, $where = '', $arrVal = array(), $order = '', $is_download = false)
+    {
         // CSV出力タイトル行の作成
         $arrOutput = SC_Utils_Ex::sfSwapArray($this->sfGetCsvOutput($csv_id, 'status = ' . CSV_COLUMN_STATUS_FLG_ENABLE));
@@ -116,5 +120,6 @@
      * @return array CSV 項目の配列
      */
-    function sfGetCsvOutput($csv_id = '', $where = '', $arrVal = array(), $order = 'rank, no') {
+    function sfGetCsvOutput($csv_id = '', $where = '', $arrVal = array(), $order = 'rank, no')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -142,5 +147,6 @@
      * @return boolean true:インポート可能、false:インポート不可
      */
-    function sfIsImportCSVFrame(&$arrCSVFrame) {
+    function sfIsImportCSVFrame(&$arrCSVFrame)
+    {
         $result = true;
         foreach ($arrCSVFrame as $val) {
@@ -163,5 +169,6 @@
      * @return boolean true:更新可能、false:新規追加のみ不可
      */
-    function sfIsUpdateCSVFrame(&$arrCSVFrame) {
+    function sfIsUpdateCSVFrame(&$arrCSVFrame)
+    {
         $result = true;
         foreach ($arrCSVFrame as $val) {
@@ -182,5 +189,6 @@
      * @return integer CSV のカウント数
      */
-    function sfGetCSVRecordCount($fp) {
+    function sfGetCSVRecordCount($fp)
+    {
         $count = 0;
         while (!feof($fp)) {
@@ -202,5 +210,6 @@
      * @return boolean true (true:固定 false:中断)
      */
-    function cbOutputCSV($data) {
+    function cbOutputCSV($data)
+    {
         $line = $this->sfArrayToCSV($data);
         $line = mb_convert_encoding($line, 'SJIS-Win');
@@ -221,5 +230,6 @@
      * @return mixed $is_download = true時 成功失敗フラグ(boolean) 、$is_downalod = false時 string
      */
-    function sfDownloadCsvFromSql($sql, $arrVal = array(), $file_head = 'csv', $arrHeader = array(), $is_download = false) {
+    function sfDownloadCsvFromSql($sql, $arrVal = array(), $file_head = 'csv', $arrHeader = array(), $is_download = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -265,5 +275,6 @@
      * @return string 結果行
      */
-    function sfArrayToCsv($fields, $delimiter = ',', $enclosure = '"', $arrayDelimiter = '|') {
+    function sfArrayToCsv($fields, $delimiter = ',', $enclosure = '"', $arrayDelimiter = '|')
+    {
         if (strlen($delimiter) != 1) {
             trigger_error('delimiter must be a single character', E_USER_WARNING);
@@ -302,5 +313,6 @@
      * @return void
      */
-    function lfDownloadCsv($arrData, $prefix = '') {
+    function lfDownloadCsv($arrData, $prefix = '')
+    {
 
         if ($prefix == '') {
@@ -332,5 +344,6 @@
      * @return void
      */
-    function lfDownloadCSVFile($filepath, $prefix = '') {
+    function lfDownloadCSVFile($filepath, $prefix = '')
+    {
         $file_name = $prefix . date('YmdHis') . '.csv';
 
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Plugin.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Plugin.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Plugin.php	(revision 22567)
@@ -28,5 +28,6 @@
  * @version $Id$
  */
-class SC_Helper_Plugin {
+class SC_Helper_Plugin 
+{
     // プラグインのインスタンスの配列.
     var $arrPluginInstances = array();
@@ -44,5 +45,6 @@
      * @return void
      */
-    function load($plugin_activate_flg = true) {
+    function load($plugin_activate_flg = true)
+    {
 
         if (!defined('CONFIG_REALFILE') || !file_exists(CONFIG_REALFILE)) return; // インストール前
@@ -78,5 +80,6 @@
      * @return object SC_Helper_Pluginオブジェクト
      */
-    static function getSingletonInstance($plugin_activate_flg = true) {
+    static function getSingletonInstance($plugin_activate_flg = true)
+    {
         if (!isset($GLOBALS['_SC_Helper_Plugin_instance'])) {
             // プラグインのローダーがDB接続を必要とするため、
@@ -100,5 +103,6 @@
      * @return void
      */
-    function doAction($hook_point, $arrArgs = array()) {
+    function doAction($hook_point, $arrArgs = array())
+    {
         if (is_array($arrArgs) === false) {
             array(&$arrArgs);
@@ -154,5 +158,6 @@
      * @param string $priority 実行順
      */
-    function registerSuperHookPoint($objPlugin, $hook_point, $function_name, $priority) {
+    function registerSuperHookPoint($objPlugin, $hook_point, $function_name, $priority)
+    {
         // スーパープラグイン関数を定義しているかを検証.
         if (method_exists($objPlugin, $function_name) === true) {
@@ -168,5 +173,6 @@
      * @param string $priority 実行順
      */
-    function registerLocalHookPoint($objPlugin, $priority) {
+    function registerLocalHookPoint($objPlugin, $priority)
+    {
         // ローカルプラグイン関数を定義しているかを検証.
         if (method_exists($objPlugin, 'register') === true) {
@@ -185,5 +191,6 @@
      * @return boolean 成功すればtrue
      */
-    function addAction($hook_point, $function, $priority = 0) {
+    function addAction($hook_point, $function, $priority = 0)
+    {
         if (!is_callable($function)) {
             // TODO エラー処理;　コール可能な形式ではありません
@@ -202,5 +209,6 @@
      * @return string コールバック関数を一意に識別するID
      */
-    function makeActionUniqueId($hook_point, $function, $priority) {
+    function makeActionUniqueId($hook_point, $function, $priority)
+    {
         static $filter_id_count = 0;
 
@@ -241,5 +249,6 @@
      * @return array $arrBlocsサイトルートからメディアディレクトリへの相対パス
      */
-    function getEnableBlocs($arrBlocs) {
+    function getEnableBlocs($arrBlocs)
+    {
         foreach ($arrBlocs as $key => $value) {
             // 有効なpluginのブロック以外.
@@ -261,5 +270,6 @@
      * @return void
      */
-    function setHeadNavi($url) {
+    function setHeadNavi($url)
+    {
         $this->arrHeadNaviBlocsByPlugin[$url] = TARGET_ID_HEAD;
     }
@@ -271,5 +281,6 @@
      * @return void
      */
-    function setHeadNaviBlocs(&$arrBlocs) {
+    function setHeadNaviBlocs(&$arrBlocs)
+    {
         foreach ($this->arrHeadNaviBlocsByPlugin as $key => $value) {
             $arrBlocs[] = array(
@@ -288,5 +299,6 @@
      * @return void
      */
-    public static function hook($hook_point, $arrArgs = array(), $plugin_activate_flg = PLUGIN_ACTIVATE_FLAG) {
+    public static function hook($hook_point, $arrArgs = array(), $plugin_activate_flg = PLUGIN_ACTIVATE_FLAG)
+    {
         $objPlugin = SC_Helper_Plugin::getSingletonInstance($plugin_activate_flg);
         $objPlugin->doAction($hook_point, $arrArgs);
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Customer.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Customer.php	(revision 22356)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Customer.php	(revision 22567)
@@ -30,5 +30,6 @@
  * @version $Id$
  */
-class SC_Helper_Customer {
+class SC_Helper_Customer 
+{
 
     /**
@@ -40,5 +41,6 @@
      * @return integer 登録編集したユーザーのcustomer_id
      */
-    function sfEditCustomerData($arrData, $customer_id = null) {
+    function sfEditCustomerData($arrData, $customer_id = null)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->begin();
@@ -125,5 +127,6 @@
      * @return array 最終ポイントの配列
      */
-    function sfGetCustomerPoint($order_id, $use_point, $add_point) {
+    function sfGetCustomerPoint($order_id, $use_point, $add_point)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -155,5 +158,6 @@
      * @return integer  0:登録可能     1:登録済み   2:再登録制限期間内削除ユーザー  3:自分のアドレス
      */
-    function sfCheckRegisterUserFromEmail($email) {
+    function sfCheckRegisterUserFromEmail($email)
+    {
         $objCustomer = new SC_Customer_Ex();
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -203,5 +207,6 @@
      * @return boolean メールアドレスが重複する場合 true
      */
-    function sfCustomerEmailDuplicationCheck($customer_id, $email) {
+    function sfCustomerEmailDuplicationCheck($customer_id, $email)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -225,5 +230,6 @@
      * @return array 会員情報の配列を返す
      */
-    function sfGetCustomerData($customer_id, $mask_flg = true) {
+    function sfGetCustomerData($customer_id, $mask_flg = true)
+    {
         $objQuery       =& SC_Query_Ex::getSingletonInstance();
 
@@ -262,5 +268,6 @@
      * @return array 対象会員データ
      */
-    function sfGetCustomerDataFromId($customer_id, $add_where = '', $arrAddVal = array()) {
+    function sfGetCustomerDataFromId($customer_id, $add_where = '', $arrAddVal = array())
+    {
         $objQuery   =& SC_Query_Ex::getSingletonInstance();
 
@@ -286,5 +293,6 @@
      * @return string 会員登録キーの文字列
      */
-    function sfGetUniqSecretKey() {
+    function sfGetUniqSecretKey()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -305,5 +313,6 @@
      * @return integer 会員ID
      */
-    function sfGetCustomerId($uniqid, $check_status = false) {
+    function sfGetCustomerId($uniqid, $check_status = false)
+    {
         $objQuery   =& SC_Query_Ex::getSingletonInstance();
 
@@ -325,5 +334,6 @@
      * @return void
      */
-    function sfCustomerEntryParam(&$objFormParam, $isAdmin = false) {
+    function sfCustomerEntryParam(&$objFormParam, $isAdmin = false)
+    {
         SC_Helper_Customer_Ex::sfCustomerCommonParam($objFormParam);
         SC_Helper_Customer_Ex::sfCustomerRegisterParam($objFormParam, $isAdmin);
@@ -349,5 +359,6 @@
      * @return void
      */
-    function sfCustomerMypageParam(&$objFormParam) {
+    function sfCustomerMypageParam(&$objFormParam)
+    {
         SC_Helper_Customer_Ex::sfCustomerCommonParam($objFormParam);
         SC_Helper_Customer_Ex::sfCustomerRegisterParam($objFormParam, false, true);
@@ -368,5 +379,6 @@
      * @return void
      */
-    function sfCustomerCommonParam(&$objFormParam) {
+    function sfCustomerCommonParam(&$objFormParam)
+    {
         $objFormParam->addParam('お名前(姓)', 'name01', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'NO_SPTAB', 'SPTAB_CHECK' ,'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('お名前(名)', 'name02', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'NO_SPTAB', 'SPTAB_CHECK' , 'MAX_LENGTH_CHECK'));
@@ -394,5 +406,6 @@
      * @return void
      */
-    function sfCustomerRegisterParam(&$objFormParam, $isAdmin = false, $is_mypage = false) {
+    function sfCustomerRegisterParam(&$objFormParam, $isAdmin = false, $is_mypage = false)
+    {
         $objFormParam->addParam('パスワード', 'password', PASSWORD_MAX_LEN, 'a', array('EXIST_CHECK', 'SPTAB_CHECK', 'ALNUM_CHECK'));
         $objFormParam->addParam('パスワード確認用の質問の答え', 'reminder_answer', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'SPTAB_CHECK', 'MAX_LENGTH_CHECK'));
@@ -424,5 +437,6 @@
      * @return array エラーの配列
      */
-    function sfCustomerEntryErrorCheck(&$objFormParam) {
+    function sfCustomerEntryErrorCheck(&$objFormParam)
+    {
         $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck($objFormParam);
         $objErr = SC_Helper_Customer_Ex::sfCustomerRegisterErrorCheck($objErr);
@@ -453,5 +467,6 @@
      * @return array エラーの配列
      */
-    function sfCustomerMypageErrorCheck(&$objFormParam, $isAdmin = false) {
+    function sfCustomerMypageErrorCheck(&$objFormParam, $isAdmin = false)
+    {
 
         $objFormParam->toLower('email_mobile');
@@ -481,5 +496,6 @@
      * @return array エラー情報の配列
      */
-    function sfCustomerCommonErrorCheck(&$objFormParam) {
+    function sfCustomerCommonErrorCheck(&$objFormParam)
+    {
         $objFormParam->convParam();
         $objFormParam->toLower('email');
@@ -505,5 +521,6 @@
      * @return SC_CheckError $objErr エラー情報
      */
-    function sfCustomerRegisterErrorCheck(&$objErr, $isAdmin = false) {
+    function sfCustomerRegisterErrorCheck(&$objErr, $isAdmin = false)
+    {
         $objErr->doFunc(array('生年月日', 'year', 'month', 'day'), array('CHECK_BIRTHDAY'));
         $objErr->doFunc(array('パスワード', 'password', PASSWORD_MIN_LEN, PASSWORD_MAX_LEN) ,array('NUM_RANGE_CHECK'));
@@ -532,5 +549,6 @@
      * @return void
      */
-    function sfSetSearchParam(&$objFormParam) {
+    function sfSetSearchParam(&$objFormParam)
+    {
         $objFormParam->addParam('会員ID', 'search_customer_id', ID_MAX_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK'));
         $objFormParam->addParam('お名前', 'search_name', STEXT_LEN, 'KVa', array('SPTAB_CHECK', 'MAX_LENGTH_CHECK'));
@@ -581,5 +599,6 @@
      * @return array エラー配列
      */
-    function sfCheckErrorSearchParam(&$objFormParam) {
+    function sfCheckErrorSearchParam(&$objFormParam)
+    {
         // パラメーターの基本チェック
         $arrErr = $objFormParam->checkError();
@@ -628,5 +647,6 @@
      * @return array( integer 全体件数, mixed 会員データ一覧配列, mixed SC_PageNaviオブジェクト)
      */
-    function sfGetSearchData($arrParam, $limitMode = '') {
+    function sfGetSearchData($arrParam, $limitMode = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objSelect = new SC_CustomerList_Ex($arrParam, 'customer');
@@ -662,5 +682,6 @@
      * @return boolean 仮会員の場合 true
      */
-    public function checkTempCustomer($login_email) {
+    public function checkTempCustomer($login_email)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_HandleError.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_HandleError.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_HandleError.php	(revision 22567)
@@ -30,5 +30,6 @@
  * @version $Id$
  */
-class SC_Helper_HandleError {
+class SC_Helper_HandleError 
+{
 
     /**
@@ -37,5 +38,6 @@
      * @return void
      */
-    static function load() {
+    static function load()
+    {
         // E_DEPRECATED 定数 (for PHP < 5.3)
         // TODO バージョン互換処理に統合したい。
@@ -83,5 +85,6 @@
      *                      E_WARNING, E_USER_WARNING が発生した場合、true を返す
      */
-    static function handle_warning($errno, $errstr, $errfile, $errline) {
+    static function handle_warning($errno, $errstr, $errfile, $errline)
+    {
         // error_reporting 設定に含まれていないエラーコードは処理しない
         if (!(error_reporting() & $errno)) {
@@ -126,5 +129,6 @@
      *                     エラーが捕捉されない場合は, 出力バッファリングの内容を返す
      */
-    static function &_fatal_error_handler(&$buffer) {
+    static function &_fatal_error_handler(&$buffer)
+    {
         if (preg_match('/<b>(Fatal error)<\/b>: +(.+) in <b>(.+)<\/b> on line <b>(\d+)<\/b><br \/>/i', $buffer, $matches = array())) {
             $message = "$matches[1]: $matches[2] on [$matches[3]($matches[4])]";
@@ -150,5 +154,6 @@
      * @return void
      */
-    static function handle_error() {
+    static function handle_error()
+    {
         // 最後のエラーを確実に捉えるため、先頭で呼び出す。
         $arrError = error_get_last();
@@ -187,5 +192,6 @@
      * @return void
      */
-    static function displaySystemError($errstr = null) {
+    static function displaySystemError($errstr = null)
+    {
         ob_clean();
 
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Mobile.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Mobile.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Mobile.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id$
  */
-class SC_Helper_Mobile {
+class SC_Helper_Mobile 
+{
 
     /** 基本MimeType */
@@ -81,5 +82,6 @@
      * @return void
      */
-    function lfMobileCheckCompatibility() {
+    function lfMobileCheckCompatibility()
+    {
         if (!SC_MobileUserAgent_Ex::isSupported()) {
             header('Location: ' . ROOT_URLPATH . 'unsupported/' . DIR_INDEX_PATH);
@@ -94,5 +96,6 @@
      * @return void
      */
-    function lfMobileConvertInputValue(&$value) {
+    function lfMobileConvertInputValue(&$value)
+    {
         if (is_array($value)) {
             foreach ($value as $key => $val) {
@@ -113,5 +116,6 @@
      * @return void
      */
-    function lfMobileInitInput() {
+    function lfMobileInitInput()
+    {
         array_walk($_GET, array($this, 'lfMobileConvertInputValue'));
         array_walk($_POST, array($this, 'lfMobileConvertInputValue'));
@@ -125,5 +129,6 @@
      *                     取得できなかった場合は null を返す。
      */
-    function lfMobileGetExtSessionId() {
+    function lfMobileGetExtSessionId()
+    {
         if (!preg_match('|^' . ROOT_URLPATH . '(.*)$|', $_SERVER['SCRIPT_NAME'], $matches = array())) {
             return null;
@@ -152,5 +157,6 @@
      *                      取得できなかった場合は false を返す。
      */
-    function lfMobileGetSessionId() {
+    function lfMobileGetSessionId()
+    {
         // パラメーターからセッションIDを取得する。
         $sessionId = @$_POST[session_name()];
@@ -181,5 +187,6 @@
      * @return boolean セッションデータが有効な場合は true、無効な場合は false を返す。
      */
-    function lfMobileValidateSession() {
+    function lfMobileValidateSession()
+    {
         // 配列 mobile が登録されているかどうかをチェックする。
         if (!is_array(@$_SESSION['mobile'])) {
@@ -221,5 +228,6 @@
      * @return void
      */
-    function lfMobileInitOutput() {
+    function lfMobileInitOutput()
+    {
         // 出力用のエンコーディングを Shift JIS に固定する。
         mb_http_output('SJIS-win');
@@ -243,5 +251,6 @@
      * @return void
      */
-    function sfMobileInit() {
+    function sfMobileInit()
+    {
         $this->lfMobileInitInput();
 
@@ -258,5 +267,6 @@
      * @return String
      */
-    function gfAddSessionId($url = null) {
+    function gfAddSessionId($url = null)
+    {
         $objURL = new Net_URL($url);
         $objURL->addQueryString(session_name(), session_id());
@@ -270,5 +280,6 @@
      * @param array セッション ID を追加した配列
      */
-    function sessionIdArray($array = array()) {
+    function sessionIdArray($array = array())
+    {
         return array_merge($array, array(session_name() => session_id()));
     }
@@ -279,5 +290,6 @@
      * @return string 生成したトークンを返す。
      */
-    function lfGenerateKaraMailToken() {
+    function lfGenerateKaraMailToken()
+    {
         $token_chars = '0123456789abcdefghijklmnopqrstuvwxyz';
         $token_chars_length = strlen($token_chars);
@@ -300,5 +312,6 @@
      * @return string|false トークンを返す。エラーが発生した場合はfalseを返す。
      */
-    function gfPrepareKaraMail($next_url, $session_id = null) {
+    function gfPrepareKaraMail($next_url, $session_id = null)
+    {
         if (!isset($session_id)) {
             $session_id = session_id();
@@ -346,5 +359,6 @@
      * @return boolean 成功した場合はtrue、失敗した場合はfalseを返す。
      */
-    function gfRegisterKaraMail($token, $email) {
+    function gfRegisterKaraMail($token, $email)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -376,5 +390,6 @@
      * @return string|false URLを返す。エラーが発生した場合はfalseを返す。
      */
-    function gfFinishKaraMail($token) {
+    function gfFinishKaraMail($token)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -414,5 +429,6 @@
      * @return void
      */
-    function sfMobileSetExtSessionId($param_key, $param_value, $url) {
+    function sfMobileSetExtSessionId($param_key, $param_value, $url)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -437,5 +453,6 @@
      * @return boolean 携帯のメールアドレスの場合はtrue、それ以外の場合はfalseを返す。
      */
-    function gfIsMobileMailAddress($address) {
+    function gfIsMobileMailAddress($address)
+    {
         $masterData = new SC_DB_MasterData_Ex();
         $arrMobileMailDomains = $masterData->getMasterData('mtb_mobile_domain');
@@ -457,5 +474,6 @@
      * @return string MIMEタイプ
      */
-    function getMimeType($filename) {
+    function getMimeType($filename)
+    {
         //ファイルの拡張子からコンテンツタイプを決定する
         $file_extension = strtolower(substr(strrchr($filename,'.'),1));
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_FileManager.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_FileManager.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_FileManager.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id$
  */
-class SC_Helper_FileManager {
+class SC_Helper_FileManager 
+{
 
     /**
@@ -37,5 +38,6 @@
      * @return void
      */
-    function sfGetFileList($dir) {
+    function sfGetFileList($dir)
+    {
         $arrFileList = array();
         $arrDirList = array();
@@ -91,5 +93,6 @@
      * @return void
      */
-    function sfGetDirSize($dir) {
+    function sfGetDirSize($dir)
+    {
         $bytes = 0;
         if (file_exists($dir)) {
@@ -129,5 +132,6 @@
      * @return array ツリー生成用の配列
      */
-    function sfGetFileTree($dir, $tree_status) {
+    function sfGetFileTree($dir, $tree_status)
+    {
 
         $cnt = 0;
@@ -170,5 +174,6 @@
      * @return array ツリー生成用の配列
      */
-    function sfGetFileTreeSub($dir, $default_rank, &$cnt, &$arrTree, $tree_status) {
+    function sfGetFileTreeSub($dir, $default_rank, &$cnt, &$arrTree, $tree_status)
+    {
 
         if (file_exists($dir)) {
@@ -217,5 +222,6 @@
      * @return bool ファイルが存在する場合 true
      */
-    function sfDirChildExists($dir) {
+    function sfDirChildExists($dir)
+    {
         if (file_exists($dir)) {
             if (is_dir($dir)) {
@@ -243,5 +249,6 @@
      * @return bool 前回開かれた状態の場合 true
      */
-    function lfIsFileOpen($dir, $tree_status) {
+    function lfIsFileOpen($dir, $tree_status)
+    {
         $arrTreeStatus = explode('|', $tree_status);
         if (in_array($dir, $arrTreeStatus)) {
@@ -258,5 +265,6 @@
      * @return void
      */
-    function sfDownloadFile($file) {
+    function sfDownloadFile($file)
+    {
         // ファイルの場合はダウンロードさせる
         Header('Content-disposition: attachment; filename='.basename($file));
@@ -274,5 +282,6 @@
      * @return bool ファイル作成に成功した場合 true
      */
-    function sfCreateFile($file, $mode = '') {
+    function sfCreateFile($file, $mode = '')
+    {
         // 行末の/を取り除く
         if ($mode != '') {
@@ -291,5 +300,6 @@
      * @return string ファイルの内容
      */
-    function sfReadFile($filename) {
+    function sfReadFile($filename)
+    {
         $str = '';
         // バイナリモードでオープン
@@ -311,5 +321,6 @@
      * @return boolean ファイルの書き込みに成功した場合 true
      */
-    function sfWriteFile($filename, $value) {
+    function sfWriteFile($filename, $value)
+    {
         if (!is_dir(dirname($filename))) {
             SC_Utils_Ex::recursiveMkdir(dirname($filename), 0777);
@@ -332,5 +343,6 @@
      * @return boolean 成功した場合 true; 失敗した場合 false
      */
-    function downloadArchiveFiles($dir, $template_code) {
+    function downloadArchiveFiles($dir, $template_code)
+    {
         // ダウンロードされるファイル名
         $dlFileName = 'tpl_package_' . $template_code . '_' . date('YmdHis') . '.tar.gz';
@@ -370,5 +382,6 @@
      * @return boolean Archive_Tar::extractModify()のエラー
      */
-    function unpackFile($path) {
+    function unpackFile($path)
+    {
         // 圧縮フラグTRUEはgzip解凍をおこなう
         $tar = new Archive_Tar($path, true);
@@ -398,5 +411,6 @@
      * @return void
      */
-    function deleteFile($path, $del_myself = true) {
+    function deleteFile($path, $del_myself = true)
+    {
         $flg = false;
         // 対象が存在するかを検証.
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_PageLayout.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_PageLayout.php	(revision 22405)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_PageLayout.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id:SC_Helper_PageLayout.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_Helper_PageLayout {
+class SC_Helper_PageLayout 
+{
 
     // }}}
@@ -47,5 +48,6 @@
      * @return void
      */
-    function sfGetPageLayout(&$objPage, $preview = false, $url = '', $device_type_id = DEVICE_TYPE_PC) {
+    function sfGetPageLayout(&$objPage, $preview = false, $url = '', $device_type_id = DEVICE_TYPE_PC)
+    {
 
         // URLを元にページ情報を取得
@@ -109,5 +111,6 @@
      * @return array ページ属性の配列
      */
-    function getPageProperties($device_type_id = DEVICE_TYPE_PC, $page_id = null, $where = '', $arrParams = array()) {
+    function getPageProperties($device_type_id = DEVICE_TYPE_PC, $page_id = null, $where = '', $arrParams = array())
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'device_type_id = ? ' . (SC_Utils_Ex::isBlank($where) ? $where : 'AND ' . $where);
@@ -133,5 +136,6 @@
      * @return array ブロック情報の配列
      */
-    function getBlocs($device_type_id = DEVICE_TYPE_PC, $where = '', $arrParams = array(), $has_realpath = true) {
+    function getBlocs($device_type_id = DEVICE_TYPE_PC, $where = '', $arrParams = array(), $has_realpath = true)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'device_type_id = ? ' . (SC_Utils_Ex::isBlank($where) ? $where : 'AND ' . $where);
@@ -154,5 +158,6 @@
      * @return array 配置情報を含めたブロックの配列
      */
-    function getBlocPositions($device_type_id, $page_id, $has_realpath = true) {
+    function getBlocPositions($device_type_id, $page_id, $has_realpath = true)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $table = <<< __EOF__
@@ -193,5 +198,6 @@
      * @return integer 削除数
      */
-    function lfDelPageData($page_id, $device_type_id = DEVICE_TYPE_PC) {
+    function lfDelPageData($page_id, $device_type_id = DEVICE_TYPE_PC)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // page_id が空でない場合にはdeleteを実行
@@ -215,5 +221,6 @@
      * @return void // TODO boolean にするべき?
      */
-    function lfDelFile($filename, $device_type_id) {
+    function lfDelFile($filename, $device_type_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -247,5 +254,6 @@
      * @return 編集可能ページの場合 true
      */
-    function isEditablePage($device_type_id, $page_id) {
+    function isEditablePage($device_type_id, $page_id)
+    {
         if ($page_id == 0) {
             return false;
@@ -266,5 +274,6 @@
      * @return string テンプレートのパス
      */
-    function getTemplatePath($device_type_id = DEVICE_TYPE_PC, $isUser = false) {
+    function getTemplatePath($device_type_id = DEVICE_TYPE_PC, $isUser = false)
+    {
         $templateName = '';
         switch ($device_type_id) {
@@ -303,5 +312,6 @@
      * @return string 端末に応じた DocumentRoot から user_data までのパス
      */
-    function getUserDir($device_type_id = DEVICE_TYPE_PC, $hasPackage = false) {
+    function getUserDir($device_type_id = DEVICE_TYPE_PC, $hasPackage = false)
+    {
         switch ($device_type_id) {
         case DEVICE_TYPE_MOBILE:
@@ -335,5 +345,6 @@
      * @return void
      */
-    function setBlocPathTo($device_type_id = DEVICE_TYPE_PC, &$arrBlocs = array()) {
+    function setBlocPathTo($device_type_id = DEVICE_TYPE_PC, &$arrBlocs = array())
+    {
         foreach ($arrBlocs as $key => $value) {
             $arrBloc =& $arrBlocs[$key];
@@ -351,5 +362,6 @@
      * @return integer $col_num カラム数
      */
-    function getColumnNum($arrPageLayout) {
+    function getColumnNum($arrPageLayout)
+    {
         // メインは確定
         $col_num = 1;
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Purchase.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Purchase.php	(revision 22554)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Purchase.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class SC_Helper_Purchase {
+class SC_Helper_Purchase 
+{
 
     var $arrShippingKey = array(
@@ -60,5 +61,6 @@
      * @return void
      */
-    function completeOrder($orderStatus = ORDER_NEW) {
+    function completeOrder($orderStatus = ORDER_NEW)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objSiteSession = new SC_SiteSession_Ex();
@@ -115,5 +117,6 @@
      * @return void
      */
-    function cancelOrder($order_id, $orderStatus = ORDER_CANCEL, $is_delete = false) {
+    function cancelOrder($order_id, $orderStatus = ORDER_CANCEL, $is_delete = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $in_transaction = $objQuery->inTransaction();
@@ -157,5 +160,6 @@
      * @return string 受注一時ID
      */
-    function rollbackOrder($order_id, $orderStatus = ORDER_CANCEL, $is_delete = false) {
+    function rollbackOrder($order_id, $orderStatus = ORDER_CANCEL, $is_delete = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $in_transaction = $objQuery->inTransaction();
@@ -199,5 +203,6 @@
      * @return void
      */
-    function verifyChangeCart($uniqId, &$objCartSession) {
+    function verifyChangeCart($uniqId, &$objCartSession)
+    {
         $cartKey = $objCartSession->getKey();
 
@@ -234,5 +239,6 @@
      * @return array 受注一時情報の配列
      */
-    function getOrderTemp($uniqId) {
+    function getOrderTemp($uniqId)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         return $objQuery->getRow('*', 'dtb_order_temp', 'order_temp_id = ?', array($uniqId));
@@ -245,5 +251,6 @@
      * @return array 受注一時情報の配列
      */
-    function getOrderTempByOrderId($order_id) {
+    function getOrderTempByOrderId($order_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         return $objQuery->getRow('*', 'dtb_order_temp', 'order_id = ?', array($order_id));
@@ -260,5 +267,6 @@
      * @return void
      */
-    function saveOrderTemp($uniqId, $params, &$objCustomer = NULL) {
+    function saveOrderTemp($uniqId, $params, &$objCustomer = NULL)
+    {
         if (SC_Utils_Ex::isBlank($uniqId)) {
             return;
@@ -295,5 +303,6 @@
      * @param bool $has_shipment_item 配送商品を保有している配送先のみ返す。
      */
-    function getShippingTemp($has_shipment_item = false) {
+    function getShippingTemp($has_shipment_item = false)
+    {
         if ($has_shipment_item) {
             $arrReturn = array();
@@ -314,5 +323,6 @@
      * @return void
      */
-    function clearShipmentItemTemp($shipping_id = null) {
+    function clearShipmentItemTemp($shipping_id = null)
+    {
         if (is_null($shipping_id)) {
             foreach ($_SESSION['shipping'] as $key => $value) {
@@ -334,5 +344,6 @@
      * @return void
      */
-    function setShipmentItemTemp($shipping_id, $product_class_id, $quantity) {
+    function setShipmentItemTemp($shipping_id, $product_class_id, $quantity)
+    {
         // 配列が長くなるので, リファレンスを使用する
         $arrItems =& $_SESSION['shipping'][$shipping_id]['shipment_item'][$product_class_id];
@@ -364,5 +375,6 @@
      * 配送先都道府県の配列を返す.
      */
-    function getShippingPref($is_multiple) {
+    function getShippingPref($is_multiple)
+    {
         $results = array();
         foreach (SC_Helper_Purchase_Ex::getShippingTemp($is_multiple) as $val) {
@@ -377,5 +389,6 @@
      * @return boolean 複数配送指定の購入の場合 true
      */
-    function isMultiple() {
+    function isMultiple()
+    {
         return count(SC_Helper_Purchase_Ex::getShippingTemp(true)) >= 2;
     }
@@ -389,5 +402,6 @@
      * @return void
      */
-    function saveShippingTemp($arrSrc, $shipping_id = 0) {
+    function saveShippingTemp($arrSrc, $shipping_id = 0)
+    {
         // 配送商品は引き継がない
         unset($arrSrc['shipment_item']);
@@ -407,5 +421,6 @@
      * @return void
      */
-    function unsetShippingTemp() {
+    function unsetShippingTemp()
+    {
         SC_Helper_Purchase_Ex::unsetAllShippingTemp(true);
     }
@@ -417,5 +432,6 @@
      * @return void
      */
-    static function unsetAllShippingTemp($multiple_temp = false) {
+    static function unsetAllShippingTemp($multiple_temp = false)
+    {
         unset($_SESSION['shipping']);
         if ($multiple_temp) {
@@ -430,5 +446,6 @@
      * @return void
      */
-    static function unsetOneShippingTemp($shipping_id) {
+    static function unsetOneShippingTemp($shipping_id)
+    {
         unset($_SESSION['shipping'][$shipping_id]);
     }
@@ -492,5 +509,6 @@
      * @return void
      */
-    function copyFromOrder(&$dest, $src, $prefix = 'shipping', $src_prefix = 'order', $arrKey = null) {
+    function copyFromOrder(&$dest, $src, $prefix = 'shipping', $src_prefix = 'order', $arrKey = null)
+    {
         if (is_null($arrKey)) {
             $arrKey = $this->arrShippingKey;
@@ -515,5 +533,6 @@
      * @return void
      */
-    function extractShipping($arrSrc) {
+    function extractShipping($arrSrc)
+    {
         $arrKey = array();
         foreach ($this->arrShippingKey as $key) {
@@ -530,5 +549,6 @@
      * @return array 購入金額に応じた支払方法の配列
      */
-    function getPaymentsByPrice($total, $deliv_id) {
+    function getPaymentsByPrice($total, $deliv_id)
+    {
 
         $arrPaymentIds = SC_Helper_Delivery_Ex::getPayments($deliv_id);
@@ -574,5 +594,6 @@
      * お届け日一覧を取得する.
      */
-    function getDelivDate(&$objCartSess, $productTypeId) {
+    function getDelivDate(&$objCartSess, $productTypeId)
+    {
         $cartList = $objCartSess->getCartList($productTypeId);
         $delivDateIds = array();
@@ -632,5 +653,6 @@
      * お届け可能日のスタート値から, お届け日の配列を取得する.
      */
-    function getDateArray($start_day, $end_day) {
+    function getDateArray($start_day, $end_day)
+    {
         $masterData = new SC_DB_MasterData_Ex();
         $arrWDAY = $masterData->getMasterData('mtb_wday');
@@ -665,5 +687,6 @@
      * @return void
      */
-    function registerShipping($order_id, $arrParams, $convert_shipping_date = true) {
+    function registerShipping($order_id, $arrParams, $convert_shipping_date = true)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $table = 'dtb_shipping';
@@ -703,5 +726,6 @@
      * @return void
      */
-    function registerShipmentItem($order_id, $shipping_id, $arrParams) {
+    function registerShipmentItem($order_id, $shipping_id, $arrParams)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $table = 'dtb_shipment_item';
@@ -759,5 +783,6 @@
      * @param integer 受注ID
      */
-    function registerOrderComplete($orderParams, &$objCartSession, $cartKey) {
+    function registerOrderComplete($orderParams, &$objCartSession, $cartKey)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -829,5 +854,6 @@
      * @return integer 受注ID
      */
-    function registerOrder($order_id, $arrParams) {
+    function registerOrder($order_id, $arrParams)
+    {
         $table = 'dtb_order';
         $where = 'order_id = ?';
@@ -883,5 +909,6 @@
      * @return void
      */
-    function registerOrderDetail($order_id, $arrParams) {
+    function registerOrderDetail($order_id, $arrParams)
+    {
         $table = 'dtb_order_detail';
         $where = 'order_id = ?';
@@ -904,5 +931,6 @@
      * @return array 受注情報の配列
      */
-    function getOrder($order_id, $customer_id = null) {
+    function getOrder($order_id, $customer_id = null)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'order_id = ?';
@@ -922,5 +950,6 @@
      * @return array 受注詳細の配列
      */
-    function getOrderDetail($order_id, $has_order_status = true) {
+    function getOrderDetail($order_id, $has_order_status = true)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $dbFactory  = SC_DB_DBFactory_Ex::getInstance();
@@ -979,5 +1008,6 @@
      * @return void
      */
-    function setDownloadableFlgTo(&$arrOrderDetail) {
+    function setDownloadableFlgTo(&$arrOrderDetail)
+    {
         foreach ($arrOrderDetail as $key => $value) {
             // 販売価格が 0 円
@@ -1002,5 +1032,6 @@
      * @return array 配送情報の配列
      */
-    function getShippings($order_id, $has_items = true) {
+    function getShippings($order_id, $has_items = true)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrResults = array();
@@ -1032,5 +1063,6 @@
      * @return array 商品規格IDをキーにした配送商品の配列
      */
-    function getShipmentItems($order_id, $shipping_id, $has_detail = true) {
+    function getShipmentItems($order_id, $shipping_id, $has_detail = true)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objProduct = new SC_Product_Ex();
@@ -1064,5 +1096,6 @@
      * @return void
      */
-    function sendOrderMail($orderId) {
+    function sendOrderMail($orderId)
+    {
         $mailHelper = new SC_Helper_Mail_Ex();
         $template_id =
@@ -1083,5 +1116,6 @@
      * @return void
      */
-    function sfUpdateOrderStatus($orderId, $newStatus = null, $newAddPoint = null, $newUsePoint = null, &$sqlval = array()) {
+    function sfUpdateOrderStatus($orderId, $newStatus = null, $newAddPoint = null, $newUsePoint = null, &$sqlval = array())
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrOrderOld = $objQuery->getRow('status, add_point, use_point, customer_id', 'dtb_order', 'order_id = ?', array($orderId));
@@ -1191,5 +1225,6 @@
      * @static
      */
-    function sfUpdateOrderNameCol($order_id, $temp_table = false) {
+    function sfUpdateOrderNameCol($order_id, $temp_table = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -1229,5 +1264,6 @@
      * @return boolean 使用するか(会員テーブルから減算するか)
      */
-    function isUsePoint($status) {
+    function isUsePoint($status)
+    {
         if ($status == null) {
             return false;
@@ -1249,5 +1285,6 @@
      * @return boolean 加算するか
      */
-    function isAddPoint($status) {
+    function isAddPoint($status)
+    {
         switch ($status) {
             case ORDER_NEW:         // 新規注文
@@ -1285,5 +1322,6 @@
      * @param integer $cartKey 登録を行うカート情報のキー
      */
-    function cleanupSession($orderId, &$objCartSession, &$objCustomer, $cartKey) {
+    function cleanupSession($orderId, &$objCartSession, &$objCustomer, $cartKey)
+    {
         // カートの内容を削除する.
         $objCartSession->delAllProducts($cartKey);
@@ -1302,5 +1340,6 @@
      * @return void
      */
-    function setShipmentItemTempForSole(&$objCartSession, $shipping_id = 0) {
+    function setShipmentItemTempForSole(&$objCartSession, $shipping_id = 0)
+    {
         $objCartSess = new SC_CartSession_Ex();
 
@@ -1319,5 +1358,6 @@
      * @return integer
      */
-    public function getNextOrderID() {
+    public function getNextOrderID()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         return $objQuery->nextVal('dtb_order_order_id');
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Transform.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Transform.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Transform.php	(revision 22567)
@@ -28,5 +28,6 @@
  * @version $Id$
  */
-class SC_Helper_Transform {
+class SC_Helper_Transform 
+{
     protected $objDOM;
     protected $arrSmartyTagsOrg;
@@ -49,5 +50,6 @@
      * @return void
      */
-    public function __construct($source) {
+    public function __construct($source)
+    {
         $this->objDOM = new DOMDocument();
         $this->objDOM->strictErrorChecking = false;
@@ -132,5 +134,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function select($selector, $index = NULL, $require = true, $err_msg = NULL) {
+    public function select($selector, $index = NULL, $require = true, $err_msg = NULL)
+    {
         $this->arrSelectElements = array();
         $this->search_depth = 0;
@@ -172,5 +175,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function find($selector, $index = NULL, $require = true, $err_msg = NULL) {
+    public function find($selector, $index = NULL, $require = true, $err_msg = NULL)
+    {
         $arrParentElements = $this->arrSelectElements[$this->search_depth];
         $this->search_depth++;
@@ -212,5 +216,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function end($back_num = 1) {
+    public function end($back_num = 1)
+    {
         if ($this->search_depth >= $back_num) {
             $this->search_depth -= $back_num;
@@ -229,5 +234,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function insertBefore($html_snip) {
+    public function insertBefore($html_snip)
+    {
         foreach ($this->arrSelectElements[$this->search_depth] as $key => $objElement) {
             $this->lfSetTransform('insertBefore', $objElement[0], $html_snip);
@@ -243,5 +249,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function insertAfter($html_snip) {
+    public function insertAfter($html_snip)
+    {
         foreach ($this->arrSelectElements[$this->search_depth] as $key => $objElement) {
             $this->lfSetTransform('insertAfter', $objElement[0], $html_snip);
@@ -257,5 +264,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function appendFirst($html_snip) {
+    public function appendFirst($html_snip)
+    {
         foreach ($this->arrSelectElements[$this->search_depth] as $key => $objElement) {
             $this->lfSetTransform('appendFirst', $objElement[0], $html_snip);
@@ -271,5 +279,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function appendChild($html_snip) {
+    public function appendChild($html_snip)
+    {
         foreach ($this->arrSelectElements[$this->search_depth] as $key => $objElement) {
             $this->lfSetTransform('appendChild', $objElement[0], $html_snip);
@@ -285,5 +294,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function replaceElement($html_snip) {
+    public function replaceElement($html_snip)
+    {
         foreach ($this->arrSelectElements[$this->search_depth] as $key => &$objElement) {
             $this->lfSetTransform('replaceElement', $objElement[0], $html_snip);
@@ -298,5 +308,6 @@
      * @return SC_Helper_Transformオブジェクト
      */
-    public function removeElement() {
+    public function removeElement()
+    {
         foreach ($this->arrSelectElements[$this->search_depth] as $key => &$objElement) {
             $this->lfSetTransform('replaceElement', $objElement[0], '');
@@ -311,5 +322,6 @@
      * @return string トランスフォーム済みHTML。まったくトランスフォームが行われなかった場合は元のHTMLを返す。。
      */
-    public function getHTML() {
+    public function getHTML()
+    {
         if (count($this->arrErr)) {
             // エラーメッセージ組み立て
@@ -358,5 +370,6 @@
      * @return string 代わりの文字列
      */
-    protected function lfCaptureSmartyTags2Comment(array $arrMatches) {
+    protected function lfCaptureSmartyTags2Comment(array $arrMatches)
+    {
         $substitute_tag = sprintf('<!--###%08d###-->', $this->smarty_tags_idx);
         $this->arrSmartyTagsOrg[$this->smarty_tags_idx] = $arrMatches[0];
@@ -375,5 +388,6 @@
      * @return string 代わりの文字列
      */
-    protected function lfCaptureHeadTags2Comment(array $arrMatches) {
+    protected function lfCaptureHeadTags2Comment(array $arrMatches)
+    {
         $substitute_tag = sprintf('<!--###%08d###-->', $this->smarty_tags_idx);
         $this->arrSmartyTagsOrg[$this->smarty_tags_idx] = $arrMatches[2];
@@ -398,5 +412,6 @@
      * @return string 代わりの文字列
      */
-    protected function lfCaptureSmartyTagsInTag(array $arrMatches) {
+    protected function lfCaptureSmartyTagsInTag(array $arrMatches)
+    {
         // Smartyタグ内のクォートを処理しやすいよう、いったんダミーのタグに
         $html = preg_replace_callback('/<\!--{.+?\}-->/s', array($this, 'lfCaptureSmartyTags2Temptag'), $arrMatches[0]);
@@ -415,5 +430,6 @@
      * @return string 代わりの文字列
      */
-    protected function lfCaptureSmartyTags2Temptag(array $arrMatches) {
+    protected function lfCaptureSmartyTags2Temptag(array $arrMatches)
+    {
         $substitute_tag = sprintf('###TEMP%08d###', $this->smarty_tags_idx);
         $this->arrSmartyTagsOrg[$this->smarty_tags_idx] = $arrMatches[0];
@@ -432,5 +448,6 @@
      * @return string 代わりの文字列
      */
-    protected function lfCaptureSmartyTagsInQuote(array $arrMatches) {
+    protected function lfCaptureSmartyTagsInQuote(array $arrMatches)
+    {
         $html = preg_replace_callback(
             '/###TEMP(\d{8})###/s',
@@ -450,5 +467,6 @@
      * @return string 代わりの文字列
      */
-    protected function lfCaptureSmartyTags2Value(array $arrMatches) {
+    protected function lfCaptureSmartyTags2Value(array $arrMatches)
+    {
         $tag_idx = (int)$arrMatches[1];
         $substitute_tag = sprintf('###%08d###', $tag_idx);
@@ -466,5 +484,6 @@
      * @return string 代わりの文字列
      */
-    protected function lfCaptureSmartyTags2Attr(array $arrMatches) {
+    protected function lfCaptureSmartyTags2Attr(array $arrMatches)
+    {
         $tag_idx = (int)$arrMatches[1];
         $substitute_tag = sprintf('rel%08d="######"', $tag_idx);
@@ -480,5 +499,6 @@
      * @return void
      */
-    protected function lfScanChild(DOMNode $objDOMElement, $parent_selector = '') {
+    protected function lfScanChild(DOMNode $objDOMElement, $parent_selector = '')
+    {
         $objNodeList = $objDOMElement->childNodes;
         if (is_null($objNodeList)) return;
@@ -516,5 +536,6 @@
      * @return string 正規表現文字列
      */
-    protected function lfSelector2Regex($selector, $parent_index = NULL){
+    protected function lfSelector2Regex($selector, $parent_index = NULL)
+    {
         // jQueryライクなセレクタを正規表現に
         $selector = preg_replace('/ *> */', ' >', $selector);   // 子セレクタをツリー検索用に 「A >B」の記法にする
@@ -551,5 +572,6 @@
      * @return void
      */
-    protected function lfAddElement($elementNo, array &$arrElement) {
+    protected function lfAddElement($elementNo, array &$arrElement)
+    {
         if (is_array($this->arrSelectElements[$this->search_depth]) && array_key_exists($arrElement[0], $this->arrSelectElements[$this->search_depth])) {
             //nop
@@ -569,5 +591,6 @@
      * @return boolean
      */
-    protected function lfSetTransform($mode, $target_key, $html_snip) {
+    protected function lfSetTransform($mode, $target_key, $html_snip)
+    {
 
         $substitute_tag = sprintf('<!--###%08d###-->', $this->smarty_tags_idx);
@@ -635,5 +658,6 @@
      * @return void
      */
-    protected function lfSetError($selector, $type, $err_msg = NULL) {
+    protected function lfSetError($selector, $type, $err_msg = NULL)
+    {
         $this->arrErr[] = array(
             'selector'    => $selector,
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Payment.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Payment.php	(revision 22566)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Payment.php	(revision 22567)
@@ -38,5 +38,6 @@
      * @return array
      */
-    public function get($payment_id, $has_deleted = false) {
+    public function get($payment_id, $has_deleted = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'payment_id = ?';
@@ -54,5 +55,6 @@
      * @return array
      */
-    public function getList($has_deleted = false) {
+    public function getList($has_deleted = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'payment_id, payment_method, charge, rule_max, upper_rule, note, fix, charge_flg';
@@ -73,5 +75,6 @@
      * @return void
      */
-    public function save($sqlval) {
+    public function save($sqlval)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -100,5 +103,6 @@
      * @return void
      */
-    public function delete($payment_id) {
+    public function delete($payment_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         // ランク付きレコードの削除
@@ -112,5 +116,6 @@
      * @return void
      */
-    public function rankUp($payment_id) {
+    public function rankUp($payment_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objDb->sfRankUp('dtb_payment', 'payment_id', $payment_id);
@@ -123,5 +128,6 @@
      * @return void
      */
-    public function rankDown($payment_id) {
+    public function rankDown($payment_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objDb->sfRankDown('dtb_payment', 'payment_id', $payment_id);
@@ -136,5 +142,6 @@
      * @return boolean 決済モジュールを使用する支払い方法の場合 true
      */
-    public static function useModule($payment_id) {
+    public static function useModule($payment_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $memo03 = $objQuery->get('memo03', 'dtb_payment', 'payment_id = ?', array($payment_id));
@@ -147,5 +154,6 @@
      * @return array
      */
-    public static function getIDValueList() {
+    public static function getIDValueList()
+    {
         return SC_Helper_DB_Ex::sfGetIDValueList('dtb_payment', 'payment_id', 'payment_method');
     }
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_FPDI.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_FPDI.php	(revision 22051)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_FPDI.php	(revision 22567)
@@ -6,5 +6,6 @@
 $GLOBALS[SJIS_widths] = $SJIS_widths;
 
-class SC_Helper_FPDI extends PDF_Japanese {
+class SC_Helper_FPDI extends PDF_Japanese 
+{
     /**
      * PDF_Japanese の明朝フォントに加えゴシックフォントを追加定義
@@ -12,5 +13,6 @@
      * @return void
      */
-    function AddSJISFont() {
+    function AddSJISFont()
+    {
         parent::AddSJISFont();
         $cw = $GLOBALS['SJIS_widths'];
@@ -25,5 +27,6 @@
      * PDF_Japanese#SJISMultiCell をベースにカスタマイズ。
      */
-    function SJISMultiCellForFancyTable($w, $h, $txt, $border = 0, $align = 'L', $fill = 0) {
+    function SJISMultiCellForFancyTable($w, $h, $txt, $border = 0, $align = 'L', $fill = 0)
+    {
         $y = $this->y;
 
@@ -145,5 +148,6 @@
      * FIXME: 後の列の高さが大きい場合、表示が乱れる。
      */
-    function FancyTable($header, $data, $w) {
+    function FancyTable($header, $data, $w)
+    {
         // Colors, line width and bold font
         $this->SetFillColor(216, 216, 216);
@@ -186,14 +190,17 @@
     }
 
-    function Text($x, $y, $txt) {
+    function Text($x, $y, $txt)
+    {
         parent::Text($x, $y, $this->lfConvSjis($txt));
     }
 
-    function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='') {
+    function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='')
+    {
         parent::Cell($w, $h, $this->lfConvSjis($txt), $border, $ln, $align, $fill, $link);
     }
 
     // 文字コードSJIS変換 -> japanese.phpで使用出来る文字コードはSJIS-winのみ
-    function lfConvSjis($conv_str) {
+    function lfConvSjis($conv_str)
+    {
         return mb_convert_encoding($conv_str, 'SJIS-win', CHAR_CODE);
     }
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Mail.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Mail.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Mail.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id$
  */
-class SC_Helper_Mail {
+class SC_Helper_Mail 
+{
 
     /** メールテンプレートのパス */
@@ -44,5 +45,6 @@
      * コンストラクタ.
      */
-    function __construct() {
+    function __construct()
+    {
         $masterData = new SC_DB_MasterData_Ex();
         $this->arrMAILTPLPATH =  $masterData->getMasterData('mtb_mail_tpl_path');
@@ -55,5 +57,6 @@
      * @param LC_Page $objPage
      */
-    function setPage(LC_Page $objPage) {
+    function setPage(LC_Page $objPage)
+    {
         $this->objPage = $objPage;
     }
@@ -64,10 +67,12 @@
      * @return LC_Page
      */
-    function getPage() {
+    function getPage()
+    {
         return $this->objPage;
     }
 
     /* DBに登録されたテンプレートメールの送信 */
-    function sfSendTemplateMail($to, $to_name, $template_id, &$objPage, $from_address = '', $from_name = '', $reply_to = '', $bcc = '') {
+    function sfSendTemplateMail($to, $to_name, $template_id, &$objPage, $from_address = '', $from_name = '', $reply_to = '', $bcc = '')
+    {
 
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -101,5 +106,6 @@
 
     /* 受注完了メール送信 */
-    function sfSendOrderMail($order_id, $template_id, $subject = '', $header = '', $footer = '', $send = true) {
+    function sfSendOrderMail($order_id, $template_id, $subject = '', $header = '', $footer = '', $send = true)
+    {
 
         $arrTplVar = new stdClass();
@@ -213,5 +219,6 @@
 
     // テンプレートを使用したメールの送信
-    function sfSendTplMail($to, $tmp_subject, $tplpath, &$objPage) {
+    function sfSendTplMail($to, $tmp_subject, $tplpath, &$objPage)
+    {
         $objMailView = new SC_SiteView_Ex();
         $objMailView->setPage($this->getPage());
@@ -234,5 +241,6 @@
 
     // 通常のメール送信
-    function sfSendMail($to, $tmp_subject, $body) {
+    function sfSendMail($to, $tmp_subject, $body)
+    {
         $arrInfo = SC_Helper_DB_Ex::sfGetBasisData();
         // メール送信処理
@@ -248,5 +256,6 @@
 
     //件名にテンプレートを用いる
-    function sfMakeSubject($subject, &$objMailView) {
+    function sfMakeSubject($subject, &$objMailView)
+    {
         if (empty($objMailView)) {
             $objMailView = new SC_SiteView_Ex();
@@ -267,5 +276,6 @@
 
     // メール配信履歴への登録
-    function sfSaveMailHistory($order_id, $template_id, $subject, $body) {
+    function sfSaveMailHistory($order_id, $template_id, $subject, $body)
+    {
         $sqlval = array();
         $sqlval['subject'] = $subject;
@@ -287,5 +297,6 @@
 
     /* 会員登録があるかどうかのチェック(仮会員を含まない) */
-    function sfCheckCustomerMailMaga($email) {
+    function sfCheckCustomerMailMaga($email)
+    {
         $col = 'email, mailmaga_flg, customer_id';
         $from = 'dtb_customer';
@@ -308,5 +319,6 @@
      * @return boolean true:成功 false:失敗
      */
-    function sfSendRegistMail($secret_key, $customer_id = '', $is_mobile = false) {
+    function sfSendRegistMail($secret_key, $customer_id = '', $is_mobile = false)
+    {
         // 会員データの取得
         if (SC_Utils_Ex::sfIsInt($customer_id)) {
@@ -371,5 +383,6 @@
      * @todo   表示順も引数で変更できるように
      */
-    function sfGetMailmagaTemplate($template_id = null) {
+    function sfGetMailmagaTemplate($template_id = null)
+    {
         // 初期化
         $where = '';
@@ -397,5 +410,6 @@
      * @return　array 送信履歴情報を格納した配列
      */
-    function sfGetSendHistory($send_id = null) {
+    function sfGetSendHistory($send_id = null)
+    {
         // 初期化
         $where = '';
@@ -425,5 +439,6 @@
      * @return　void
      */
-    function sfSendMailmagazine($send_id) {
+    function sfSendMailmagazine($send_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objDb = new SC_Helper_DB_Ex();
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Delivery.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Delivery.php	(revision 22566)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Delivery.php	(revision 22567)
@@ -38,5 +38,6 @@
      * @return array
      */
-    public function get($deliv_id, $has_deleted = false) {
+    public function get($deliv_id, $has_deleted = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -73,5 +74,6 @@
      * @return array
      */
-    public function getList($product_type_id = null, $has_deleted = false) {
+    public function getList($product_type_id = null, $has_deleted = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '*';
@@ -100,5 +102,6 @@
      * @return integer $deliv_id
      */
-    public function save($sqlval) {
+    public function save($sqlval)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->begin();
@@ -211,5 +214,6 @@
      * @return void
      */
-    public function delete($deliv_id) {
+    public function delete($deliv_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         // ランク付きレコードの削除
@@ -223,5 +227,6 @@
      * @return void
      */
-    public function rankUp($deliv_id) {
+    public function rankUp($deliv_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objDb->sfRankUp('dtb_deliv', 'deliv_id', $deliv_id);
@@ -234,5 +239,6 @@
      * @return void
      */
-    public function rankDown($deliv_id) {
+    public function rankDown($deliv_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objDb->sfRankDown('dtb_deliv', 'deliv_id', $deliv_id);
@@ -245,5 +251,6 @@
      * @return boolean
      */
-    public function checkExist($arrDeliv) {
+    public function checkExist($arrDeliv)
+    {
         $objDb = new SC_Helper_DB_Ex();
         if ($arrDeliv['deliv_id'] == '') {
@@ -262,5 +269,6 @@
      * @return array
      */
-    public static function getIDValueList($type = 'name') {
+    public static function getIDValueList($type = 'name')
+    {
         return SC_Helper_DB_Ex::sfGetIDValueList('dtb_deliv', 'deliv_id', $type);
     }
@@ -272,5 +280,6 @@
      * @return array お届け時間の配列
      */
-    public static function getDelivTime($deliv_id) {
+    public static function getDelivTime($deliv_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->setOrder('time_id');
@@ -289,5 +298,6 @@
      * @return array 有効な支払方法IDの配列
      */
-    public static function getPayments($deliv_id) {
+    public static function getPayments($deliv_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->setOrder('rank');
@@ -302,5 +312,6 @@
      * @return string 指定の都道府県, 配送業者の配送料金
      */
-    public static function getDelivFee($pref_id, $deliv_id = 0) {
+    public static function getDelivFee($pref_id, $deliv_id = 0)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         if (!is_array($pref_id)) {
@@ -329,5 +340,6 @@
      * @return array 配送料金の配列
      */
-    public static function getDelivFeeList($deliv_id) {
+    public static function getDelivFeeList($deliv_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->setOrder('pref');
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Session.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Session.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Session.php	(revision 22567)
@@ -13,5 +13,6 @@
  * @version $Id$
  */
-class SC_Helper_Session {
+class SC_Helper_Session 
+{
 
     var $objDb;
@@ -25,5 +26,6 @@
      * 各関数をセッションハンドラに保存する
      */
-    function __construct() {
+    function __construct()
+    {
         $this->objDb = new SC_Helper_DB_Ex();
         session_set_save_handler(array(&$this, 'sfSessOpen'),
@@ -49,5 +51,6 @@
      * @return bool セッションが正常に開始された場合 true
      */
-    function sfSessOpen($save_path, $session_name) {
+    function sfSessOpen($save_path, $session_name)
+    {
         return true;
     }
@@ -58,5 +61,6 @@
      * @return bool セッションが正常に終了した場合 true
      */
-    function sfSessClose() {
+    function sfSessClose()
+    {
         return true;
     }
@@ -68,5 +72,6 @@
      * @return string セッションデータの値
      */
-    function sfSessRead($id) {
+    function sfSessRead($id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrRet = $objQuery->select('sess_data', 'dtb_session', 'sess_id = ?', array($id));
@@ -85,5 +90,6 @@
      * @return bool セッションの書き込みに成功した場合 true
      */
-    function sfSessWrite($id, $sess_data) {
+    function sfSessWrite($id, $sess_data)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $exists = $objQuery->exists('dtb_session', 'sess_id = ?', array($id));
@@ -115,5 +121,6 @@
      * @return bool セッションを正常に破棄した場合 true
      */
-    function sfSessDestroy($id) {
+    function sfSessDestroy($id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->delete('dtb_session', 'sess_id = ?', array($id));
@@ -128,5 +135,6 @@
      * @param integer $maxlifetime セッションの有効期限(使用しない)
      */
-    function sfSessGc($maxlifetime) {
+    function sfSessGc($maxlifetime)
+    {
         // MAX_LIFETIME以上更新されていないセッションを削除する。
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -154,5 +162,6 @@
      * @return string トランザクショントークンの文字列
      */
-    function getToken() {
+    function getToken()
+    {
         if (empty($_SESSION[TRANSACTION_ID_NAME])) {
             $_SESSION[TRANSACTION_ID_NAME] = SC_Helper_Session_Ex::createToken();
@@ -167,5 +176,6 @@
      * @return string トランザクショントークン用の文字列
      */
-    function createToken() {
+    function createToken()
+    {
         return sha1(uniqid(rand(), true));
     }
@@ -189,5 +199,6 @@
      * @return boolean トランザクショントークンが有効な場合 true
      */
-    function isValidToken($is_unset = false) {
+    function isValidToken($is_unset = false)
+    {
         // token の妥当性チェック
         $ret = $_REQUEST[TRANSACTION_ID_NAME] === $_SESSION[TRANSACTION_ID_NAME];
@@ -204,5 +215,6 @@
      * @return void
      */
-    function destroyToken() {
+    function destroyToken()
+    {
         unset($_SESSION[TRANSACTION_ID_NAME]);
     }
@@ -215,5 +227,6 @@
      * @return void
      */
-    function adminAuthorization() {
+    function adminAuthorization()
+    {
         $masterData = new SC_DB_MasterData_Ex();
         $arrExcludes = $masterData->getMasterData('mtb_auth_excludes');
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Address.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Address.php	(revision 22546)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Address.php	(revision 22567)
@@ -37,5 +37,6 @@
      * @return array()
      */
-    function registAddress($sqlval) {
+    function registAddress($sqlval)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $customer_id = $sqlval['customer_id'];
@@ -77,5 +78,6 @@
      * @return array()
      */
-    function getAddress($other_deliv_id) {
+    function getAddress($other_deliv_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $address = $objQuery->select('*', 'dtb_other_deliv', 'other_deliv_id = ?', array($other_deliv_id));
@@ -90,5 +92,6 @@
      * @return array
      */
-    function getList($customer_id, $startno = '') {
+    function getList($customer_id, $startno = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->setOrder('other_deliv_id DESC');
@@ -106,5 +109,6 @@
      * @return void
      */
-    function deleteAddress($other_deliv_id) {
+    function deleteAddress($other_deliv_id)
+    {
         $where      = 'other_deliv_id = ?';
         $objQuery   =& SC_Query_Ex::getSingletonInstance();
@@ -118,5 +122,6 @@
      * @return void
      */
-    function setFormParam(&$objFormParam) {
+    function setFormParam(&$objFormParam)
+    {
         SC_Helper_Customer_Ex::sfCustomerCommonParam($objFormParam);
         $objFormParam->addParam('', 'other_deliv_id');
@@ -129,5 +134,6 @@
      * @return void
      */
-    function errorCheck(&$objFormParam) {
+    function errorCheck(&$objFormParam)
+    {
         $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck($objFormParam);
         return $objErr->arrErr;
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_DB.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_DB.php	(revision 22487)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_DB.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id:SC_Helper_DB.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_Helper_DB {
+class SC_Helper_DB 
+{
 
     // {{{ properties
@@ -64,5 +65,6 @@
      *               引数 $add == false でカラムが存在しない場合 false
      */
-    function sfColumnExists($table_name, $col_name, $col_type = '', $dsn = '', $add = false) {
+    function sfColumnExists($table_name, $col_name, $col_type = '', $dsn = '', $add = false)
+    {
         $dbFactory = SC_DB_DBFactory_Ex::getInstance();
         $dsn = $dbFactory->getDSN($dsn);
@@ -102,5 +104,6 @@
      *               $add == false で, データが存在しない場合 false
      */
-    function sfDataExists($table_name, $where, $arrWhereVal, $dsn = '', $sql = '', $add = false) {
+    function sfDataExists($table_name, $where, $arrWhereVal, $dsn = '', $sql = '', $add = false)
+    {
         $dbFactory = SC_DB_DBFactory_Ex::getInstance();
         $dsn = $dbFactory->getDSN($dsn);
@@ -131,5 +134,6 @@
      * @return array 店舗基本情報の配列
      */
-    function sfGetBasisData($force = false, $col = '') {
+    function sfGetBasisData($force = false, $col = '')
+    {
         static $data = array();
 
@@ -158,5 +162,6 @@
      * @return array 店舗基本情報の配列
      */
-    function sfGetBasisDataCache($generate = false){
+    function sfGetBasisDataCache($generate = false)
+    {
         // テーブル名
         $name = 'dtb_baseinfo';
@@ -190,5 +195,6 @@
      * @return bool キャッシュデータファイル生成結果
      */
-    function sfCreateBasisDataCache() {
+    function sfCreateBasisDataCache()
+    {
         // テーブル名
         $name = 'dtb_baseinfo';
@@ -223,5 +229,6 @@
      * @deprecated
      */
-    function sfGetBasisCount() {
+    function sfGetBasisCount()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -234,5 +241,6 @@
      * @return boolean 有無
      */
-    function sfGetBasisExists() {
+    function sfGetBasisExists()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -241,5 +249,6 @@
 
     /* 選択中のアイテムのルートカテゴリIDを取得する */
-    function sfGetRootId() {
+    function sfGetRootId()
+    {
 
         if (!$this->g_root_on) {
@@ -277,5 +286,6 @@
      * @return array オーダー前ポイントの配列
      */
-    function sfGetRollbackPoint($order_id, $use_point, $add_point, $order_status) {
+    function sfGetRollbackPoint($order_id, $use_point, $add_point, $order_status)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrRet = $objQuery->select('customer_id', 'dtb_order', 'order_id = ?', array($order_id));
@@ -309,5 +319,6 @@
      * @return array カテゴリツリーの配列
      */
-    function sfGetCatTree($parent_category_id, $count_check = false) {
+    function sfGetCatTree($parent_category_id, $count_check = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '';
@@ -355,5 +366,6 @@
      * @see sfGetCatTree()
      */
-    function findTree(&$arrTree, $parent, &$result) {
+    function findTree(&$arrTree, $parent, &$result)
+    {
         if ($result[count($result) - 1]['parent_category_id'] === 0) {
             return;
@@ -379,5 +391,6 @@
      * @return array カテゴリツリーの配列
      */
-    function sfGetMultiCatTree($product_id, $count_check = false) {
+    function sfGetMultiCatTree($product_id, $count_check = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '';
@@ -427,5 +440,6 @@
      * @return string 親カテゴリを連結した文字列
      */
-    function sfGetCatCombName($category_id) {
+    function sfGetCatCombName($category_id)
+    {
         // 商品が属するカテゴリIDを縦に取得
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -452,5 +466,6 @@
      * @return array 指定したカテゴリIDのカテゴリ
      */
-    function sfGetCat($category_id) {
+    function sfGetCat($category_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -468,5 +483,6 @@
      * @return array 指定したカテゴリIDの大カテゴリ
      */
-    function sfGetFirstCat($category_id) {
+    function sfGetFirstCat($category_id)
+    {
         // 商品が属するカテゴリIDを縦に取得
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -493,5 +509,6 @@
      * @return array カテゴリツリーの配列
      */
-    function sfGetCategoryList($addwhere = '', $products_check = false, $head = CATEGORY_HEAD) {
+    function sfGetCategoryList($addwhere = '', $products_check = false, $head = CATEGORY_HEAD)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'del_flg = 0';
@@ -532,5 +549,6 @@
      * @return array カテゴリツリーの配列
      */
-    function sfGetLevelCatList($parent_zero = true) {
+    function sfGetLevelCatList($parent_zero = true)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -581,5 +599,6 @@
      *
      */
-    function sfGetCategoryId($product_id, $category_id = 0, $closed = false) {
+    function sfGetCategoryId($product_id, $category_id = 0, $closed = false)
+    {
         if ($closed) {
             $status = '';
@@ -608,5 +627,6 @@
      * @return void
      */
-    function addProductBeforCategories($category_id, $product_id) {
+    function addProductBeforCategories($category_id, $product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -629,5 +649,6 @@
      * @return void
      */
-    function addProductAfterCategories($category_id, $product_id) {
+    function addProductAfterCategories($category_id, $product_id)
+    {
         $sqlval = array('category_id' => $category_id,
                         'product_id' => $product_id);
@@ -661,5 +682,6 @@
      * @return void
      */
-    function removeProductByCategories($category_id, $product_id) {
+    function removeProductByCategories($category_id, $product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->delete('dtb_product_categories',
@@ -674,5 +696,6 @@
      * @return void
      */
-    function updateProductCategories($arrCategory_id, $product_id) {
+    function updateProductCategories($arrCategory_id, $product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -707,5 +730,6 @@
      * @return void
      */
-    function sfCountCategory($objQuery = NULL, $is_force_all_count = false) {
+    function sfCountCategory($objQuery = NULL, $is_force_all_count = false)
+    {
         $objProduct = new SC_Product_Ex();
 
@@ -884,5 +908,6 @@
      * @param array 子ID の配列
      */
-    function sfGetChildsID($table, $pid_name, $id_name, $id) {
+    function sfGetChildsID($table, $pid_name, $id_name, $id)
+    {
         $arrRet = $this->sfGetChildrenArray($table, $pid_name, $id_name, $id);
         return $arrRet;
@@ -898,5 +923,6 @@
      * @return array 子IDの配列
      */
-    function sfGetChildrenArray($table, $pid_name, $id_name, $id) {
+    function sfGetChildrenArray($table, $pid_name, $id_name, $id)
+    {
         $arrChildren = array();
         $arrRet = array($id);
@@ -919,5 +945,6 @@
      * @return array 子IDの配列
      */
-    function sfGetChildrenArraySub($table, $pid_name, $id_name, $arrPID) {
+    function sfGetChildrenArraySub($table, $pid_name, $id_name, $arrPID)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -939,5 +966,6 @@
      * @return array 親IDの配列
      */
-    function sfGetParents($table, $pid_name, $id_name, $id) {
+    function sfGetParents($table, $pid_name, $id_name, $id)
+    {
         $arrRet = SC_Helper_DB_Ex::sfGetParentsArray($table, $pid_name, $id_name, $id);
         return $arrRet;
@@ -953,5 +981,6 @@
      * @return array 親IDの配列
      */
-    function sfGetParentsArray($table, $pid_name, $id_name, $id) {
+    function sfGetParentsArray($table, $pid_name, $id_name, $id)
+    {
         $arrParents = array();
         $ret = $id;
@@ -968,5 +997,6 @@
 
     /* 子ID所属する親IDを取得する */
-    function sfGetParentsArraySub($table, $pid_name, $id_name, $child) {
+    function sfGetParentsArraySub($table, $pid_name, $id_name, $child)
+    {
         if (SC_Utils_Ex::isBlank($child)) {
             return false;
@@ -986,5 +1016,6 @@
      * @return array 商品を検索する場合の配列
      */
-    function sfGetCatWhere($category_id) {
+    function sfGetCatWhere($category_id)
+    {
         // 子カテゴリIDの取得
         $arrRet = SC_Helper_DB_Ex::sfGetChildrenArray('dtb_category', 'parent_category_id', 'category_id', $category_id);
@@ -1005,5 +1036,6 @@
      * @return array SELECT ボックス用リストの配列
      */
-    function sfGetIDValueList($table, $keyname, $valname, $where = '', $arrVal = array()) {
+    function sfGetIDValueList($table, $keyname, $valname, $where = '', $arrVal = array())
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = "$keyname, $valname";
@@ -1030,5 +1062,6 @@
      * @return void
      */
-    function sfRankUp($table, $colname, $id, $andwhere = '') {
+    function sfRankUp($table, $colname, $id, $andwhere = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->begin();
@@ -1081,5 +1114,6 @@
      * @return void
      */
-    function sfRankDown($table, $colname, $id, $andwhere = '') {
+    function sfRankDown($table, $colname, $id, $andwhere = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->begin();
@@ -1132,5 +1166,6 @@
      * @return void
      */
-    function sfMoveRank($tableName, $keyIdColumn, $keyId, $pos, $where = '') {
+    function sfMoveRank($tableName, $keyIdColumn, $keyId, $pos, $where = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->begin();
@@ -1259,5 +1294,6 @@
      * @return array 特定のカラムの配列
      */
-    function sfGetParentsCol($objQuery, $table, $id_name, $col_name, $arrId) {
+    function sfGetParentsCol($objQuery, $table, $id_name, $col_name, $arrId)
+    {
         $col = $col_name;
         $len = count($arrId);
@@ -1291,5 +1327,6 @@
      * @return void
      */
-    function sfMoveCatRank($objQuery, $table, $id_name, $cat_name, $old_catid, $new_catid, $id) {
+    function sfMoveCatRank($objQuery, $table, $id_name, $cat_name, $old_catid, $new_catid, $id)
+    {
         if ($old_catid == $new_catid) {
             return;
@@ -1330,5 +1367,6 @@
      * @return bool レコードが存在する場合 true
      */
-    function sfIsRecord($table, $col, $arrVal, $addwhere = '') {
+    function sfIsRecord($table, $col, $arrVal, $addwhere = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrCol = preg_split('/[, ]/', $col);
@@ -1363,5 +1401,6 @@
      * @return void
      */
-    function sfCountMaker($objQuery) {
+    function sfCountMaker($objQuery)
+    {
         $sql = '';
 
@@ -1387,5 +1426,6 @@
      *
      */
-    function sfGetMakerId($product_id, $maker_id = 0, $closed = false) {
+    function sfGetMakerId($product_id, $maker_id = 0, $closed = false)
+    {
         if ($closed) {
             $status = '';
@@ -1421,5 +1461,6 @@
      * @return array カテゴリツリーの配列
      */
-    function sfGetMakerList($addwhere = '', $products_check = false) {
+    function sfGetMakerList($addwhere = '', $products_check = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'del_flg = 0';
@@ -1458,5 +1499,6 @@
      * @return integer 税金額
      */
-    function sfTax($price) {
+    function sfTax($price)
+    {
         // 店舗基本情報を取得
         $CONF = SC_Helper_DB_Ex::sfGetBasisData();
@@ -1472,5 +1514,6 @@
      * @return integer 税金付与した金額
      */
-    function sfCalcIncTax($price, $tax = null, $tax_rule = null) {
+    function sfCalcIncTax($price, $tax = null, $tax_rule = null)
+    {
         // 店舗基本情報を取得
         $CONF = SC_Helper_DB_Ex::sfGetBasisData();
@@ -1488,5 +1531,6 @@
      * @return integer 加算ポイント
      */
-    function sfGetAddPoint($totalpoint, $use_point) {
+    function sfGetAddPoint($totalpoint, $use_point)
+    {
         // 店舗基本情報を取得
         $CONF = SC_Helper_DB_Ex::sfGetBasisData();
@@ -1503,5 +1547,6 @@
      * @return void
      */
-    function sfExecSqlByFile($sqlFilePath) {
+    function sfExecSqlByFile($sqlFilePath)
+    {
         if (file_exists($sqlFilePath)) {
             $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -1524,5 +1569,6 @@
      * @return bool 商品規格が存在する場合:true, それ以外:false
      */
-    function sfHasProductClass($product_id) {
+    function sfHasProductClass($product_id)
+    {
         if (!SC_Utils_Ex::sfIsInt($product_id)) return false;
 
@@ -1540,5 +1586,6 @@
      * @return void
      */
-    static function registerBasisData($arrData) {
+    static function registerBasisData($arrData)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/SC_Query.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Query.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Query.php	(revision 22567)
@@ -30,5 +30,6 @@
  * @version $Id$
  */
-class SC_Query {
+class SC_Query 
+{
 
     var $option = '';
@@ -49,5 +50,6 @@
      * @param boolean $new 新規に接続を行うかどうか
      */
-    function __construct($dsn = '', $force_run = false, $new = false) {
+    function __construct($dsn = '', $force_run = false, $new = false)
+    {
 
         if ($dsn == '') {
@@ -99,5 +101,6 @@
      * @return SC_Query シングルトンの SC_Query インスタンス
      */
-    static function getSingletonInstance($dsn = '', $force_run = false, $new = false) {
+    static function getSingletonInstance($dsn = '', $force_run = false, $new = false)
+    {
         $objThis = SC_Query_Ex::getPoolInstance($dsn);
         if (is_null($objThis)) {
@@ -119,5 +122,6 @@
      * @return boolean
      */
-    function isError() {
+    function isError()
+    {
         if (PEAR::isError($this->conn)) {
             return true;
@@ -134,5 +138,6 @@
      * @return integer 件数
      */
-    function count($table, $where = '', $arrWhereVal = array()) {
+    function count($table, $where = '', $arrWhereVal = array())
+    {
         return $this->get('COUNT(*)', $table, $where, $arrWhereVal);
     }
@@ -146,5 +151,6 @@
      * @return boolean 有無
      */
-    function exists($table, $where = '', $arrWhereVal = array()) {
+    function exists($table, $where = '', $arrWhereVal = array())
+    {
         $sql_inner = $this->getSql('*', $table, $where, $arrWhereVal);
         $sql = "SELECT CASE WHEN EXISTS($sql_inner) THEN 1 ELSE 0 END";
@@ -163,5 +169,6 @@
      * @return array|null
      */
-    function select($cols, $from = '', $where = '', $arrWhereVal = array(), $fetchmode = MDB2_FETCHMODE_ASSOC) {
+    function select($cols, $from = '', $where = '', $arrWhereVal = array(), $fetchmode = MDB2_FETCHMODE_ASSOC)
+    {
         $sqlse = $this->getSql($cols, $from, $where, $arrWhereVal);
         return $this->getAll($sqlse, $arrWhereVal, $fetchmode);
@@ -174,5 +181,6 @@
      * @return string SQL文
      */
-    function getLastQuery($disp = true) {
+    function getLastQuery($disp = true)
+    {
         $sql = $this->conn->last_query;
         if ($disp) {
@@ -188,5 +196,6 @@
      *         失敗した場合は PEAR::Error オブジェクト
      */
-    function commit() {
+    function commit()
+    {
         return $this->conn->commit();
     }
@@ -198,5 +207,6 @@
      *         失敗した場合は PEAR::Error オブジェクト
      */
-    function begin() {
+    function begin()
+    {
         return $this->conn->beginTransaction();
     }
@@ -208,5 +218,6 @@
      *         失敗した場合は PEAR::Error オブジェクト
      */
-    function rollback() {
+    function rollback()
+    {
         return $this->conn->rollback();
     }
@@ -217,5 +228,6 @@
      * @return boolean トランザクションが開始されている場合 true
      */
-    function inTransaction() {
+    function inTransaction()
+    {
         return $this->conn->inTransaction();
     }
@@ -228,5 +240,6 @@
      * FIXME MDB2::exec() の実装であるべき
      */
-    function exec($str, $arrVal = array()) {
+    function exec($str, $arrVal = array())
+    {
         return $this->query($str, $arrVal);
     }
@@ -241,5 +254,6 @@
      * @return boolean 結果
      */
-    function doCallbackAll($cbFunc, $sql, $arrVal = array(), $fetchmode = MDB2_FETCHMODE_ASSOC) {
+    function doCallbackAll($cbFunc, $sql, $arrVal = array(), $fetchmode = MDB2_FETCHMODE_ASSOC)
+    {
 
         $sql = $this->dbFactory->sfChangeMySQL($sql);
@@ -273,5 +287,6 @@
      * @return array データを含む2次元配列。失敗した場合に 0 または DB_Error オブジェクトを返します。
      */
-    function getAll($sql, $arrVal = array(), $fetchmode = MDB2_FETCHMODE_ASSOC) {
+    function getAll($sql, $arrVal = array(), $fetchmode = MDB2_FETCHMODE_ASSOC)
+    {
 
         $sql = $this->dbFactory->sfChangeMySQL($sql);
@@ -306,5 +321,6 @@
      * @return string 構築済みの SELECT 文
      */
-    function getSql($cols, $from = '', $where = '', &$arrWhereVal = null) {
+    function getSql($cols, $from = '', $where = '', &$arrWhereVal = null)
+    {
         $dbFactory = SC_DB_DBFactory_Ex::getInstance();
 
@@ -342,5 +358,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function setOption($str) {
+    function setOption($str)
+    {
         $this->option = $str;
         return $this;
@@ -356,5 +373,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function setLimitOffset($limit, $offset = 0) {
+    function setLimitOffset($limit, $offset = 0)
+    {
         if (is_numeric($limit) && is_numeric($offset)) {
             $this->conn->setLimit($limit, $offset);
@@ -371,5 +389,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function setGroupBy($str) {
+    function setGroupBy($str)
+    {
         if (strlen($str) == 0) {
             $this->groupby = '';
@@ -388,5 +407,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function andWhere($str) {
+    function andWhere($str)
+    {
         if ($this->where != '') {
             $this->where .= ' AND ' . $str;
@@ -405,5 +425,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function orWhere($str) {
+    function orWhere($str)
+    {
         if ($this->where != '') {
             $this->where .= ' OR ' . $str;
@@ -423,5 +444,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function setWhere($where = '', $arrWhereVal = array()) {
+    function setWhere($where = '', $arrWhereVal = array())
+    {
         $this->where = $where;
         $this->arrWhereVal = $arrWhereVal;
@@ -437,5 +459,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function setOrder($str) {
+    function setOrder($str)
+    {
         if (strlen($str) == 0) {
             $this->order = '';
@@ -454,5 +477,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function setLimit($limit) {
+    function setLimit($limit)
+    {
         if (is_numeric($limit)) {
             $this->conn->setLimit($limit);
@@ -469,5 +493,6 @@
      * @return SC_Query 自分自身のインスタンス
      */
-    function setOffset($offset) {
+    function setOffset($offset)
+    {
         if (is_numeric($offset)) {
             $this->conn->setLimit($this->conn->limit, $offset);
@@ -487,5 +512,6 @@
      * @return integer|DB_Error|boolean 挿入件数またはエラー(DB_Error, false)
      */
-    function insert($table, $arrVal, $arrSql = array(), $arrSqlVal = array(), $from = '', $arrFromVal = array()) {
+    function insert($table, $arrVal, $arrSql = array(), $arrSqlVal = array(), $from = '', $arrFromVal = array())
+    {
         $strcol = '';
         $strval = '';
@@ -544,5 +570,6 @@
      * @return
      */
-    function update($table, $arrVal, $where = '', $arrWhereVal = array(), $arrRawSql = array(), $arrRawSqlVal = array()) {
+    function update($table, $arrVal, $where = '', $arrWhereVal = array(), $arrRawSql = array(), $arrRawSqlVal = array())
+    {
         $arrCol = array();
         $arrValForQuery = array();
@@ -599,5 +626,6 @@
      * @return integer MAX文の実行結果
      */
-    function max($col, $table, $where = '', $arrWhereVal = array()) {
+    function max($col, $table, $where = '', $arrWhereVal = array())
+    {
         $ret = $this->get("MAX($col)", $table, $where, $arrWhereVal);
         return $ret;
@@ -613,5 +641,6 @@
      * @return integer MIN文の実行結果
      */
-    function min($col, $table, $where = '', $arrWhereVal = array()) {
+    function min($col, $table, $where = '', $arrWhereVal = array())
+    {
         $ret = $this->get("MIN($col)", $table, $where, $arrWhereVal);
         return $ret;
@@ -627,5 +656,6 @@
      * @return mixed SQL の実行結果
      */
-    function get($col, $table = '', $where = '', $arrWhereVal = array()) {
+    function get($col, $table = '', $where = '', $arrWhereVal = array())
+    {
         $sqlse = $this->getSql($col, $table, $where, $arrWhereVal);
         // SQL文の実行
@@ -641,5 +671,6 @@
      * @return mixed SQL の実行結果
      */
-    function getOne($sql, $arrVal = array()) {
+    function getOne($sql, $arrVal = array())
+    {
 
         $sql = $this->dbFactory->sfChangeMySQL($sql);
@@ -674,5 +705,6 @@
      * @return array array('カラム名' => '値', ...)の連想配列
      */
-    function getRow($col, $table = '', $where = '', $arrWhereVal = array(), $fetchmode = MDB2_FETCHMODE_ASSOC) {
+    function getRow($col, $table = '', $where = '', $arrWhereVal = array(), $fetchmode = MDB2_FETCHMODE_ASSOC)
+    {
 
         $sql = $this->getSql($col, $table, $where, $arrWhereVal);
@@ -707,5 +739,6 @@
      * @return array SQL の実行結果の配列
      */
-    function getCol($col, $table = '', $where = '', $arrWhereVal = array()) {
+    function getCol($col, $table = '', $where = '', $arrWhereVal = array())
+    {
         $sql = $this->getSql($col, $table, $where, $arrWhereVal);
         $sql = $this->dbFactory->sfChangeMySQL($sql);
@@ -738,5 +771,6 @@
      * @return
      */
-    function delete($table, $where = '', $arrWhereVal = array()) {
+    function delete($table, $where = '', $arrWhereVal = array())
+    {
         if (strlen($where) <= 0) {
             $sqlde = "DELETE FROM $table";
@@ -754,5 +788,6 @@
      * @param integer 次のシーケンス値
      */
-    function nextVal($seq_name) {
+    function nextVal($seq_name)
+    {
         return $this->conn->nextID($seq_name);
     }
@@ -764,5 +799,6 @@
      * @return integer 現在のシーケンス値
      */
-    function currVal($seq_name) {
+    function currVal($seq_name)
+    {
         return $this->conn->currID($seq_name);
     }
@@ -775,5 +811,6 @@
      * @return MDB2_OK
      */
-    function setVal($seq_name, $start) {
+    function setVal($seq_name, $start)
+    {
         $objManager =& $this->conn->loadModule('Manager');
 
@@ -803,5 +840,6 @@
      * @return array SQL の実行結果の配列
      */
-    function query($n ,$arr = array(), $ignore_err = false, $types = null, $result_types = MDB2_PREPARE_RESULT) {
+    function query($n ,$arr = array(), $ignore_err = false, $types = null, $result_types = MDB2_PREPARE_RESULT)
+    {
 
         $n = $this->dbFactory->sfChangeMySQL($n);
@@ -828,5 +866,6 @@
      * @return array シーケンス名の配列
      */
-    function listSequences() {
+    function listSequences()
+    {
         $objManager =& $this->conn->loadModule('Manager');
         return $objManager->listSequences();
@@ -838,5 +877,6 @@
      * @return array テーブル名の配列
      */
-    function listTables() {
+    function listTables()
+    {
         return $this->dbFactory->listTables($this);
     }
@@ -848,5 +888,6 @@
      * @return array 指定のテーブルのカラム名の配列
      */
-    function listTableFields($table) {
+    function listTableFields($table)
+    {
         $objManager =& $this->conn->loadModule('Manager');
         return $objManager->listTableFields($table);
@@ -859,5 +900,6 @@
      * @return array 指定のテーブルのインデックス一覧
      */
-    function listTableIndexes($table) {
+    function listTableIndexes($table)
+    {
         $objManager =& $this->conn->loadModule('Manager');
         return $objManager->listTableIndexes($table);
@@ -872,5 +914,6 @@
      *               MySQLのtext型フィールドを指定する場合は $definition['length'] = 'text_field(NNN)' が必要
      */
-    function createIndex($table, $name, $definition) {
+    function createIndex($table, $name, $definition)
+    {
         $definition = $this->dbFactory->sfGetCreateIndexDefinition($table, $name, $definition);
         $objManager =& $this->conn->loadModule('Manager');
@@ -884,5 +927,6 @@
      * @param string $name インデックス名
      */
-    function dropIndex($table, $name) {
+    function dropIndex($table, $name)
+    {
         $objManager =& $this->conn->loadModule('Manager');
         return $objManager->dropIndex($table, $name);
@@ -895,5 +939,6 @@
      * @return array テーブル情報の配列
      */
-    function getTableInfo($table) {
+    function getTableInfo($table)
+    {
         $objManager =& $this->conn->loadModule('Reverse');
         return $objManager->tableInfo($table, NULL);
@@ -911,5 +956,6 @@
      * @return string クォートされた文字列
      */
-    function quote($val) {
+    function quote($val)
+    {
         return $this->conn->quote($val);
     }
@@ -922,5 +968,6 @@
      * @return array テーブルに存在する列のみ抽出した連想配列
      */
-    function extractOnlyColsOf($table, $arrParams) {
+    function extractOnlyColsOf($table, $arrParams)
+    {
         $arrCols = $this->listTableFields($table);
         $arrResults = array();
@@ -942,5 +989,6 @@
      * @return MDB2_Statement_Common プリペアドステートメントインスタンス
      */
-    function prepare($sql, $types = null, $result_types = MDB2_PREPARE_RESULT) {
+    function prepare($sql, $types = null, $result_types = MDB2_PREPARE_RESULT)
+    {
         $sth =& $this->conn->prepare($sql, $types, $result_types);
         if (PEAR::isError($sth)) {
@@ -959,5 +1007,6 @@
      * @return MDB2_Result 結果セットのインスタンス
      */
-    function execute(&$sth, $arrVal = array()) {
+    function execute(&$sth, $arrVal = array())
+    {
 
         $arrStartInfo =& $this->lfStartDbTraceLog($sth, $arrVal);
@@ -985,5 +1034,6 @@
      * @return string トレースしたエラー文字列
      */
-    function traceError($error, $sql = '', $arrVal = false) {
+    function traceError($error, $sql = '', $arrVal = false)
+    {
         $err = "SQL: [$sql]\n";
         if ($arrVal !== false) {
@@ -1002,5 +1052,6 @@
      * エラー処理
      */
-    function error($msg) {
+    function error($msg)
+    {
         $msg = "DB処理でエラーが発生しました。\n" . $msg;
         if (!$this->force_run) {
@@ -1021,5 +1072,6 @@
      * @return array 実行結果の配列
      */
-    function getQueryDefsFields($n ,$arr = array(), $ignore_err = false, $types = null, $result_types = MDB2_PREPARE_RESULT) {
+    function getQueryDefsFields($n ,$arr = array(), $ignore_err = false, $types = null, $result_types = MDB2_PREPARE_RESULT)
+    {
 
         $n = $this->dbFactory->sfChangeMySQL($n);
@@ -1048,5 +1100,6 @@
      * @return void
      */
-    private function lfStartDbTraceLog(&$objSth, &$arrVal) {
+    private function lfStartDbTraceLog(&$objSth, &$arrVal)
+    {
         if (!defined('SQL_QUERY_LOG_MODE') || SQL_QUERY_LOG_MODE === 0) {
             return;
@@ -1083,5 +1136,6 @@
      * @return void
      */
-    private function lfEndDbTraceLog(&$arrStartInfo, &$objSth, &$arrVal) {
+    private function lfEndDbTraceLog(&$arrStartInfo, &$objSth, &$arrVal)
+    {
         if (!defined('SQL_QUERY_LOG_MODE') || SQL_QUERY_LOG_MODE === 0) {
             return;
@@ -1114,5 +1168,6 @@
      * @return SC_Query プールしたインスタンス
      */
-    static function setPoolInstance(&$objThis, $dsn = '') {
+    static function setPoolInstance(&$objThis, $dsn = '')
+    {
         $key_str = serialize($dsn);
         return SC_Query_Ex::$arrPoolInstance[$key_str] = $objThis;
@@ -1125,5 +1180,6 @@
      * @return SC_Query|null
      */
-    static function getPoolInstance($dsn = '') {
+    static function getPoolInstance($dsn = '')
+    {
         $key_str = serialize($dsn);
         if (isset(SC_Query_Ex::$arrPoolInstance[$key_str])) {
Index: branches/version-2_12-dev/data/class/SC_SmartphoneView.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SmartphoneView.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_SmartphoneView.php	(revision 22567)
@@ -22,10 +22,13 @@
  */
 
-class SC_SmartphoneView extends SC_SiteView_Ex {
-    function __construct($setPrevURL = true) {
+class SC_SmartphoneView extends SC_SiteView_Ex 
+{
+    function __construct($setPrevURL = true)
+    {
         parent::__construct($setPrevURL);
     }
 
-    function init() {
+    function init()
+    {
         parent::init();
 
Index: branches/version-2_12-dev/data/class/SC_Product.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Product.php	(revision 22507)
+++ branches/version-2_12-dev/data/class/SC_Product.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id$
  */
-class SC_Product {
+class SC_Product 
+{
 
     /** 規格名一覧 */
@@ -60,5 +61,6 @@
      * @return void
      */
-    function setProductsOrder($col, $table = 'dtb_products', $order = 'ASC') {
+    function setProductsOrder($col, $table = 'dtb_products', $order = 'ASC')
+    {
         $this->arrOrderData = array('col' => $col, 'table' => $table, 'order' => $order);
     }
@@ -73,5 +75,6 @@
      * @return array 商品IDの配列
      */
-    function findProductIdsOrder(&$objQuery, $arrVal = array()) {
+    function findProductIdsOrder(&$objQuery, $arrVal = array())
+    {
         $table = 'dtb_products AS alldtl';
 
@@ -107,5 +110,6 @@
      * @return array 対象商品ID数
      */
-    function findProductCount(&$objQuery, $arrVal = array()) {
+    function findProductCount(&$objQuery, $arrVal = array())
+    {
         $table = 'dtb_products AS alldtl';
 
@@ -123,5 +127,6 @@
      * @return array 商品一覧の配列
      */
-    function lists(&$objQuery) {
+    function lists(&$objQuery)
+    {
         $col = <<< __EOS__
              product_id
@@ -165,5 +170,6 @@
      * @return array 商品一覧の配列 (キー: 商品ID)
      */
-    function getListByProductIds(&$objQuery, $arrProductId = array()) {
+    function getListByProductIds(&$objQuery, $arrProductId = array())
+    {
         if (empty($arrProductId)) {
             return array();
@@ -206,5 +212,6 @@
      * @return array 商品詳細情報の配列
      */
-    function getDetail($productId) {
+    function getDetail($productId)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrProduct = $objQuery->getRow('*', $this->alldtlSQL('product_id = ?'),
@@ -225,5 +232,6 @@
      * @return array 商品詳細情報と商品規格の配列
      */
-    function getDetailAndProductsClass($productClassId) {
+    function getDetailAndProductsClass($productClassId)
+    {
         $result = $this->getProductsClass($productClassId);
         $result = array_merge($result, $this->getDetail($result['product_id']));
@@ -242,5 +250,6 @@
      * @return void
      */
-    function setProductsClassByProductIds($arrProductId, $has_deleted = false) {
+    function setProductsClassByProductIds($arrProductId, $has_deleted = false)
+    {
 
         foreach ($arrProductId as $productId) {
@@ -344,5 +353,6 @@
      * @return array 商品規格の配列
      */
-    function getProductsClassByQuery(&$objQuery, $params) {
+    function getProductsClassByQuery(&$objQuery, $params)
+    {
         // 末端の規格を取得
         $col = <<< __EOS__
@@ -397,5 +407,6 @@
      * @return array 商品規格の配列
      */
-    function getProductsClass($productClassId) {
+    function getProductsClass($productClassId)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->setWhere('product_class_id = ? AND T1.del_flg = 0');
@@ -412,5 +423,6 @@
      * @return array 商品規格の配列
      */
-    function getProductsClassByProductIds($productIds = array(), $has_deleted = false) {
+    function getProductsClassByProductIds($productIds = array(), $has_deleted = false)
+    {
         if (empty($productIds)) {
             return array();
@@ -433,5 +445,6 @@
      * @return array すべての組み合わせの商品規格の配列
      */
-    function getProductsClassFullByProductId($productId, $has_deleted = false) {
+    function getProductsClassFullByProductId($productId, $has_deleted = false)
+    {
         $arrRet = $this->getProductsClassByProductIds(array($productId), $has_deleted);
 
@@ -445,5 +458,6 @@
      * @return array 商品IDをキーにした商品ステータスIDの配列
      */
-    function getProductStatus($productIds) {
+    function getProductStatus($productIds)
+    {
         if (empty($productIds)) {
             return array();
@@ -470,5 +484,6 @@
      * @param array $productStatusIds ON にする商品ステータスIDの配列
      */
-    function setProductStatus($productId, $productStatusIds) {
+    function setProductStatus($productId, $productStatusIds)
+    {
 
         $val['product_id'] = $productId;
@@ -496,5 +511,6 @@
      * @see getDetailAndProductsClass()
      */
-    function getBuyLimit($p) {
+    function getBuyLimit($p)
+    {
         $limit = null;
         if ($p['stock_unlimited'] != '1' && is_numeric($p['sale_limit'])) {
@@ -521,5 +537,6 @@
      * @return boolean 在庫の減少に成功した場合 true; 失敗した場合 false
      */
-    function reduceStock($productClassId, $quantity) {
+    function reduceStock($productClassId, $quantity)
+    {
 
         if ($quantity == 0) {
@@ -549,5 +566,6 @@
      * @return array 旧バージョン互換用のデータ
      */
-    static function setPriceTaxTo(&$arrProducts) {
+    static function setPriceTaxTo(&$arrProducts)
+    {
         foreach ($arrProducts as &$arrProduct) {
             $arrProduct['price01_min_format'] = number_format($arrProduct['price01_min']);
@@ -583,5 +601,6 @@
      * @return void
      */
-    static function setIncTaxToProducts(&$arrProducts) {
+    static function setIncTaxToProducts(&$arrProducts)
+    {
         foreach ($arrProducts as &$arrProduct) {
             SC_Product_Ex::setIncTaxToProduct($arrProduct);
@@ -595,5 +614,6 @@
      * @return void
      */
-    static function setIncTaxToProduct(&$arrProduct) {
+    static function setIncTaxToProduct(&$arrProduct)
+    {
         $arrProduct['price01_min_inctax'] = isset($arrProduct['price01_min']) ? SC_Helper_DB_Ex::sfCalcIncTax($arrProduct['price01_min']) : null;
         $arrProduct['price01_max_inctax'] = isset($arrProduct['price01_max']) ? SC_Helper_DB_Ex::sfCalcIncTax($arrProduct['price01_max']) : null;
@@ -608,5 +628,6 @@
      * @return string 商品詳細の SQL
      */
-    function alldtlSQL($where_products_class = '') {
+    function alldtlSQL($where_products_class = '')
+    {
         if (!SC_Utils_Ex::isBlank($where_products_class)) {
             $where_products_class = 'AND (' . $where_products_class . ')';
@@ -715,5 +736,6 @@
      * @return string 商品規格詳細の SQL
      */
-    function prdclsSQL($where = '') {
+    function prdclsSQL($where = '')
+    {
         $where_clause = '';
         if (!SC_Utils_Ex::isBlank($where)) {
Index: branches/version-2_12-dev/data/class/SC_Session.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Session.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Session.php	(revision 22567)
@@ -23,5 +23,6 @@
 
 /* セッション管理クラス */
-class SC_Session {
+class SC_Session 
+{
 
     /** ログインユーザ名 */
@@ -44,5 +45,6 @@
 
     /* コンストラクタ */
-    function __construct() {
+    function __construct()
+    {
         // セッション情報の保存
         if (isset($_SESSION['cert'])) {
@@ -65,5 +67,6 @@
     }
     /* 認証成功の判定 */
-    function IsSuccess() {
+    function IsSuccess()
+    {
         if ($this->cert == CERT_STRING) {
             $masterData = new SC_DB_MasterData_Ex();
@@ -83,20 +86,24 @@
 
     /* セッションの書き込み */
-    function SetSession($key, $val) {
+    function SetSession($key, $val)
+    {
         $_SESSION[$key] = $val;
     }
 
     /* セッションの読み込み */
-    function GetSession($key) {
+    function GetSession($key)
+    {
         return $_SESSION[$key];
     }
 
     /* セッションIDの取得 */
-    function GetSID() {
+    function GetSID()
+    {
         return $this->sid;
     }
 
     /** ユニークIDの取得 **/
-    function getUniqId() {
+    function getUniqId()
+    {
         // ユニークIDがセットされていない場合はセットする。
         if (empty($_SESSION['uniqid'])) {
@@ -107,5 +114,6 @@
 
     /** ユニークIDのセット **/
-    function setUniqId() {
+    function setUniqId()
+    {
         // 予測されないようにランダム文字列を付与する。
         $this->SetSession('uniqid', SC_Utils_Ex::sfGetUniqRandomId());
@@ -113,5 +121,6 @@
 
     // 関連セッションのみ破棄する。
-    function logout() {
+    function logout()
+    {
         unset($_SESSION['cert']);
         unset($_SESSION['login_id']);
Index: branches/version-2_12-dev/data/class/SC_AdminView.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_AdminView.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_AdminView.php	(revision 22567)
@@ -22,10 +22,13 @@
  */
 
-class SC_AdminView extends SC_View_Ex {
-    function __construct() {
+class SC_AdminView extends SC_View_Ex
+{
+    function __construct()
+    {
         parent::__construct();
     }
 
-    function init() {
+    function init()
+    {
         parent::init();
 
Index: branches/version-2_12-dev/data/class/SC_UploadFile.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_UploadFile.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_UploadFile.php	(revision 22567)
@@ -23,5 +23,6 @@
 
 /* アップロードファイル管理クラス */
-class SC_UploadFile {
+class SC_UploadFile 
+{
     var $temp_dir;
     var $save_dir;
@@ -58,5 +59,6 @@
 
     // ファイル管理クラス
-    function __construct($temp_dir, $save_dir) {
+    function __construct($temp_dir, $save_dir)
+    {
         $this->temp_dir = rtrim($temp_dir, '/') . '/';
         $this->save_dir = rtrim($save_dir, '/') . '/';
@@ -65,5 +67,6 @@
 
     // ファイル情報追加
-    function addFile($disp_name, $keyname, $arrExt, $size, $necessary=false, $width=0, $height=0, $image=true) {
+    function addFile($disp_name, $keyname, $arrExt, $size, $necessary=false, $width=0, $height=0, $image=true)
+    {
         $this->disp_name[] = $disp_name;
         $this->keyname[] = $keyname;
@@ -76,5 +79,6 @@
     }
     // サムネイル画像の作成
-    function makeThumb($src_file, $width, $height, $dst_file) {
+    function makeThumb($src_file, $width, $height, $dst_file)
+    {
         $objThumb = new gdthumb();
         $ret = $objThumb->Main($src_file, $width, $height, $dst_file);
@@ -90,5 +94,6 @@
 
     // アップロードされたファイルを保存する。
-    function makeTempFile($keyname, $rename = IMAGE_RENAME) {
+    function makeTempFile($keyname, $rename = IMAGE_RENAME)
+    {
         $objErr = new SC_CheckError_Ex();
         $cnt = 0;
@@ -137,5 +142,6 @@
 
     // アップロードされたダウンロードファイルを保存する。
-    function makeTempDownFile($keyname='down_file') {
+    function makeTempDownFile($keyname='down_file')
+    {
         $objErr = new SC_CheckError_Ex();
         $cnt = 0;
@@ -168,5 +174,6 @@
 
     // 画像を削除する。
-    function deleteFile($keyname) {
+    function deleteFile($keyname)
+    {
         $objImage = new SC_Image_Ex($this->temp_dir);
         $cnt = 0;
@@ -185,5 +192,6 @@
 
     // 画像を削除する。
-    function deleteKikakuFile($keyname) {
+    function deleteKikakuFile($keyname)
+    {
         $objImage = new SC_Image_Ex($this->temp_dir);
         $cnt = 0;
@@ -202,5 +210,6 @@
 
     // 一時ファイルパスを取得する。
-    function getTempFilePath($keyname) {
+    function getTempFilePath($keyname)
+    {
         $cnt = 0;
         $filepath = '';
@@ -217,5 +226,6 @@
 
     // 一時ファイルを保存ディレクトリに移す
-    function moveTempFile() {
+    function moveTempFile()
+    {
         $objImage = new SC_Image_Ex($this->temp_dir);
 
@@ -238,5 +248,6 @@
 
     // ダウンロード一時ファイルを保存ディレクトリに移す
-    function moveTempDownFile() {
+    function moveTempDownFile()
+    {
         $objImage = new SC_Image_Ex($this->temp_dir);
         for ($cnt = 0; $cnt < count($this->keyname); $cnt++) {
@@ -255,5 +266,6 @@
 
     // HIDDEN用のファイル名配列を返す
-    function getHiddenFileList() {
+    function getHiddenFileList()
+    {
         $cnt = 0;
         $arrRet = array();
@@ -271,5 +283,6 @@
 
     // HIDDENで送られてきたファイル名を取得する
-    function setHiddenFileList($arrPOST) {
+    function setHiddenFileList($arrPOST)
+    {
         $cnt = 0;
         foreach ($this->keyname as $val) {
@@ -286,5 +299,6 @@
     }
 
-    function setHiddenKikakuFileList($arrPOST) {
+    function setHiddenKikakuFileList($arrPOST)
+    {
         $cnt = 0;
         foreach ($this->keyname as $val) {
@@ -302,5 +316,6 @@
 
     // フォームに渡す用のファイル情報配列を返す
-    function getFormFileList($temp_url, $save_url, $real_size = false) {
+    function getFormFileList($temp_url, $save_url, $real_size = false)
+    {
         $arrRet = array();
         $cnt = 0;
@@ -341,5 +356,6 @@
 
     // フォームに渡す用のダウンロードファイル情報を返す
-    function getFormDownFile() {
+    function getFormDownFile()
+    {
         $arrRet = '';
         for ($cnt = 0; $cnt < count($this->keyname); $cnt++) {
@@ -352,5 +368,6 @@
         return $arrRet;
     }
-    function getFormKikakuDownFile() {
+    function getFormKikakuDownFile()
+    {
         $arrRet = array();
         $cnt = 0;
@@ -367,5 +384,6 @@
 
     // DB保存用のファイル名配列を返す
-    function getDBFileList() {
+    function getDBFileList()
+    {
         $cnt = 0;
         $dbFileList = array();
@@ -382,5 +400,6 @@
 
     // DBで保存されたファイル名配列をセットする
-    function setDBFileList($arrVal) {
+    function setDBFileList($arrVal)
+    {
         $cnt = 0;
         foreach ($this->keyname as $val) {
@@ -393,5 +412,6 @@
 
     // DBで保存されたダウンロードファイル名をセットする
-    function setDBDownFile($arrVal) {
+    function setDBDownFile($arrVal)
+    {
         if (isset($arrVal['down_realfilename']) && $arrVal['down_realfilename'] != '') {
             $this->save_file[0] = $arrVal['down_realfilename'];
@@ -400,5 +420,6 @@
 
     // DBで保存されたダウンロードファイル名をセットする(setDBDownFileと統合予定)
-    function setPostFileList($arrPost) {
+    function setPostFileList($arrPost)
+    {
         for ($cnt = 0;$cnt < count($this->keyname); $cnt++) {
             if (isset($arrPost['temp_down_realfilename:' . ($cnt+1)])) {
@@ -409,5 +430,6 @@
 
     // 画像をセットする
-    function setDBImageList($arrVal) {
+    function setDBImageList($arrVal)
+    {
         $cnt = 0;
         foreach ($this->keyname as $val) {
@@ -420,5 +442,6 @@
 
     // DB上のファイルの内削除要求があったファイルを削除する。
-    function deleteDBFile($arrVal) {
+    function deleteDBFile($arrVal)
+    {
         $objImage = new SC_Image_Ex($this->temp_dir);
         $cnt = 0;
@@ -434,5 +457,6 @@
 
     // DB上のダウンロードファイルの内削除要求があったファイルを削除する。
-    function deleteDBDownFile($arrVal) {
+    function deleteDBDownFile($arrVal)
+    {
         $objImage = new SC_Image_Ex($this->temp_dir);
         $cnt = 0;
@@ -445,5 +469,6 @@
 
     // 必須判定
-    function checkExists($keyname = '') {
+    function checkExists($keyname = '')
+    {
         $cnt = 0;
         $arrRet = array();
@@ -467,5 +492,6 @@
 
     // 拡大率を指定して画像保存
-    function saveResizeImage($keyname, $to_w, $to_h) {
+    function saveResizeImage($keyname, $to_w, $to_h)
+    {
         $path = '';
 
@@ -488,5 +514,6 @@
      * @return string
      */
-    function lfGetTmpImageName($rename, $keyname = '', $uploadfile = '') {
+    function lfGetTmpImageName($rename, $keyname = '', $uploadfile = '')
+    {
 
         if ($rename === true) {
Index: branches/version-2_12-dev/data/class/SC_FormParam.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_FormParam.php	(revision 22472)
+++ branches/version-2_12-dev/data/class/SC_FormParam.php	(revision 22567)
@@ -30,5 +30,6 @@
  * @author LOCKON CO.,LTD.
  */
-class SC_FormParam {
+class SC_FormParam 
+{
 
     /**
@@ -62,5 +63,6 @@
      * コンストラクタ
      */
-    function __construct() {
+    function __construct()
+    {
         $this->check_dir = IMAGE_SAVE_REALDIR;
 
@@ -82,5 +84,6 @@
      * @deprecated 2.12.0 #1702
      */
-    function initParam() {
+    function initParam()
+    {
         $this->disp_name = array();
         $this->keyname = array();
@@ -93,5 +96,6 @@
 
     // パラメーターの追加
-    function addParam($disp_name, $keyname, $length = '', $convert = '', $arrCheck = array(), $default = '', $input_db = true) {
+    function addParam($disp_name, $keyname, $length = '', $convert = '', $arrCheck = array(), $default = '', $input_db = true)
+    {
         $this->disp_name[] = $disp_name;
         $this->keyname[] = $keyname;
@@ -107,5 +111,6 @@
     // $arrVal  :$arrVal['keyname']・・の配列を一致したキーのインスタンスに格納する
     // $seq     :trueの場合、$arrVal[0]~の配列を登録順にインスタンスに格納する
-    function setParam($arrVal, $seq = false) {
+    function setParam($arrVal, $seq = false)
+    {
         if (!is_array($arrVal)) return;
         if (!$seq) {
@@ -121,5 +126,6 @@
 
     // 画面表示用タイトル生成
-    function setHtmlDispNameArray() {
+    function setHtmlDispNameArray()
+    {
         foreach ($this->keyname as $index => $key) {
             $find = false;
@@ -145,10 +151,12 @@
 
     // 画面表示用タイトル取得
-    function getHtmlDispNameArray() {
+    function getHtmlDispNameArray()
+    {
         return $this->html_disp_name;
     }
 
     // 複数列パラメーターの取得
-    function setParamList($arrVal2d, $keyname) {
+    function setParamList($arrVal2d, $keyname)
+    {
         // DBの件数を取得する。
         $no = 1;
@@ -160,5 +168,6 @@
     }
 
-    function setDBDate($db_date, $year_key = 'year', $month_key = 'month', $day_key = 'day') {
+    function setDBDate($db_date, $year_key = 'year', $month_key = 'month', $day_key = 'day')
+    {
         if (empty($db_date)) {
             return;
@@ -171,5 +180,6 @@
 
     // キーに対応した値をセットする。
-    function setValue($key, $value) {
+    function setValue($key, $value)
+    {
         if (!in_array($key, $this->keyname)) {
             // TODO 警告発生
@@ -179,5 +189,6 @@
     }
 
-    function toLower($key) {
+    function toLower($key)
+    {
         if (isset($this->arrValue[$key])) {
             $this->arrValue[$key] = strtolower($this->arrValue[$key]);
@@ -186,5 +197,6 @@
 
     // エラーチェック
-    function checkError($br = true) {
+    function checkError($br = true)
+    {
         $arrErr = array();
 
@@ -303,5 +315,6 @@
      * @see mb_convert_kana
      */
-    function convParam() {
+    function convParam()
+    {
         foreach ($this->keyname as $index => $key) {
             if (isset($this->arrValue[$key])) {
@@ -317,5 +330,6 @@
      * @param string $convert mb_convert_kana の変換オプション
      */
-    function recursionConvParam(&$value, $convert) {
+    function recursionConvParam(&$value, $convert)
+    {
         if (is_array($value)) {
             foreach ($value as $key => $val) {
@@ -335,5 +349,6 @@
      * @return array 連想配列
      */
-    function getHashArray($arrKey = array()) {
+    function getHashArray($arrKey = array())
+    {
         $arrRet = array();
         foreach ($this->keyname as $keyname) {
@@ -346,5 +361,6 @@
 
     // DB格納用配列の作成
-    function getDbArray() {
+    function getDbArray()
+    {
         $dbArray = array();
         foreach ($this->keyname as $index => $key) {
@@ -362,5 +378,6 @@
      * @return array 縦横を入れ替えた配列
      */
-    function getSwapArray($arrKey = array()) {
+    function getSwapArray($arrKey = array())
+    {
         $arrTmp = $this->getHashArray($arrKey);
         return SC_Utils_Ex::sfSwapArray($arrTmp);
@@ -368,10 +385,12 @@
 
     // 項目名一覧の取得
-    function getTitleArray() {
+    function getTitleArray()
+    {
         return $this->disp_name;
     }
 
     // 項目数を返す
-    function getCount() {
+    function getCount()
+    {
         $count = count($this->keyname);
         return $count;
@@ -379,5 +398,6 @@
 
     // フォームに渡す用のパラメーターを返す
-    function getFormParamList() {
+    function getFormParamList()
+    {
         $formParamList = array();
         foreach ($this->keyname as $index => $key) {
@@ -399,10 +419,12 @@
      * @return array キー名の一覧
      */
-    function getKeyList() {
+    function getKeyList()
+    {
         return $this->keyname;
     }
 
     // キー名と一致した値を返す
-    function getValue($keyname, $default = '') {
+    function getValue($keyname, $default = '')
+    {
         $ret = null;
         foreach ($this->keyname as $key) {
@@ -430,5 +452,6 @@
      * @deprecated
      */
-    function splitParamCheckBoxes($keyname) {
+    function splitParamCheckBoxes($keyname)
+    {
         foreach ($this->keyname as $key) {
             if ($key == $keyname) {
@@ -446,5 +469,6 @@
      * @return void
      */
-    function trimParam($has_wide_space = true) {
+    function trimParam($has_wide_space = true)
+    {
         foreach ($this->arrValue as &$value) {
             $this->recursionTrim($value, $has_wide_space);
@@ -459,5 +483,6 @@
      * @return void
      */
-    function recursionTrim(&$value, $has_wide_space = true) {
+    function recursionTrim(&$value, $has_wide_space = true)
+    {
         $pattern = '/^[ 　\r\n\t]*(.*?)[ 　\r\n\t]*$/u';
         if (is_array($value)) {
@@ -483,5 +508,6 @@
      * @return array 検索結果引き継ぎ用の連想配列.
      */
-    function getSearchArray($prefix = 'search_') {
+    function getSearchArray($prefix = 'search_')
+    {
         $arrResults = array();
         foreach ($this->keyname as $key) {
@@ -499,5 +525,6 @@
      * @deprecated 2.12.0 必要ならば getFormParamList メソッドに引数を追加するなどで実現可能
      */
-    function getFormDispArray() {
+    function getFormDispArray()
+    {
         $formDispArray = array();
         foreach ($this->keyname as $index => $key) {
@@ -519,5 +546,6 @@
      * カスタマイズおよびプラグインで使用されるのを想定
      */
-    function removeParam($keyname) {
+    function removeParam($keyname)
+    {
         $index = array_search($keyname, $this->keyname);
 
@@ -562,5 +590,6 @@
      * @param mixed $value 指定した内容に上書きする
      */
-    function overwriteParam($keyname, $target, $value) {
+    function overwriteParam($keyname, $target, $value)
+    {
         $index = array_search($keyname, $this->keyname);
 
Index: branches/version-2_12-dev/data/class/SC_MobileUserAgent.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_MobileUserAgent.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_MobileUserAgent.php	(revision 22567)
@@ -28,5 +28,6 @@
  * すべてのメソッドはクラスメソッド。
  */
-class SC_MobileUserAgent {
+class SC_MobileUserAgent 
+{
     /**
      * 携帯端末のキャリアを表す文字列を取得する。
@@ -37,5 +38,6 @@
      *                      携帯端末ではない場合は false を返す。
      */
-    function getCarrier() {
+    function getCarrier()
+    {
         $objAgent =& Net_UserAgent_Mobile::singleton();
         if (Net_UserAgent_Mobile::isError($objAgent)) {
@@ -67,5 +69,6 @@
      * @return string|false 取得したIDを返す。取得できなかった場合は false を返す。
      */
-    function getId() {
+    function getId()
+    {
         $objAgent =& Net_UserAgent_Mobile::singleton();
         if (Net_UserAgent_Mobile::isError($objAgent)) {
@@ -85,5 +88,6 @@
      * @return string 携帯端末のモデルを表す文字列を返す。
      */
-    function getModel() {
+    function getModel()
+    {
         $objAgent =& Net_UserAgent_Mobile::singleton();
         if (Net_UserAgent_Mobile::isError($objAgent)) {
@@ -108,5 +112,6 @@
      * @return boolean サポートしている場合は true、それ以外の場合は false を返す。
      */
-    function isSupported() {
+    function isSupported()
+    {
         $objAgent =& Net_UserAgent_Mobile::singleton();
 
@@ -138,5 +143,6 @@
      * @return boolean サポートしている場合は true、それ以外の場合は false を返す。 
      */
-    function isMobile() { 
+    function isMobile()
+    { 
         $objAgent =& Net_UserAgent_Mobile::singleton(); 
         if (Net_UserAgent_Mobile::isError($objAgent)) { 
Index: branches/version-2_12-dev/data/class/SC_ClassAutoloader.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_ClassAutoloader.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_ClassAutoloader.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id$
  */
-class SC_ClassAutoloader {
+class SC_ClassAutoloader 
+{
     /**
      * クラスのオートローディング本体
@@ -36,5 +37,6 @@
      * @return void
      */
-    public static function autoload($class) {
+    public static function autoload($class)
+    {
         $arrClassNamePart = explode('_', $class);
         $is_ex = end($arrClassNamePart) === 'Ex';
Index: branches/version-2_12-dev/data/class/SC_CheckError.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_CheckError.php	(revision 22475)
+++ branches/version-2_12-dev/data/class/SC_CheckError.php	(revision 22567)
@@ -27,10 +27,12 @@
  *----------------------------------------------------------------------
  */
-class SC_CheckError {
+class SC_CheckError 
+{
     var $arrErr = array();
     var $arrParam;
 
     // チェック対象の値が含まれる配列をセットする。
-    function __construct($array = '') {
+    function __construct($array = '')
+    {
         if ($array != '') {
             $this->arrParam = $array;
@@ -41,5 +43,6 @@
     }
 
-    function doFunc($value, $arrFunc) {
+    function doFunc($value, $arrFunc)
+    {
         foreach ($arrFunc as $key) {
             $this->$key($value);
@@ -53,5 +56,6 @@
      * @return void
      */
-    function HTML_TAG_CHECK($value) {
+    function HTML_TAG_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -81,5 +85,6 @@
      * @return void
      */
-    function EXIST_CHECK($value) {
+    function EXIST_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -100,5 +105,6 @@
      * @return void
      */
-    function EXIST_CHECK_REVERSE($value) {
+    function EXIST_CHECK_REVERSE($value)
+    {
         if (isset($this->arrErr[$value[0]])) {
             return;
@@ -117,5 +123,6 @@
      * @return void
      */
-    function SPTAB_CHECK($value) {
+    function SPTAB_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -134,5 +141,6 @@
      * @return void
      */
-    function NO_SPTAB($value) {
+    function NO_SPTAB($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -145,5 +153,6 @@
 
     /* ゼロで開始されている数値の判定 */
-    function ZERO_START($value) {
+    function ZERO_START($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -162,5 +171,6 @@
      * @return void
      */
-    function SELECT_CHECK($value) {
+    function SELECT_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -179,5 +189,6 @@
      * @return void
      */
-    function EQUAL_CHECK($value) {
+    function EQUAL_CHECK($value)
+    {
         if (isset($this->arrErr[$value[2]]) || isset($this->arrErr[$value[3]])) {
             return;
@@ -197,5 +208,6 @@
      * @return void
      */
-    function DIFFERENT_CHECK($value) {
+    function DIFFERENT_CHECK($value)
+    {
         if (isset($this->arrErr[$value[2]]) || isset($this->arrErr[$value[3]])) {
             return;
@@ -215,5 +227,6 @@
      * @return void
      */
-    function GREATER_CHECK($value) {
+    function GREATER_CHECK($value)
+    {
         if (isset($this->arrErr[$value[2]]) || isset($this->arrErr[$value[3]])) {
             return;
@@ -233,5 +246,6 @@
      * @return void
      */
-    function MAX_LENGTH_CHECK($value) {
+    function MAX_LENGTH_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -251,5 +265,6 @@
      * @return void
      */
-    function MIN_LENGTH_CHECK($value) {
+    function MIN_LENGTH_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -269,5 +284,6 @@
      * @return void
      */
-    function MAX_CHECK($value) {
+    function MAX_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -287,5 +303,6 @@
      * @return void
      */
-    function MIN_CHECK($value) {
+    function MIN_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -304,5 +321,6 @@
      * @return void
      */
-    function NUM_CHECK($value) {
+    function NUM_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -321,5 +339,6 @@
      * @return void
      */
-    function NUM_POINT_CHECK($value) {
+    function NUM_POINT_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -331,5 +350,6 @@
     }
 
-    function ALPHA_CHECK($value) {
+    function ALPHA_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -354,5 +374,6 @@
      * @return void
      */
-    function TEL_CHECK($value) {
+    function TEL_CHECK($value)
+    {
         $telItemLen = isset($value[4]) ? $value[4] : TEL_ITEM_LEN;
         $telLen = isset($value[5]) ? $value[5] : TEL_LEN;
@@ -395,5 +416,6 @@
         value[1]    : 判定対象要素名
     */
-    function FULL_EXIST_CHECK($value) {
+    function FULL_EXIST_CHECK($value)
+    {
         $max = count($value);
         $this->createParam($value);
@@ -423,5 +445,6 @@
         value[1]    : 判定対象要素名
     */
-    function ALL_EXIST_CHECK($value) {
+    function ALL_EXIST_CHECK($value)
+    {
         $max = count($value);
 
@@ -454,5 +477,6 @@
         value[1]    : 判定対象要素名
     */
-    function ONE_EXIST_CHECK($value) {
+    function ONE_EXIST_CHECK($value)
+    {
         $max = count($value);
         $this->createParam($value);
@@ -482,5 +506,6 @@
         value[1]    : 判定対象要素名
     */
-    function TOP_EXIST_CHECK($value) {
+    function TOP_EXIST_CHECK($value)
+    {
         $max = count($value);
         $this->createParam($value);
@@ -515,5 +540,6 @@
     // 入力文字がカナ以外ならエラーを返す
     // value[0] = 項目名 value[1] = 判定対象文字列
-    function KANA_CHECK($value) {
+    function KANA_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -528,5 +554,6 @@
     // 入力文字がカナ以外ならエラーを返す
     // value[0] = 項目名 value[1] = 判定対象文字列
-    function KANABLANK_CHECK($value) {
+    function KANABLANK_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -541,5 +568,6 @@
     // 入力文字が英数字以外ならエラーを返す
     // value[0] = 項目名 value[1] = 判定対象文字列
-    function ALNUM_CHECK($value) {
+    function ALNUM_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -554,5 +582,6 @@
     // 入力文字が英数記号以外ならエラーを返す
     // value[0] = 項目名 value[1] = 判定対象文字列
-    function GRAPH_CHECK($value) {
+    function GRAPH_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -567,5 +596,6 @@
     // 入力値で0が許されない場合エラーを返す
     // value[0] = 項目名 value[1] = 判定対象
-    function ZERO_CHECK($value) {
+    function ZERO_CHECK($value)
+    {
         $this->createParam($value);
         if ($this->arrParam[$value[1]] == '0') {
@@ -577,5 +607,6 @@
     // 入力文字の桁数判定　→　最小桁数＜入力文字列＜最大桁数
     // value[0] = 項目名 value[1] = 判定対象文字列 value[2] = 最小桁数 value[3] = 最大桁数
-    function NUM_RANGE_CHECK($value) {
+    function NUM_RANGE_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -592,5 +623,6 @@
     // 入力文字の桁数判定　→　入力文字列 = 桁数　以外はNGの場合
     // value[0] = 項目名 value[1] = 判定対象文字列 value[2] = 桁数
-    function NUM_COUNT_CHECK($value) {
+    function NUM_COUNT_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -611,5 +643,6 @@
      * @return void
      */
-    function EMAIL_CHECK($value) {
+    function EMAIL_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -660,5 +693,6 @@
     //　メールアドレスに使用する文字を正規表現で判定する
     //  value[0] = 項目名 value[1] = 判定対象メールアドレス
-    function EMAIL_CHAR_CHECK($value) {
+    function EMAIL_CHAR_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -673,5 +707,6 @@
     //　URLを正規表現で判定する。デフォルトでhttp://があってもOK
     //  value[0] = 項目名 value[1] = 判定対象URL
-    function URL_CHECK($value) {
+    function URL_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -684,5 +719,6 @@
     /*　IPアドレスの判定　*/
     //  value[0] = 項目名 value[1] = 判定対象IPアドレス文字列
-    function IP_CHECK($value) {
+    function IP_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -707,5 +743,6 @@
     // 受け取りがない場合エラーを返す
     // value[0] = 項目名 value[1] = 判定対象 value[2]=array(拡張子)
-    function FILE_EXT_CHECK($value) {
+    function FILE_EXT_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]]) || count($value[2]) == 0) {
             return;
@@ -733,5 +770,6 @@
     // 受け取りがない場合エラーを返す
     // value[0] = 項目名 value[1] = 判定対象  value[2] = 指定ディレクトリ
-    function FIND_FILE($value) {
+    function FIND_FILE($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -756,5 +794,6 @@
     // 受け取りがない場合エラーを返す
     // value[0] = 項目名 value[1] = 判定対象  value[2] = 指定サイズ(KB)
-    function FILE_EXIST_CHECK($value) {
+    function FILE_EXIST_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -769,5 +808,6 @@
     // 受け取りがない場合エラーを返す
     // value[0] = 項目名 value[1] = 判定対象  value[2] = 指定サイズ(KB)
-    function FILE_SIZE_CHECK($value) {
+    function FILE_SIZE_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -787,5 +827,6 @@
     // 入力文字が英数字,'_','-'以外ならエラーを返す
     // value[0] = 項目名 value[1] = 判定対象文字列
-    function FILE_NAME_CHECK($value) {
+    function FILE_NAME_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -800,5 +841,6 @@
     // 入力文字が英数字,'_','-'以外ならエラーを返す
     // value[0] = 項目名 value[1] = 判定対象文字列
-    function FILE_NAME_CHECK_BY_NOUPLOAD($value) {
+    function FILE_NAME_CHECK_BY_NOUPLOAD($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -815,5 +857,6 @@
     // value[2] = MM
     // value[3] = DD
-    function CHECK_DATE($value) {
+    function CHECK_DATE($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -838,5 +881,6 @@
     // value[4] = HH
     // value[5] = mm
-    function CHECK_DATE2($value) {
+    function CHECK_DATE2($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -858,5 +902,6 @@
     // value[1] = YYYY
     // value[2] = MM
-    function CHECK_DATE3($value) {
+    function CHECK_DATE3($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -879,5 +924,6 @@
     // value[2] = MM
     // value[3] = DD
-    function CHECK_BIRTHDAY($value) {
+    function CHECK_BIRTHDAY($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -924,5 +970,6 @@
     // value[6] = end_month
     // value[7] = end_day
-    function CHECK_SET_TERM($value) {
+    function CHECK_SET_TERM($value)
+    {
 
         // 期間指定
@@ -974,5 +1021,6 @@
 
     /*-----------------------------------------------------------------*/
-    function CHECK_SET_TERM2($value) {
+    function CHECK_SET_TERM2($value)
+    {
 
         // 期間指定
@@ -1017,5 +1065,6 @@
     // value[4] = end_year
     // value[5] = end_month
-    function CHECK_SET_TERM3($value) {
+    function CHECK_SET_TERM3($value)
+    {
 
         // 期間指定
@@ -1042,5 +1091,6 @@
 
     //ディレクトリ存在チェック
-    function DIR_CHECK($value) {
+    function DIR_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -1053,5 +1103,6 @@
 
     // ドメインチェック
-    function DOMAIN_CHECK($value) {
+    function DOMAIN_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -1065,5 +1116,6 @@
     //　メールアドレスを正規表現で判定する
     // value[0] = 項目名 value[1] = 判定対象メールアドレス
-    function MOBILE_EMAIL_CHECK($value) {
+    function MOBILE_EMAIL_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -1084,5 +1136,6 @@
      * @return void
      */
-    function CHECK_REGIST_CUSTOMER_EMAIL($value) {
+    function CHECK_REGIST_CUSTOMER_EMAIL($value)
+    {
         if (isset($this->arrErr[$value[1]])) {
             return;
@@ -1110,5 +1163,6 @@
      * @example $objErr->doFunc(array('URL', 'contents', $arrReviewDenyURL), array('PROHIBITED_STR_CHECK'));
      */
-    function PROHIBITED_STR_CHECK($value) {
+    function PROHIBITED_STR_CHECK($value)
+    {
         if (isset($this->arrErr[$value[1]]) || empty($this->arrParam[$value[1]])) {
             return;
@@ -1131,5 +1185,6 @@
      * @return void
      */
-    function EVAL_CHECK($value) {
+    function EVAL_CHECK($value)
+    {
         if (isset($this->arrErr[$value[0]])) {
             return;
@@ -1152,5 +1207,6 @@
      * @return bool パラメーターとして適切な文字列か
      */
-    function evalCheck($value) {
+    function evalCheck($value)
+    {
         return @eval('return is_scalar(' . $value . ');');
     }
@@ -1163,5 +1219,6 @@
      * @return void
      */
-    function createParam($value) {
+    function createParam($value)
+    {
         foreach ($value as $key) {
             if (is_string($key) || is_int($key)) {
@@ -1178,5 +1235,6 @@
      * @return boolean 値が10進数の数値表現のみの場合 true
      */
-    function numelicCheck($string) {
+    function numelicCheck($string)
+    {
         /*
          * XXX 10進数の数値表現か否かを調べたいだけだが,
Index: branches/version-2_12-dev/data/class/SC_PageNavi.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_PageNavi.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_PageNavi.php	(revision 22567)
@@ -29,10 +29,12 @@
     ・$func_nameに指定するJavaScriptの例
         // ページナビで使用する
-        function fnNaviPage(pageno) {
+        function fnNaviPage(pageno)
+        {
             document.form1['pageno'].value = pageno;
             document.form1.submit();
         }
 */
-class SC_PageNavi {
+class SC_PageNavi 
+{
     var $now_page;      // 現在のページ番号
     var $max_page;      // 最終のページ番号
@@ -42,5 +44,6 @@
 
     // コンストラクタ
-    function __construct($now_page, $all_row, $page_row, $func_name, $navi_max = NAVI_PMAX, $urlParam = '', $display_number = true) {
+    function __construct($now_page, $all_row, $page_row, $func_name, $navi_max = NAVI_PMAX, $urlParam = '', $display_number = true)
+    {
         $this->arrPagenavi['mode'] = 'search';
 
Index: branches/version-2_12-dev/data/class/SC_MobileEmoji.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_MobileEmoji.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_MobileEmoji.php	(revision 22567)
@@ -31,5 +31,6 @@
  * 携帯端末の絵文字を扱うクラス
  */
-class SC_MobileEmoji {
+class SC_MobileEmoji 
+{
     /**
      * 絵文字タグを各キャリア用の文字コードに変換する
@@ -39,5 +40,6 @@
      * @return string 出力
      */
-    static function handler($buffer) {
+    static function handler($buffer)
+    {
         $replace_callback = create_function('$matches', 'return SC_MobileEmoji_Ex::indexToCode($matches[1]);');
         return preg_replace_callback('/\[emoji:(e?\d+)\]/', $replace_callback, $buffer);
@@ -50,5 +52,6 @@
      * @return string 絵文字を表す Shift JIS の文字列を返す。
      */
-    function indexToCode($index) {
+    function indexToCode($index)
+    {
         $carrier = SC_MobileUserAgent_Ex::getCarrier();
         if ($carrier === false) {
Index: branches/version-2_12-dev/data/class/SC_SendMail.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SendMail.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_SendMail.php	(revision 22567)
@@ -23,5 +23,6 @@
 
 // テキスト/HTML　メール送信
-class SC_SendMail {
+class SC_SendMail 
+{
 
     var $to;            // 送信先
@@ -39,5 +40,6 @@
      * @return void
      */
-    function __construct() {
+    function __construct()
+    {
         $this->arrRecip = array();
         $this->to = '';
@@ -62,10 +64,12 @@
 
     // 送信先の設定
-    function setRecip($key, $recipient) {
+    function setRecip($key, $recipient)
+    {
         $this->arrRecip[$key] = $recipient;
     }
 
     // 宛先の設定
-    function setTo($to, $to_name = '') {
+    function setTo($to, $to_name = '')
+    {
         if ($to != '') {
             $this->to = $this->getNameAddress($to_name, $to);
@@ -75,10 +79,12 @@
 
     // 送信元の設定
-    function setFrom($from, $from_name = '') {
+    function setFrom($from, $from_name = '')
+    {
         $this->from = $this->getNameAddress($from_name, $from);
     }
 
     // CCの設定
-    function setCc($cc, $cc_name = '') {
+    function setCc($cc, $cc_name = '')
+    {
         if ($cc != '') {
             $this->cc = $this->getNameAddress($cc_name, $cc);
@@ -88,5 +94,6 @@
 
     // BCCの設定
-    function setBCc($bcc) {
+    function setBCc($bcc)
+    {
         if ($bcc != '') {
             $this->bcc = $bcc;
@@ -96,5 +103,6 @@
 
     // Reply-Toの設定
-    function setReplyTo($reply_to) {
+    function setReplyTo($reply_to)
+    {
         if ($reply_to != '') {
             $this->reply_to = $reply_to;
@@ -103,10 +111,12 @@
 
     // Return-Pathの設定
-    function setReturnPath($return_path) {
+    function setReturnPath($return_path)
+    {
         $this->return_path = $return_path;
     }
 
     // 件名の設定
-    function setSubject($subject) {
+    function setSubject($subject)
+    {
         $this->subject = mb_encode_mimeheader($subject, 'JIS', 'B', "\n");
         $this->subject = str_replace(array("\r\n", "\r"), "\n", $this->subject);
@@ -114,5 +124,6 @@
 
     // 本文の設定
-    function setBody($body) {
+    function setBody($body)
+    {
         // iso-2022-jpだと特殊文字が？で送信されるのでJISを使用する
         $this->body = mb_convert_encoding($body, 'JIS', CHAR_CODE);
@@ -124,5 +135,6 @@
      * @deprecated 2.12.2 (#1912)
      */
-    function setHost($host) {
+    function setHost($host)
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         $this->host = $host;
@@ -141,5 +153,6 @@
      * @deprecated 2.12.2 (#1912)
      */
-    function setPort($port) {
+    function setPort($port)
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         $this->port = $port;
@@ -153,5 +166,6 @@
 
     // 名前<メールアドレス>の形式を生成
-    function getNameAddress($name, $mail_address) {
+    function getNameAddress($name, $mail_address)
+    {
             if ($name != '') {
                 // 制御文字を変換する。
@@ -166,9 +180,11 @@
     }
 
-    function setItem($to, $subject, $body, $fromaddress, $from_name, $reply_to='', $return_path='', $errors_to='', $bcc='', $cc ='') {
+    function setItem($to, $subject, $body, $fromaddress, $from_name, $reply_to='', $return_path='', $errors_to='', $bcc='', $cc ='')
+    {
         $this->setBase($to, $subject, $body, $fromaddress, $from_name, $reply_to, $return_path, $errors_to, $bcc, $cc);
     }
 
-    function setItemHtml($to, $subject, $body, $fromaddress, $from_name, $reply_to='', $return_path='', $errors_to='', $bcc='', $cc ='') {
+    function setItemHtml($to, $subject, $body, $fromaddress, $from_name, $reply_to='', $return_path='', $errors_to='', $bcc='', $cc ='')
+    {
         $this->setBase($to, $subject, $body, $fromaddress, $from_name, $reply_to, $return_path, $errors_to, $bcc, $cc);
     }
@@ -186,5 +202,6 @@
          $bcc           -> ブラインドカーボンコピー
     */
-    function setBase($to, $subject, $body, $fromaddress, $from_name, $reply_to='', $return_path='', $errors_to='', $bcc='', $cc ='') {
+    function setBase($to, $subject, $body, $fromaddress, $from_name, $reply_to='', $return_path='', $errors_to='', $bcc='', $cc ='')
+    {
         // 宛先設定
         $this->setTo($to);
@@ -213,5 +230,6 @@
 
     // ヘッダーを返す
-    function getBaseHeader() {
+    function getBaseHeader()
+    {
         // 送信するメールの内容と送信先
         $arrHeader = array();
@@ -236,5 +254,6 @@
 
     // ヘッダーを返す
-    function getTEXTHeader() {
+    function getTEXTHeader()
+    {
         $arrHeader = $this->getBaseHeader();
         $arrHeader['Content-Type'] = 'text/plain; charset="ISO-2022-JP"';
@@ -243,5 +262,6 @@
 
     // ヘッダーを返す
-    function getHTMLHeader() {
+    function getHTMLHeader()
+    {
         $arrHeader = $this->getBaseHeader();
         $arrHeader['Content-Type'] = 'text/html; charset="ISO-2022-JP"';
@@ -254,5 +274,6 @@
      * @return array|string メーラーバックエンドに応じた送信先
      */
-    function getRecip() {
+    function getRecip()
+    {
         switch ($this->backend) {
             // PEAR::Mail_mail#send は、(他のメーラーバックエンドと異なり) 第1引数を To: として扱う。Cc: や Bcc: は、ヘッダー情報から処理する。
@@ -274,5 +295,6 @@
      * @return void
      */
-    function sendMail($isHtml = false) {
+    function sendMail($isHtml = false)
+    {
         $header = $isHtml ? $this->getHTMLHeader() : $this->getTEXTHeader();
         $recip = $this->getRecip();
@@ -295,5 +317,6 @@
      * @return void
      */
-    function sendHtmlMail() {
+    function sendHtmlMail()
+    {
         return $this->sendMail(true);
     }
@@ -305,5 +328,6 @@
      * @return array メーラーバックエンドに応じたパラメーターの配列
      */
-    function getBackendParams($backend) {
+    function getBackendParams($backend)
+    {
         switch ($backend) {
             case 'mail':
Index: branches/version-2_12-dev/data/class/SC_SmartphoneUserAgent.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SmartphoneUserAgent.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_SmartphoneUserAgent.php	(revision 22567)
@@ -27,5 +27,6 @@
  * @auther Yu Nobira
  */
-class SC_SmartphoneUserAgent {
+class SC_SmartphoneUserAgent 
+{
 
     /**
@@ -35,5 +36,6 @@
      * @return boolean
      */
-    function isSmartphone() {
+    function isSmartphone()
+    {
         $nu = new Net_UserAgent_Mobile();
         // SPでかつPC表示OFFの場合
@@ -46,5 +48,6 @@
      * @return boolean
      */
-    function isNonSmartphone() {
+    function isNonSmartphone()
+    {
         return !SC_SmartphoneUserAgent_Ex::isSmartphone();
     }
@@ -55,5 +58,6 @@
      * @return string
      */
-    function getSmartphonePcFlag() {
+    function getSmartphonePcFlag()
+    {
         $_SESSION['pc_disp'] = empty($_SESSION['pc_disp']) ? false : $_SESSION['pc_disp'];
         return $_SESSION['pc_disp'];
@@ -63,5 +67,6 @@
      * PC表示ON
      */
-    function setPcDisplayOn() {
+    function setPcDisplayOn()
+    {
         $_SESSION['pc_disp'] = true;
     }
@@ -70,5 +75,6 @@
      * PC表示OFF
      */
-    function setPcDisplayOff() {
+    function setPcDisplayOff()
+    {
         $_SESSION['pc_disp'] = false;
     }
Index: branches/version-2_12-dev/data/class/SC_Response.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Response.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Response.php	(revision 22567)
@@ -28,5 +28,6 @@
  * @version $Id$
  */
-class SC_Response{
+class SC_Response
+{
 
     /**
@@ -49,10 +50,12 @@
      * レスポンス出力を書き込む.
      */
-    function write() {
+    function write()
+    {
         $this->sendHeader();
         echo $this->body;
     }
 
-    function sendHeader() {
+    function sendHeader()
+    {
         // HTTPのヘッダ
         foreach ($this->header as $name => $head) {
@@ -64,17 +67,21 @@
     }
 
-    function setContentType($contentType) {
+    function setContentType($contentType)
+    {
         $this->header['Content-Type'] = $contentType;
     }
 
-    function setResposeBody($body) {
+    function setResposeBody($body)
+    {
         $this->body = $body;
     }
 
-    function addHeader($name, $value) {
+    function addHeader($name, $value)
+    {
         $this->header[$name] = $value;
     }
 
-    function containsHeader($name) {
+    function containsHeader($name)
+    {
         return isset($this->header[$name]);
     }
@@ -84,5 +91,6 @@
      * 各クラス内部で勝手にexitするな！
     */
-    function actionExit() {
+    function actionExit()
+    {
         // ローカルフックポイント処理
         $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg);
@@ -115,5 +123,6 @@
      * @static
      */
-    function sendRedirect($location, $arrQueryString = array(), $inheritQueryString = false, $useSsl = null) {
+    function sendRedirect($location, $arrQueryString = array(), $inheritQueryString = false, $useSsl = null)
+    {
 
         // ローカルフックポイント処理
@@ -216,5 +225,6 @@
      * @static
      */
-    function sendRedirectFromUrlPath($location, $arrQueryString = array(), $inheritQueryString = false, $useSsl = null) {
+    function sendRedirectFromUrlPath($location, $arrQueryString = array(), $inheritQueryString = false, $useSsl = null)
+    {
         $location = ROOT_URLPATH . ltrim($location, '/');
         SC_Response_Ex::sendRedirect($location, $arrQueryString, $inheritQueryString, $useSsl);
@@ -224,5 +234,6 @@
      * @static
      */
-    function reload($arrQueryString = array(), $removeQueryString = false) {
+    function reload($arrQueryString = array(), $removeQueryString = false)
+    {
         // 現在の URL を取得
         $netUrl = new Net_URL($_SERVER['REQUEST_URI']);
@@ -236,9 +247,11 @@
     }
 
-    function setHeader($headers) {
+    function setHeader($headers)
+    {
         $this->header = $headers;
     }
 
-    function setStatusCode($statusCode = null) {
+    function setStatusCode($statusCode = null)
+    {
         $this->statusCode = $statusCode;
     }
@@ -259,5 +272,6 @@
      * @static
      */
-    function sendHttpStatus($statusCode) {
+    function sendHttpStatus($statusCode)
+    {
         $protocol = $_SERVER['SERVER_PROTOCOL'];
         $httpVersion = (strpos($protocol, '1.1') !== false) ? '1.1' : '1.0';
Index: branches/version-2_12-dev/data/class/api/SC_Api_Abstract.php
===================================================================
--- branches/version-2_12-dev/data/class/api/SC_Api_Abstract.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/SC_Api_Abstract.php	(revision 22567)
@@ -30,5 +30,6 @@
  */
 
-abstract class SC_Api_Abstract {
+abstract class SC_Api_Abstract 
+{
 
     /** 認証タイプ */
@@ -56,7 +57,9 @@
     protected $arrErr = array();
 
-    final public function __construct() {}
+    final public function __construct()
+    {}
 
-    final public function __destruct() {}
+    final public function __destruct()
+    {}
 
     abstract public function doAction($arrParam);
@@ -66,13 +69,16 @@
     abstract protected function lfInitParam(&$objFormParam);
 
-    public function getResponseArray() {
+    public function getResponseArray()
+    {
         return $this->arrResponse;
     }
 
-    public function getErrorArray() {
+    public function getErrorArray()
+    {
         return $this->arrErr;
     }
 
-    public function getDefaultConfig() {
+    public function getDefaultConfig()
+    {
         $arrApiConfig = array();
         $arrApiConfig['operation_name'] = $this->operation_name;
@@ -85,20 +91,25 @@
     }
 
-    protected function setResponse($key, $data) {
+    protected function setResponse($key, $data)
+    {
         $this->arrResponse[$key] = $data;
     }
 
-    protected function addError($arrErr) {
+    protected function addError($arrErr)
+    {
         $this->arrErr = array_merge((array)$this->arrErr, (array)$arrErr);
     }
 
-    protected function isParamError() {
+    protected function isParamError()
+    {
         return !SC_Utils_Ex::isBlank($this->arrErr);
     }
 
-    protected function checkErrorExtended($arrParam) {
+    protected function checkErrorExtended($arrParam)
+    {
     }
 
-    protected function doInitParam($arrParam = array()) {
+    protected function doInitParam($arrParam = array())
+    {
         $this->objFormParam = new SC_FormParam_Ex();
         $this->lfInitParam($this->objFormParam);
@@ -110,5 +121,6 @@
     }
 
-    public function getRequestValidate() {
+    public function getRequestValidate()
+    {
         $arrParam = $this->objFormParam->getHashArray();
         if (!SC_Utils_Ex::isBlank($arrParam)) {
Index: branches/version-2_12-dev/data/class/api/operations/ItemLookup.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/ItemLookup.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/ItemLookup.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_ItemLookup extends SC_Api_Abstract_Ex {
+class API_ItemLookup extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'ItemLookup';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $arrRequest = $this->doInitParam($arrParam);
         if (!$this->isParamError()) {
@@ -75,5 +77,6 @@
     }
 
-    protected function checkErrorExtended($arrParam) {
+    protected function checkErrorExtended($arrParam)
+    {
         switch ($arrParam['IdType']) {
         case 'product_code':
@@ -89,5 +92,6 @@
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('商品コンディション', 'Condition', STEXT_LEN, 'a', array('ALNUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('商品ID種別', 'IdType', STEXT_LEN, 'a', array('GRAPH_CHECK', 'MAX_LENGTH_CHECK'));
@@ -102,5 +106,6 @@
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'Item';
     }
Index: branches/version-2_12-dev/data/class/api/operations/CartGet.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/CartGet.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/CartGet.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_CartGet extends SC_Api_Abstract_Ex {
+class API_CartGet extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'CartGet';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $this->arrResponse = array(
             'Version' => ECCUBE_VERSION);
@@ -46,12 +48,15 @@
     }
 
-    public function getRequestValidate() {
+    public function getRequestValidate()
+    {
         return;
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'VersionResponse';
     }
Index: branches/version-2_12-dev/data/class/api/operations/CartCreate.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/CartCreate.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/CartCreate.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_CartCreate extends SC_Api_Abstract_Ex {
+class API_CartCreate extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'CartCreate';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $this->arrResponse = array(
             'Version' => ECCUBE_VERSION);
@@ -46,12 +48,15 @@
     }
 
-    public function getRequestValidate() {
+    public function getRequestValidate()
+    {
         return;
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'VersionResponse';
     }
Index: branches/version-2_12-dev/data/class/api/operations/CartClear.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/CartClear.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/CartClear.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_CartClear extends SC_Api_Abstract_Ex {
+class API_CartClear extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'CartClear';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $this->arrResponse = array(
             'Version' => ECCUBE_VERSION);
@@ -46,12 +48,15 @@
     }
 
-    public function getRequestValidate() {
+    public function getRequestValidate()
+    {
         return;
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'VersionResponse';
     }
Index: branches/version-2_12-dev/data/class/api/operations/AddrFromZip.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/AddrFromZip.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/AddrFromZip.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_AddrFromZip extends SC_Api_Abstract_Ex {
+class API_AddrFromZip extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'AddrFromZip';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $arrRequest = $this->doInitParam($arrParam);
         if (!$this->isParamError()) {
@@ -58,10 +60,12 @@
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('郵便番号1', 'zip1', ZIP01_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('郵便番号2', 'zip2', ZIP02_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'AddressResponse';
     }
Index: branches/version-2_12-dev/data/class/api/operations/BrowseNodeLookup.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/BrowseNodeLookup.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/BrowseNodeLookup.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_BrowseNodeLookup extends SC_Api_Abstract_Ex {
+class API_BrowseNodeLookup extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'BrowseNodeLookup';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $arrRequest = $this->doInitParam($arrParam);
         if (!$this->isParamError()) {
@@ -104,10 +106,12 @@
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('対象カテゴリID', 'BrowseNodeId', INT_LEN, 'a', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('返答種別', 'ResponseGroup', INT_LEN, 'a', array('GRAPH_CHECK', 'MAX_LENGTH_CHECK'));
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'BrowseNodes';
     }
Index: branches/version-2_12-dev/data/class/api/operations/CartModify.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/CartModify.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/CartModify.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_CartModify extends SC_Api_Abstract_Ex {
+class API_CartModify extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'CartModify';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $this->arrResponse = array(
             'Version' => ECCUBE_VERSION);
@@ -46,12 +48,15 @@
     }
 
-    public function getRequestValidate() {
+    public function getRequestValidate()
+    {
         return;
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'VersionResponse';
     }
Index: branches/version-2_12-dev/data/class/api/operations/CartAdd.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/CartAdd.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/CartAdd.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_CartAdd extends SC_Api_Abstract_Ex {
+class API_CartAdd extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'CartAdd';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $this->arrResponse = array(
             'Version' => ECCUBE_VERSION);
@@ -46,12 +48,15 @@
     }
 
-    public function getRequestValidate() {
+    public function getRequestValidate()
+    {
         return;
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'VersionResponse';
     }
Index: branches/version-2_12-dev/data/class/api/operations/Default.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/Default.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/Default.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_Default extends SC_Api_Abstract_Ex {
+class API_Default extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'Default';
@@ -40,18 +41,22 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $this->arrResponse = array('DefaultEmpty' => array());
         return true;
     }
 
-    public function getRequestValidate() {
+    public function getRequestValidate()
+    {
         return array('DefaultResponse' => array());
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'DefaultResponse';
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
     }
 }
Index: branches/version-2_12-dev/data/class/api/operations/ItemSearch.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/ItemSearch.php	(revision 22486)
+++ branches/version-2_12-dev/data/class/api/operations/ItemSearch.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_ItemSearch extends SC_Api_Abstract_Ex {
+class API_ItemSearch extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'ItemSearch';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $arrRequest = $this->doInitParam($arrParam);
         if (!$this->isParamError()) {
@@ -92,5 +94,6 @@
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('カテゴリID', 'BrowseNode', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('キーワード', 'Keywords', STEXT_LEN, 'a', array('SPTAB_CHECK', 'MAX_LENGTH_CHECK'));
@@ -100,5 +103,6 @@
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'Items';
     }
@@ -111,5 +115,6 @@
      * TODO: LC_Page_Products_List::lfGetProductsList() と共通化
      */
-    protected function getProductsList($searchCondition, $disp_number, $startno, $linemax, &$objProduct) {
+    protected function getProductsList($searchCondition, $disp_number, $startno, $linemax, &$objProduct)
+    {
 
         $arrOrderVal = array();
@@ -185,5 +190,6 @@
      * TODO: LC_Page_Products_List:;lfGetSearchCondition() と共通化
      */
-    protected function getSearchCondition($arrSearchData) {
+    protected function getSearchCondition($arrSearchData)
+    {
         $searchCondition = array(
             'where'             => '',
@@ -254,5 +260,6 @@
      * @return Array $arrProducts 商品一覧情報
      */
-    protected function setStatusDataTo($arrProducts, $arrStatus, $arrStatusImage) {
+    protected function setStatusDataTo($arrProducts, $arrStatus, $arrStatusImage)
+    {
 
         foreach ($arrProducts['productStatus'] as $product_id => $arrValues) {
Index: branches/version-2_12-dev/data/class/api/operations/GetVersion.php
===================================================================
--- branches/version-2_12-dev/data/class/api/operations/GetVersion.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/operations/GetVersion.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php';
 
-class API_GetVersion extends SC_Api_Abstract_Ex {
+class API_GetVersion extends SC_Api_Abstract_Ex 
+{
 
     protected $operation_name = 'GetVersion';
@@ -40,5 +41,6 @@
     protected $default_sub_data = '';
 
-    public function doAction($arrParam) {
+    public function doAction($arrParam)
+    {
         $this->arrResponse = array(
             'Version' => ECCUBE_VERSION);
@@ -46,12 +48,15 @@
     }
 
-    public function getRequestValidate() {
+    public function getRequestValidate()
+    {
         return;
     }
 
-    protected function lfInitParam(&$objFormParam) {
+    protected function lfInitParam(&$objFormParam)
+    {
     }
 
-    public function getResponseGroupName() {
+    public function getResponseGroupName()
+    {
         return 'VersionResponse';
     }
Index: branches/version-2_12-dev/data/class/api/SC_Api_Operation.php
===================================================================
--- branches/version-2_12-dev/data/class/api/SC_Api_Operation.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/SC_Api_Operation.php	(revision 22567)
@@ -33,5 +33,6 @@
 
 
-class SC_Api_Operation {
+class SC_Api_Operation 
+{
 
     /** API_DEBUG_MODE */
@@ -58,5 +59,6 @@
      * @return boolean ログイン情報が有効な場合 true
      */
-    protected function checkMemberAccount($member_id, $member_password) {
+    protected function checkMemberAccount($member_id, $member_password)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         //パスワード、saltの取得
@@ -82,5 +84,6 @@
      * @return boolean ログインに成功した場合 true; 失敗した場合 false
      */
-    protected function checkCustomerAccount($login_email, $login_password) {
+    protected function checkCustomerAccount($login_email, $login_password)
+    {
         $objCustomer = new SC_Customer_Ex();
         if ($objCustomer->getCustomerDataFromEmailPass($login_password, $login_email)) {
@@ -96,5 +99,6 @@
      * @return boolean チェックに成功した場合 true; 失敗した場合 false
      */
-    protected function checkReferer() {
+    protected function checkReferer()
+    {
         $ret = false;
         if (!SC_Utils_Ex::isBlank($_SERVER['HTTP_REFERER'])) {
@@ -117,5 +121,6 @@
      * @return boolean 署名認証に成功した場合 true; 失敗した場合 false
      */
-    protected function checkApiSignature($operation_name, $arrParam, $arrApiConfig) {
+    protected function checkApiSignature($operation_name, $arrParam, $arrApiConfig)
+    {
         if (SC_Utils_Ex::isBlank($arrParam['Signature'])) {
             return false;
@@ -171,5 +176,6 @@
      * @return boolean チェックに成功した場合 true; 失敗した場合 false
      */
-    protected function checkIp($operation_name) {
+    protected function checkIp($operation_name)
+    {
         $ret = false;
         $allow_hosts = SC_Api_Utils_Ex::getOperationSubConfig($operation_name, 'allow_hosts');
@@ -189,5 +195,6 @@
      * @return string 秘密鍵文字列
      */
-    protected function getApiSecretKey($access_key) {
+    protected function getApiSecretKey($access_key)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $secret_key = $objQuery->get('api_secret_key', 'dtb_api_account', 'api_access_key = ? and enable = 1 and del_flg = 0', array($access_key));
@@ -202,5 +209,6 @@
      * @return boolean 権限がある場合 true; 無い場合 false
      */
-    protected function checkOperationAuth($operation_name, &$arrParam, &$arrApiConfig) {
+    protected function checkOperationAuth($operation_name, &$arrParam, &$arrApiConfig)
+    {
         if (SC_Utils_Ex::isBlank($operation_name)) {
             return false;
@@ -265,5 +273,6 @@
      * @return void
      */
-    protected function setApiBaseParam(&$objFormParam) {
+    protected function setApiBaseParam(&$objFormParam)
+    {
         $objFormParam->addParam('Operation', 'Operation', STEXT_LEN, 'an', array('EXIST_CHECK', 'GRAPH_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('Service', 'Service', STEXT_LEN, 'an', array('EXIST_CHECK', 'GRAPH_CHECK', 'MAX_LENGTH_CHECK'));
@@ -279,5 +288,6 @@
      * @return array(string レスポンス名, array レスポンス配列)
      */
-    public function doApiAction($arrPost) {
+    public function doApiAction($arrPost)
+    {
         // 実行時間計測用
         $start_time = microtime(true);
@@ -374,5 +384,6 @@
      * @return array エコー情報配列 (XML用の _attributes 指定入り）
      */
-    protected function getOperationRequestEcho($arrParam, $start_time) {
+    protected function getOperationRequestEcho($arrParam, $start_time)
+    {
         $arrRet = array(
                 'HTTPHeaders' => array('Header' => array('_attributes' => array('Name' => 'UserAgent',
@@ -389,5 +400,6 @@
 
     // TODO: ここらへんは SC_Displayに持って行きたい所だが・・
-    public function sendApiResponse($type, $response_outer_name, &$arrResponse) {
+    public function sendApiResponse($type, $response_outer_name, &$arrResponse)
+    {
         switch ($type) {
             case 'xml':
Index: branches/version-2_12-dev/data/class/api/SC_Api_Utils.php
===================================================================
--- branches/version-2_12-dev/data/class/api/SC_Api_Utils.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/api/SC_Api_Utils.php	(revision 22567)
@@ -33,5 +33,6 @@
 define('API_CLASS_REALDIR', CLASS_REALDIR . 'api/operations/');
 
-class SC_Api_Utils {
+class SC_Api_Utils 
+{
 
     /** API XML Namspase Header */
@@ -53,5 +54,6 @@
      * @return string 秘密鍵文字列
      */
-    public function getOperationSubConfig($operation_name, $key_name = '', $arrApiConfig = '') {
+    public function getOperationSubConfig($operation_name, $key_name = '', $arrApiConfig = '')
+    {
         if (SC_Utils_Ex::isBlank($arrApiConfig)) {
             $arrApiConfig = SC_Api_Utils_Ex::getAuthConfig($operation_name);
@@ -79,5 +81,6 @@
      * @return array 設定配列
      */
-    public function getApiConfig($operation_name) {
+    public function getApiConfig($operation_name)
+    {
         // 設定優先度 DB > plugin default > base
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -112,5 +115,6 @@
      @ @rturn void
      */
-    public function printApiLog($msg, $start_time = '' , $operation_name = '') {
+    public function printApiLog($msg, $start_time = '' , $operation_name = '')
+    {
         if (!SC_Utils_Ex::isBlank($operation_name)) {
             $msg = 'API_' . $operation_name . ':' . $msg;
@@ -129,5 +133,6 @@
      * @return object APIオペレーションクラスオブジェクト
      */
-    public function loadApiOperation($operation_name, $arrParam = array()) {
+    public function loadApiOperation($operation_name, $arrParam = array())
+    {
         // API_UPLOADのほうが優先
         // API_UPLOAD > API_CLASS_EX > API_CLASS
@@ -155,5 +160,6 @@
      * @return array $arrFiles
      */
-    public function getApiDirFiles() {
+    public function getApiDirFiles()
+    {
         $arrFiles = array();
         // Core API ディレクトリ
@@ -183,5 +189,6 @@
     }
 
-    public function sendResponseJson($response_outer_name, &$arrResponse) {
+    public function sendResponseJson($response_outer_name, &$arrResponse)
+    {
         header('Content-Type: application/json; charset=UTF-8');
         $arrResponse['response_name'] = $response_outer_name;
@@ -189,5 +196,6 @@
     }
 
-    public function sendResponsePhp($response_outer_name, &$arrResponse) {
+    public function sendResponsePhp($response_outer_name, &$arrResponse)
+    {
         header('Content-Type: application/php; charset=UTF-8');
         $arrResponse['response_name'] = $response_outer_name;
@@ -195,5 +203,6 @@
     }
 
-    public function sendResponseXml($response_outer_name, &$arrResponse) {
+    public function sendResponseXml($response_outer_name, &$arrResponse)
+    {
         require_once 'XML/Serializer.php';
 
Index: branches/version-2_12-dev/data/class/SC_SiteView.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SiteView.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_SiteView.php	(revision 22567)
@@ -22,6 +22,8 @@
  */
 
-class SC_SiteView extends SC_View_Ex {
-    function __construct($setPrevURL = true) {
+class SC_SiteView extends SC_View_Ex 
+{
+    function __construct($setPrevURL = true)
+    {
         parent::__construct();
 
@@ -31,5 +33,6 @@
     }
 
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -40,5 +43,6 @@
     }
 
-    function setPrevURL() {
+    function setPrevURL()
+    {
             $objCartSess = new SC_CartSession_Ex();
             $objCartSess->setPrevURL($_SERVER['REQUEST_URI']);
Index: branches/version-2_12-dev/data/class/sessionfactory/SC_SessionFactory_UseRequest.php
===================================================================
--- branches/version-2_12-dev/data/class/sessionfactory/SC_SessionFactory_UseRequest.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/sessionfactory/SC_SessionFactory_UseRequest.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class SC_SessionFactory_UseRequest extends SC_SessionFactory_Ex {
+class SC_SessionFactory_UseRequest extends SC_SessionFactory_Ex 
+{
 
     var $state = null;
@@ -45,5 +46,6 @@
      * @param string $state
      */
-    function setState($state = 'pc') {
+    function setState($state = 'pc')
+    {
         switch ($state) {
             case 'mobile':
@@ -63,5 +65,6 @@
      * @return boolean 常にfalseを返す
      */
-    function useCookie() {
+    function useCookie()
+    {
         return false;
     }
@@ -74,5 +77,6 @@
      *                     取得できなかった場合は null を返す。
      */
-    function getExtSessionId() {
+    function getExtSessionId()
+    {
         if (!preg_match('|^' . ROOT_URLPATH . '(.*)$|', $_SERVER['SCRIPT_NAME'], $matches)) {
             return null;
@@ -104,5 +108,6 @@
      * @return void
      */
-    function setExtSessionId($param_key, $param_value, $url) {
+    function setExtSessionId($param_key, $param_value, $url)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -127,5 +132,6 @@
      * @return boolean セッションデータが有効な場合は true、無効な場合は false を返す。
      */
-    function validateSession() {
+    function validateSession()
+    {
         /**
          * PCサイトでは
@@ -151,5 +157,6 @@
      *                      取得できなかった場合は false を返す。
      */
-    function getSessionId() {
+    function getSessionId()
+    {
         // パラメーターからセッションIDを取得する。
         $sessionId = @$_POST[session_name()];
@@ -185,5 +192,6 @@
      * @return void
      */
-    function initSession() {
+    function initSession()
+    {
         // セッションIDの受け渡しにクッキーを使用しない。
         ini_set('session.use_cookies', '0');
@@ -233,5 +241,6 @@
  *
  */
-class LC_UseRequest_State {
+class LC_UseRequest_State 
+{
     /** 名前空間(pc/mobile) */
     var $namespace = '';
@@ -246,5 +255,6 @@
      * @return string
      */
-    function getNameSpace() { return $this->namespace; }
+    function getNameSpace()
+    { return $this->namespace; }
 
     /**
@@ -253,5 +263,6 @@
      * @return integer
      */
-    function getLifeTime() { return $this->lifetime; }
+    function getLifeTime()
+    { return $this->lifetime; }
 
     /**
@@ -262,5 +273,6 @@
      * @return boolean
      */
-    function validateNameSpace() {
+    function validateNameSpace()
+    {
         $namespace = $this->getNameSpace();
         if (isset($_SESSION[$namespace]) && is_array($_SESSION[$namespace])) {
@@ -278,5 +290,6 @@
      * @return mixed|null
      */
-    function getValue($key) {
+    function getValue($key)
+    {
         $namespace = $this->getNameSpace();
         return isset($_SESSION[$namespace][$key])
@@ -292,5 +305,6 @@
      * @param mixed $value
      */
-    function setValue($key, $value) {
+    function setValue($key, $value)
+    {
         $namespace = $this->getNameSpace();
         $_SESSION[$namespace][$key] = $value;
@@ -302,5 +316,6 @@
      * @return integer
      */
-    function getExpire() {
+    function getExpire()
+    {
         return $this->getValue('expires');
     }
@@ -310,5 +325,6 @@
      *
      */
-    function updateExpire() {
+    function updateExpire()
+    {
         $lifetime = $this->getLifeTime();
         $this->setValue('expires', time() + $lifetime);
@@ -320,5 +336,6 @@
      * @return boolean
      */
-    function validateExpire() {
+    function validateExpire()
+    {
         $expire = $this->getExpire();
         if (intval($expire) > time()) {
@@ -335,5 +352,6 @@
      * @return string
      */
-    function getIp() {
+    function getIp()
+    {
         return $this->getValue('ip');
     }
@@ -343,5 +361,6 @@
      *
      */
-    function updateIp() {
+    function updateIp()
+    {
         $this->setValue('ip', $_SERVER['REMOTE_ADDR']);
     }
@@ -353,5 +372,6 @@
      * @return boolean
      */
-    function validateIp() {
+    function validateIp()
+    {
         $ip = $this->getIp();
         if (!empty($_SERVER['REMOTE_ADDR']) && $ip === $_SERVER['REMOTE_ADDR']) {
@@ -370,5 +390,6 @@
      * @return string
      */
-    function getModel() {
+    function getModel()
+    {
         return $this->getValue('model');
     }
@@ -379,5 +400,6 @@
      * @return boolean
      */
-    function validateSessionData() {
+    function validateSessionData()
+    {
         foreach ($this->validate as $method) {
             $method = 'validate' . $method;
@@ -393,5 +415,6 @@
      *
      */
-    function inisializeSessionData() {}
+    function inisializeSessionData()
+    {}
 }
 
@@ -400,5 +423,6 @@
  *
  */
-class LC_UseRequest_State_PC extends LC_UseRequest_State {
+class LC_UseRequest_State_PC extends LC_UseRequest_State 
+{
 
     /**
@@ -413,5 +437,6 @@
      * @return LC_UseRequest_State_PC
      */
-    function LC_UseRequest_State_PC() {
+    function LC_UseRequest_State_PC()
+    {
         $this->namespace = 'pc';
         $this->lifetime  = SESSION_LIFETIME;
@@ -423,5 +448,6 @@
      *
      */
-    function updateModel() {
+    function updateModel()
+    {
         $this->setValue('model', $_SERVER['HTTP_USER_AGENT']);
     }
@@ -432,5 +458,6 @@
      * @return boolean
      */
-    function validateModel() {
+    function validateModel()
+    {
         $ua = $this->getModel();
         if (!empty($_SERVER['HTTP_USER_AGENT']) && $_SERVER['HTTP_USER_AGENT'] === $ua) {
@@ -447,5 +474,6 @@
      *
      */
-    function inisializeSessionData() {
+    function inisializeSessionData()
+    {
         $_SESSION = array();
         $this->updateModel();
@@ -459,5 +487,6 @@
  *
  */
-class LC_UseRequest_State_Mobile extends LC_UseRequest_State {
+class LC_UseRequest_State_Mobile extends LC_UseRequest_State 
+{
 
     /**
@@ -473,5 +502,6 @@
      * @return LC_UseRequest_State_Mobile
      */
-    function LC_UseRequest_State_Mobile() {
+    function LC_UseRequest_State_Mobile()
+    {
         $this->namespace = 'mobile';
         $this->lifetime  = MOBILE_SESSION_LIFETIME;
@@ -483,5 +513,6 @@
      *
      */
-    function updateModel() {
+    function updateModel()
+    {
         $this->setValue('model', SC_MobileUserAgent_Ex::getModel());
     }
@@ -492,5 +523,6 @@
      * @return boolean
      */
-    function validateModel() {
+    function validateModel()
+    {
         $modelInSession = $this->getModel();
         $model = SC_MobileUserAgent_Ex::getModel();
@@ -506,5 +538,6 @@
      * @return string
      */
-    function getPhoneId() {
+    function getPhoneId()
+    {
         return $this->getValue('phone_id');
     }
@@ -514,5 +547,6 @@
      *
      */
-    function updatePhoneId() {
+    function updatePhoneId()
+    {
         $this->setValue('phone_id', SC_MobileUserAgent_Ex::getId());
     }
@@ -522,5 +556,6 @@
      *
      */
-    function inisializeSessionData() {
+    function inisializeSessionData()
+    {
         $_SESSION = array();
         $this->updateModel();
Index: branches/version-2_12-dev/data/class/sessionfactory/SC_SessionFactory_UseCookie.php
===================================================================
--- branches/version-2_12-dev/data/class/sessionfactory/SC_SessionFactory_UseCookie.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/sessionfactory/SC_SessionFactory_UseCookie.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class SC_SessionFactory_UseCookie extends SC_SessionFactory_Ex {
+class SC_SessionFactory_UseCookie extends SC_SessionFactory_Ex 
+{
 
     // }}}
@@ -45,5 +46,6 @@
      * FIXME セッションキーのキーが PHP デフォルトのため、上位ディレクトリーで定義があると、その値で動作すると考えられる。
      **/
-    function initSession() {
+    function initSession()
+    {
         ini_set('session.cache_limiter', 'none');
         // (session.auto_start などで)セッションが開始されていた場合に備えて閉じる。(FIXME: 保存する必要はない。破棄で良い。)
@@ -61,5 +63,6 @@
      * @return boolean 常に true を返す
      */
-    function useCookie() {
+    function useCookie()
+    {
         return true;
     }
Index: branches/version-2_12-dev/data/class/SC_InstallView.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_InstallView.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_InstallView.php	(revision 22567)
@@ -22,6 +22,8 @@
  */
 
-class SC_InstallView extends SC_View_Ex {
-    function __construct($template_dir, $compile_dir = COMPILE_REALDIR) {
+class SC_InstallView extends SC_View_Ex 
+{
+    function __construct($template_dir, $compile_dir = COMPILE_REALDIR)
+    {
         parent::__construct();
 
Index: branches/version-2_12-dev/data/class/util/GC_Utils.php
===================================================================
--- branches/version-2_12-dev/data/class/util/GC_Utils.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/util/GC_Utils.php	(revision 22567)
@@ -31,5 +31,6 @@
  * @version $Id$
  */
-class GC_Utils {
+class GC_Utils 
+{
 
     /**
@@ -39,5 +40,6 @@
      * @return void
      */
-    function gfDebugLog($obj) {
+    function gfDebugLog($obj)
+    {
         if (USE_VERBOSE_LOG === true) {
             $msg = "DEBUG\n"
@@ -53,5 +55,6 @@
      * @return string 呼び出し元クラス、関数名、行数の文字列表現
      */
-    function gfGetCallerInfo($forLogInfo = true) {
+    function gfGetCallerInfo($forLogInfo = true)
+    {
         // バックトレースを取得する
         $traces = debug_backtrace(false);
@@ -74,5 +77,6 @@
      * エラーハンドリングに関わる情報を切り捨てる。
      */
-    function getDebugBacktrace($arrBacktrace = null) {
+    function getDebugBacktrace($arrBacktrace = null)
+    {
         if (is_null($arrBacktrace)) {
             $arrBacktrace = debug_backtrace(false);
@@ -119,5 +123,6 @@
      * @deprecated 2.12.0
      */
-    function gfGetLogStr($mess, $log_level = 'Info') {
+    function gfGetLogStr($mess, $log_level = 'Info')
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         // メッセージの前に、ログ出力元関数名とログ出力関数呼び出し部分の行数を付与
@@ -137,5 +142,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::gfPrintLog を使用すること
      */
-    function gfAdminLog($mess, $log_level = 'Info') {
+    function gfAdminLog($mess, $log_level = 'Info')
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         // ログレベル=Debugの場合は、DEBUG_MODEがtrueの場合のみログ出力する
@@ -153,5 +159,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::gfPrintLog を使用すること
      */
-    function gfFrontLog($mess, $log_level = 'Info') {
+    function gfFrontLog($mess, $log_level = 'Info')
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         // ログレベル=Debugの場合は、DEBUG_MODEがtrueの場合のみログ出力する
@@ -172,5 +179,6 @@
      * @param bool $verbose 冗長な出力を行うか
      */
-    function gfPrintLog($msg, $path = '', $verbose = USE_VERBOSE_LOG) {
+    function gfPrintLog($msg, $path = '', $verbose = USE_VERBOSE_LOG)
+    {
         // 日付の取得
         $today = date('Y/m/d H:i:s');
@@ -208,5 +216,6 @@
      * @return void
      */
-    function gfLogRotation($max_log, $max_size, $path) {
+    function gfLogRotation($max_log, $max_size, $path)
+    {
 
         // ファイルが存在しない場合、終了
@@ -245,5 +254,6 @@
      * [注釈] -
      *----------------------------------------------------------------------*/
-    function gfMakePassword($pwLength) {
+    function gfMakePassword($pwLength)
+    {
 
         // 乱数表のシードを決定
@@ -271,5 +281,6 @@
      *----------------------------------------------------------------------------------------------------------------------*/
 
-    function gfMailHeaderAddr($str) {
+    function gfMailHeaderAddr($str)
+    {
         $addrs = explode(',', $str); //アドレスを配列に入れる
         $mailaddrs = array();
@@ -293,5 +304,6 @@
      * @return string テキストで表現したバックトレース
      */
-    function toStringBacktrace($arrBacktrace) {
+    function toStringBacktrace($arrBacktrace)
+    {
         $string = '';
 
@@ -316,5 +328,6 @@
      * @return string|integer エラー定数名
      */
-    function getErrorTypeName($error_type) {
+    function getErrorTypeName($error_type)
+    {
         $arrDefinedConstants = get_defined_constants(true);
 
@@ -347,5 +360,6 @@
      * @return string 現在のURL
      */
-    function getUrl() {
+    function getUrl()
+    {
         $url = '';
 
@@ -369,5 +383,6 @@
      * @return bool 管理機能か
      */
-    function isAdminFunction() {
+    function isAdminFunction()
+    {
         return defined('ADMIN_FUNCTION') && ADMIN_FUNCTION === true;
     }
@@ -378,5 +393,6 @@
      * @return bool フロント機能か
      */
-    function isFrontFunction() {
+    function isFrontFunction()
+    {
         return defined('FRONT_FUNCTION') && FRONT_FUNCTION === true;
     }
@@ -387,5 +403,6 @@
      * @return bool インストール機能か
      */
-    function isInstallFunction() {
+    function isInstallFunction()
+    {
         return defined('INSTALL_FUNCTION') && INSTALL_FUNCTION === true;
     }
@@ -398,5 +415,6 @@
      * @return string XML宣言の文字列
      */
-    function printXMLDeclaration() {
+    function printXMLDeclaration()
+    {
         $ua = $_SERVER['HTTP_USER_AGENT'];
         if (!preg_match('/MSIE/', $ua) || preg_match('/MSIE 7/', $ua)) {
Index: branches/version-2_12-dev/data/class/util/SC_Utils.php
===================================================================
--- branches/version-2_12-dev/data/class/util/SC_Utils.php	(revision 22446)
+++ branches/version-2_12-dev/data/class/util/SC_Utils.php	(revision 22567)
@@ -33,8 +33,10 @@
  * @version $Id:SC_Utils.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_Utils {
+class SC_Utils 
+{
 
     // インストール初期処理
-    function sfInitInstall() {
+    function sfInitInstall()
+    {
         // インストール済みが定義されていない。
         if (!defined('ECCUBE_INSTALL')) {
@@ -64,5 +66,6 @@
      * @return string インストーラの URL
      */
-    function searchInstallerPath($path) {
+    function searchInstallerPath($path)
+    {
         $installer = 'install/' . DIR_INDEX_PATH;
 
@@ -101,5 +104,6 @@
      * @return string $url を絶対パスに変換した URL
      */
-    function getRealURL($url) {
+    function getRealURL($url)
+    {
         $parse = parse_url($url);
         $tmp = explode('/', $parse['path']);
@@ -120,5 +124,6 @@
 
     // 装飾付きエラーメッセージの表示
-    function sfErrorHeader($mess, $print = false) {
+    function sfErrorHeader($mess, $print = false)
+    {
         global $GLOBAL_ERR;
         $GLOBAL_ERR.= '<div id="errorHeader">';
@@ -131,5 +136,6 @@
 
     /* エラーページの表示 */
-    function sfDispError($type) {
+    function sfDispError($type)
+    {
 
         require_once CLASS_EX_REALDIR . 'page_extends/error/LC_Page_Error_DispError_Ex.php';
@@ -144,5 +150,6 @@
 
     /* サイトエラーページの表示 */
-    function sfDispSiteError($type, $objSiteSess = '', $return_top = false, $err_msg = '') {
+    function sfDispSiteError($type, $objSiteSess = '', $return_top = false, $err_msg = '')
+    {
 
         require_once CLASS_EX_REALDIR . 'page_extends/error/LC_Page_Error_Ex.php';
@@ -165,5 +172,6 @@
      * @deprecated 2.12.0 trigger_error($debugMsg, E_USER_ERROR) を使用すること
      */
-    function sfDispException($debugMsg = null) {
+    function sfDispException($debugMsg = null)
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         trigger_error($debugMsg, E_USER_ERROR);
@@ -171,5 +179,6 @@
 
     /* 認証の可否判定 */
-    function sfIsSuccess($objSess, $disp_error = true) {
+    function sfIsSuccess($objSess, $disp_error = true)
+    {
         $ret = $objSess->IsSuccess();
         if ($ret != SUCCESS) {
@@ -206,5 +215,6 @@
      * @return string アスタリスクへ変換した文字列
      */
-    function sfPassLen($passlen) {
+    function sfPassLen($passlen)
+    {
         $ret = '';
         for ($i=0;$i<$passlen;true) {
@@ -220,5 +230,6 @@
      * @return bool
      */
-    function sfIsHTTPS() {
+    function sfIsHTTPS()
+    {
         // HTTPS時には$_SERVER['HTTPS']には空でない値が入る
         // $_SERVER['HTTPS'] != 'off' はIIS用
@@ -236,5 +247,6 @@
      *  @return bool
      */
-    function sfIsValidTransition($objSess) {
+    function sfIsValidTransition($objSess)
+    {
         // 前画面からPOSTされるuniqidが正しいものかどうかをチェック
         $uniqid = $objSess->getUniqId();
@@ -247,5 +259,6 @@
 
     /* DB用日付文字列取得 */
-    function sfGetTimestamp($year, $month, $day, $last = false) {
+    function sfGetTimestamp($year, $month, $day, $last = false)
+    {
         if ($year != '' && $month != '' && $day != '') {
             if ($last) {
@@ -270,5 +283,6 @@
      */
     //
-    function sfIsInt($value) {
+    function sfIsInt($value)
+    {
         if (strlen($value) >= 1 && strlen($value) <= INT_LEN && is_numeric($value)) {
             return true;
@@ -283,5 +297,6 @@
      * @return boolean 0で埋められている
      */
-    function sfIsZeroFilling($value) {
+    function sfIsZeroFilling($value)
+    {
         if (strlen($value) > 1 && $value{0} === '0')
             return true;
@@ -289,5 +304,6 @@
     }
 
-    function sfGetCSVData($data, $prefix = '') {
+    function sfGetCSVData($data, $prefix = '')
+    {
         if ($prefix == '') {
             $dir_name = SC_Utils_Ex::sfUpDirName();
@@ -306,5 +322,6 @@
 
     /* 1階層上のディレクトリ名を取得する */
-    function sfUpDirName() {
+    function sfUpDirName()
+    {
         $path = $_SERVER['SCRIPT_NAME'];
         $arrVal = explode('/', $path);
@@ -317,5 +334,6 @@
      * @deprecated
      */
-    function sfMergeCBValue($keyname, $max) {
+    function sfMergeCBValue($keyname, $max)
+    {
         $conv = '';
         $cnt = 1;
@@ -334,5 +352,6 @@
      * @deprecated
      */
-    function sfMergeCheckBoxes($array, $max) {
+    function sfMergeCheckBoxes($array, $max)
+    {
         $ret = '';
         $arrTmp = array();
@@ -356,5 +375,6 @@
      * @deprecated
      */
-    function sfMergeParamCheckBoxes($array) {
+    function sfMergeParamCheckBoxes($array)
+    {
         $ret = '';
         if (is_array($array)) {
@@ -376,5 +396,6 @@
      * @deprecated
      */
-    function sfSearchCheckBoxes($array) {
+    function sfSearchCheckBoxes($array)
+    {
         $max = max($array);
         $ret = '';
@@ -392,5 +413,6 @@
      * @deprecated
      */
-    function sfSplitCheckBoxes($val) {
+    function sfSplitCheckBoxes($val)
+    {
         $arrRet = array();
         $len = strlen($val);
@@ -407,5 +429,6 @@
      * @deprecated
      */
-    function sfMergeCBSearchValue($keyname, $max) {
+    function sfMergeCBSearchValue($keyname, $max)
+    {
         $conv = '';
         $cnt = 1;
@@ -424,5 +447,6 @@
      * @deprecated
      */
-    function sfSplitCBValue($val, $keyname = '') {
+    function sfSplitCBValue($val, $keyname = '')
+    {
         $arr = array();
         $len = strlen($val);
@@ -440,5 +464,6 @@
 
     // キーと値をセットした配列を取得
-    function sfArrKeyValue($arrList, $keyname, $valname, $len_max = '', $keysize = '') {
+    function sfArrKeyValue($arrList, $keyname, $valname, $len_max = '', $keysize = '')
+    {
         $arrRet = array();
         $max = count($arrList);
@@ -465,5 +490,6 @@
 
     // キーと値をセットした配列を取得(値が複数の場合)
-    function sfArrKeyValues($arrList, $keyname, $valname, $len_max = '', $keysize = '', $connect = '') {
+    function sfArrKeyValues($arrList, $keyname, $valname, $len_max = '', $keysize = '', $connect = '')
+    {
 
         $max = count($arrList);
@@ -492,5 +518,6 @@
 
     // 配列の値をカンマ区切りで返す。
-    function sfGetCommaList($array, $space=true, $arrPop = array()) {
+    function sfGetCommaList($array, $space=true, $arrPop = array())
+    {
         if (count($array) > 0) {
             $line = '';
@@ -517,5 +544,6 @@
 
     /* 配列の要素をCSVフォーマットで出力する。*/
-    function sfGetCSVList($array) {
+    function sfGetCSVList($array)
+    {
         $line = '';
         if (count($array) > 0) {
@@ -540,5 +568,6 @@
     /*            ３．エラー (0 = OK, 1 = NG)
     /*-----------------------------------------------------------------*/
-    function sfCheckSetTerm($start_year, $start_month, $start_day, $end_year, $end_month, $end_day) {
+    function sfCheckSetTerm($start_year, $start_month, $start_day, $end_year, $end_month, $end_day)
+    {
 
         // 期間指定
@@ -563,10 +592,12 @@
 
     // エラー箇所の背景色を変更するためのfunction SC_Viewで読み込む
-    function sfSetErrorStyle() {
+    function sfSetErrorStyle()
+    {
         return 'style="background-color:'.ERR_COLOR.'"';
     }
 
     // 一致した値のキー名を取得
-    function sfSearchKey($array, $word, $default) {
+    function sfSearchKey($array, $word, $default)
+    {
         foreach ($array as $key => $val) {
             if ($val == $word) {
@@ -577,5 +608,6 @@
     }
 
-    function sfGetErrorColor($val) {
+    function sfGetErrorColor($val)
+    {
         if ($val != '') {
             return 'background-color:' . ERR_COLOR;
@@ -584,5 +616,6 @@
     }
 
-    function sfGetEnabled($val) {
+    function sfGetEnabled($val)
+    {
         if (! $val) {
             return ' disabled="disabled"';
@@ -591,5 +624,6 @@
     }
 
-    function sfGetChecked($param, $value) {
+    function sfGetChecked($param, $value)
+    {
         if ((string)$param === (string)$value) {
             return 'checked="checked"';
@@ -598,5 +632,6 @@
     }
 
-    function sfTrim($str) {
+    function sfTrim($str)
+    {
         $ret = mb_ereg_replace("^[　 \n\r]*", '', $str);
         $ret = mb_ereg_replace("[　 \n\r]*$", '', $ret);
@@ -615,5 +650,6 @@
      * @return integer 税金額
      */
-    function sfTax($price, $tax, $tax_rule) {
+    function sfTax($price, $tax, $tax_rule)
+    {
         $real_tax = $tax / 100;
         $ret = $price * $real_tax;
@@ -650,10 +686,12 @@
      * @return integer 税金付与した金額
      */
-    function sfCalcIncTax($price, $tax, $tax_rule) {
+    function sfCalcIncTax($price, $tax, $tax_rule)
+    {
         return $price + SC_Utils_Ex::sfTax($price, $tax, $tax_rule);
     }
 
     // 桁数を指定して四捨五入
-    function sfRound($value, $pow = 0) {
+    function sfRound($value, $pow = 0)
+    {
         $adjust = pow(10 ,$pow-1);
 
@@ -677,5 +715,6 @@
      * @return int 
      */
-    function sfPrePoint($price, $point_rate, $rule = POINT_RULE, $product_id = '') {
+    function sfPrePoint($price, $point_rate, $rule = POINT_RULE, $product_id = '')
+    {
         $real_point = $point_rate / 100;
         $ret = $price * $real_point;
@@ -702,5 +741,6 @@
 
     /* 規格分類の件数取得 */
-    function sfGetClassCatCount() {
+    function sfGetClassCatCount()
+    {
         $sql = 'select count(dtb_class.class_id) as count, dtb_class.class_id ';
         $sql.= 'from dtb_class inner join dtb_classcategory on dtb_class.class_id = dtb_classcategory.class_id ';
@@ -722,5 +762,6 @@
      * @return int 
      */
-    function sfGetProductClassId($product_id, $classcategory_id1=0, $classcategory_id2=0) {
+    function sfGetProductClassId($product_id, $classcategory_id1=0, $classcategory_id2=0)
+    {
         $where = 'product_id = ? AND classcategory_id1 = ? AND classcategory_id2 = ?';
         if (!$classcategory_id1) { //NULLが入ってきた場合への対策
@@ -736,5 +777,6 @@
 
     /* 文末の「/」をなくす */
-    function sfTrimURL($url) {
+    function sfTrimURL($url)
+    {
         $ret = rtrim($url, '/');
         return $ret;
@@ -742,5 +784,6 @@
 
     /* DBから取り出した日付の文字列を調整する。*/
-    function sfDispDBDate($dbdate, $time = true) {
+    function sfDispDBDate($dbdate, $time = true)
+    {
         list($y, $m, $d, $H, $M) = preg_split('/[- :]/', $dbdate);
 
@@ -758,5 +801,6 @@
 
     /* 配列をキー名ごとの配列に変更する */
-    function sfSwapArray($array, $isColumnName = true) {
+    function sfSwapArray($array, $isColumnName = true)
+    {
         $arrRet = array();
         foreach ($array as $key1 => $arr1) {
@@ -783,5 +827,6 @@
      * @return array 連想配列の値のみの配列
      */
-    function getHash2Array($hash, $requires = array()) {
+    function getHash2Array($hash, $requires = array())
+    {
         $array = array();
         $i = 0;
@@ -801,5 +846,6 @@
 
     /* かけ算をする（Smarty用) */
-    function sfMultiply($num1, $num2) {
+    function sfMultiply($num1, $num2)
+    {
         return $num1 * $num2;
     }
@@ -815,5 +861,6 @@
      * @return integer 加算ポイント
      */
-    function sfGetAddPoint($totalpoint, $use_point, $point_rate) {
+    function sfGetAddPoint($totalpoint, $use_point, $point_rate)
+    {
         // 購入商品の合計ポイントから利用したポイントのポイント換算価値を引く方式
         $add_point = $totalpoint - intval($use_point * ($point_rate / 100));
@@ -826,5 +873,6 @@
 
     /* 一意かつ予測されにくいID */
-    function sfGetUniqRandomId($head = '') {
+    function sfGetUniqRandomId($head = '')
+    {
         // 予測されないようにランダム文字列を付与する。
         $random = GC_Utils_Ex::gfMakePassword(8);
@@ -835,5 +883,6 @@
 
     // 二回以上繰り返されているスラッシュ[/]を一つに変換する。
-    function sfRmDupSlash($istr) {
+    function sfRmDupSlash($istr)
+    {
         if (preg_match('|^http://|', $istr)) {
             $str = substr($istr, 7);
@@ -867,5 +916,6 @@
      * @return string 変換後のテキストファイルのパス
      */
-    function sfEncodeFile($filepath, $enc_type, $out_dir) {
+    function sfEncodeFile($filepath, $enc_type, $out_dir)
+    {
         $ifp = fopen($filepath, 'r');
 
@@ -895,5 +945,6 @@
     }
 
-    function sfCutString($str, $len, $byte = true, $commadisp = true) {
+    function sfCutString($str, $len, $byte = true, $commadisp = true)
+    {
         if ($byte) {
             if (strlen($str) > ($len + 2)) {
@@ -943,5 +994,6 @@
 
     // 年、月、締め日から、先月の締め日+1、今月の締め日を求める。
-    function sfTermMonth($year, $month, $close_day) {
+    function sfTermMonth($year, $month, $close_day)
+    {
         $end_year = $year;
         $end_month = $month;
@@ -985,5 +1037,6 @@
 
     // 再帰的に多段配列を検索して一次元配列(Hidden引渡し用配列)に変換する。
-    function sfMakeHiddenArray($arrSrc, $arrDst = array(), $parent_key = '') {
+    function sfMakeHiddenArray($arrSrc, $arrDst = array(), $parent_key = '')
+    {
         if (is_array($arrSrc)) {
             foreach ($arrSrc as $key => $val) {
@@ -1004,5 +1057,6 @@
 
     // DB取得日時をタイムに変換
-    function sfDBDatetoTime($db_date) {
+    function sfDBDatetoTime($db_date)
+    {
         $date = preg_replace("|\..*$|",'',$db_date);
         $time = strtotime($date);
@@ -1015,10 +1069,12 @@
      * XXX この関数を使っている箇所は、ほぼ設計誤りと思われる。変数にフェッチするか、出力時のエンコーディングで対応すべきと見受ける。
      */
-    function sfMbConvertEncoding($str, $encode = CHAR_CODE) {
+    function sfMbConvertEncoding($str, $encode = CHAR_CODE)
+    {
         return mb_convert_encoding($str, $encode);
     }
 
     // 2つの配列を用いて連想配列を作成する
-    function sfArrCombine($arrKeys, $arrValues) {
+    function sfArrCombine($arrKeys, $arrValues)
+    {
 
         if (count($arrKeys) <= 0 and count($arrValues) <= 0) return array();
@@ -1038,5 +1094,6 @@
 
     /* 階層構造のテーブルから与えられたIDの兄弟を取得する */
-    function sfGetBrothersArray($arrData, $pid_name, $id_name, $arrPID) {
+    function sfGetBrothersArray($arrData, $pid_name, $id_name, $arrPID)
+    {
         $max = count($arrData);
 
@@ -1061,5 +1118,6 @@
 
     /* 階層構造のテーブルから与えられたIDの直属の子を取得する */
-    function sfGetUnderChildrenArray($arrData, $pid_name, $id_name, $parent) {
+    function sfGetUnderChildrenArray($arrData, $pid_name, $id_name, $parent)
+    {
         $max = count($arrData);
 
@@ -1078,5 +1136,6 @@
      * @deprecated SC_Query::quote() を使用すること
      */
-    function sfQuoteSmart($in) {
+    function sfQuoteSmart($in)
+    {
 
         if (is_int($in) || is_double($in)) {
@@ -1092,5 +1151,6 @@
 
     // ディレクトリを再帰的に生成する
-    function sfMakeDir($path) {
+    function sfMakeDir($path)
+    {
         static $count = 0;
         $count++;  // 無限ループ回避
@@ -1119,5 +1179,6 @@
 
     // ディレクトリ以下のファイルを再帰的にコピー
-    function sfCopyDir($src, $des, $mess = '', $override = false) {
+    function sfCopyDir($src, $des, $mess = '', $override = false)
+    {
         if (!is_dir($src)) {
             return false;
@@ -1176,5 +1237,6 @@
      * @return void
      */
-    function sfFlush($output = false, $sleep = 0) {
+    function sfFlush($output = false, $sleep = 0)
+    {
         // 出力をバッファリングしない(==日本語自動変換もしない)
         while (@ob_end_flush());
@@ -1198,5 +1260,6 @@
 
     // @versionの記載があるファイルからバージョンを取得する。
-    function sfGetFileVersion($path) {
+    function sfGetFileVersion($path)
+    {
         if (file_exists($path)) {
             $src_fp = fopen($path, 'rb');
@@ -1223,5 +1286,6 @@
      * @see mb_convert_kana
      */
-    function mbConvertKanaWithArray($array, $arrConvList) {
+    function mbConvertKanaWithArray($array, $arrConvList)
+    {
         foreach ($arrConvList as $key => $val) {
             if (isset($array[$key])) {
@@ -1239,5 +1303,6 @@
      * @return array 添字を定義した配列
      */
-    function arrayDefineIndexes($array, $defineIndexes) {
+    function arrayDefineIndexes($array, $defineIndexes)
+    {
         foreach ($defineIndexes as $key) {
             if (!isset($array[$key])) $array[$key] = '';
@@ -1255,5 +1320,6 @@
      * @return array
      */
-    function sfArrayIntersectKeys($arrSrc, $arrKey) {
+    function sfArrayIntersectKeys($arrSrc, $arrKey)
+    {
         $arrRet = array();
         foreach ($arrKey as $key) {
@@ -1268,5 +1334,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::printXMLDeclaration を使用すること
      */
-    function printXMLDeclaration() {
+    function printXMLDeclaration()
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         GC_Utils_Ex::printXMLDeclaration();
@@ -1278,5 +1345,6 @@
      * @return string
      */
-    function getTableTag($array) {
+    function getTableTag($array)
+    {
         $html = '<table>';
         $html.= '<tr>';
@@ -1304,5 +1372,6 @@
      * @return string
      */
-    function sfNoImageMainList($filename = '') {
+    function sfNoImageMainList($filename = '')
+    {
         if (strlen($filename) == 0 || substr($filename, -1, 1) == '/') {
             $filename .= 'noimage_main_list.jpg';
@@ -1317,5 +1386,6 @@
      * @return string
      */
-    function sfNoImageMain($filename = '') {
+    function sfNoImageMain($filename = '')
+    {
         if (strlen($filename) == 0 || substr($filename, -1, 1) == '/') {
             $filename .= 'noimage_main.png';
@@ -1325,5 +1395,6 @@
 
     /* デバッグ用 ------------------------------------------------------------------------------------------------*/
-    function sfPrintR($obj) {
+    function sfPrintR($obj)
+    {
         echo '<div style="font-size: 12px;color: #00FF00;">' . "\n";
         echo '<strong>**デバッグ中**</strong><br />' . "\n";
@@ -1340,5 +1411,6 @@
      * @return string ランダムな文字列
      */
-    function sfGetRandomString($length = 1) {
+    function sfGetRandomString($length = 1)
+    {
         return Text_Password::create($length);
     }
@@ -1349,5 +1421,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::getUrl を使用すること
      */
-    function sfGetUrl() {
+    function sfGetUrl()
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         return GC_Utils_Ex::getUrl();
@@ -1359,5 +1432,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::toStringBacktrace を使用すること
      */
-    function sfBacktraceToString($arrBacktrace) {
+    function sfBacktraceToString($arrBacktrace)
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         return GC_Utils_Ex::toStringBacktrace($arrBacktrace);
@@ -1369,5 +1443,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::isAdminFunction を使用すること
      */
-    function sfIsAdminFunction() {
+    function sfIsAdminFunction()
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         return GC_Utils_Ex::isAdminFunction();
@@ -1379,5 +1454,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::isFrontFunction を使用すること
      */
-    function sfIsFrontFunction() {
+    function sfIsFrontFunction()
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         return GC_Utils_Ex::isFrontFunction();
@@ -1389,5 +1465,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::isInstallFunction を使用すること
      */
-    function sfIsInstallFunction() {
+    function sfIsInstallFunction()
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         return GC_Utils_Ex::isInstallFunction();
@@ -1395,5 +1472,6 @@
 
     // 郵便番号から住所の取得
-    function sfGetAddress($zipcode) {
+    function sfGetAddress($zipcode)
+    {
 
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -1441,5 +1519,6 @@
      * @deprecated 2.12.0 microtime(true) を使用する。
      */
-    function sfMicrotimeFloat() {
+    function sfMicrotimeFloat()
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         return microtime(true);
@@ -1467,5 +1546,6 @@
      * @return boolean $val が空白と判断された場合 true
      */
-    function isBlank($val, $greedy = true) {
+    function isBlank($val, $greedy = true)
+    {
         if (is_array($val)) {
             if ($greedy) {
@@ -1509,5 +1589,6 @@
      * @return boolean
      */
-    function sfIsInternalDomain($url) {
+    function sfIsInternalDomain($url)
+    {
         $netURL = new Net_URL(HTTP_URL);
         $host = $netURL->host;
@@ -1525,5 +1606,6 @@
      * @return string ハッシュ暗号化された文字列
      */
-    function sfGetHashString($str, $salt) {
+    function sfGetHashString($str, $salt)
+    {
         $res = '';
         if ($salt == '') {
@@ -1546,5 +1628,6 @@
      * @return boolean 一致判定
      */
-    function sfIsMatchHashPassword($pass, $hashpass, $salt) {
+    function sfIsMatchHashPassword($pass, $hashpass, $salt)
+    {
         $res = false;
         if ($hashpass != '') {
@@ -1577,5 +1660,6 @@
      * @return integer 1ページあたりの最大表示件数
      */
-    function sfGetSearchPageMax($search_page_max) {
+    function sfGetSearchPageMax($search_page_max)
+    {
         if (SC_Utils_Ex::sfIsInt($search_page_max) && $search_page_max > 0) {
             $page_max = intval($search_page_max);
@@ -1598,5 +1682,6 @@
      * @see Services_JSON::encode()
      */
-    function jsonEncode($value) {
+    function jsonEncode($value)
+    {
         if (function_exists('json_encode')) {
             return json_encode($value);
@@ -1620,5 +1705,6 @@
      * @see Services_JSON::decode()
      */
-    function jsonDecode($json) {
+    function jsonDecode($json)
+    {
         if (function_exists('json_decode')) {
             return json_decode($json);
@@ -1639,5 +1725,6 @@
      * @return boolean 絶対パスの場合 true
      */
-    function isAbsoluteRealPath($realpath) {
+    function isAbsoluteRealPath($realpath)
+    {
         if (strpos(PHP_OS, 'WIN') === false) {
             return substr($realpath, 0, 1) == '/';
@@ -1657,5 +1744,6 @@
      * @see http://jp.php.net/mkdir
      */
-    function recursiveMkdir($pathname, $mode = 0777) {
+    function recursiveMkdir($pathname, $mode = 0777)
+    {
         /*
          * SC_Utils_Ex への再帰は無限ループやメモリリークの懸念
@@ -1666,5 +1754,6 @@
     }
 
-    function isAppInnerUrl($url) {
+    function isAppInnerUrl($url)
+    {
         $pattern = '/^(' . preg_quote(HTTP_URL, '/') . '|' . preg_quote(HTTPS_URL, '/') . ')/';
         return preg_match($pattern, $url) >= 1;
@@ -1679,5 +1768,6 @@
      * @return boolean 成功=true, 失敗=false
      */
-    function extendTimeOut($seconds = null) {
+    function extendTimeOut($seconds = null)
+    {
         $safe_mode = (boolean)ini_get('safe_mode');
         if ($safe_mode) return false;
@@ -1701,5 +1791,6 @@
      * @return void
      */
-    function clearCompliedTemplate() {
+    function clearCompliedTemplate()
+    {
         // コンパイルファイルの削除処理
         SC_Helper_FileManager_Ex::deleteFile(COMPILE_REALDIR, false);
@@ -1715,5 +1806,6 @@
      * @return void
      */
-    function copyDirectory($source_path, $dest_path) {
+    function copyDirectory($source_path, $dest_path)
+    {
 
         $handle=opendir($source_path);  
@@ -1741,5 +1833,6 @@
      * @return string
      */
-    function repeatStrWithSeparator($input, $multiplier, $separator = ',') {
+    function repeatStrWithSeparator($input, $multiplier, $separator = ',')
+    {
         return implode($separator, array_fill(0, $multiplier, $input));
     }
@@ -1752,5 +1845,6 @@
      * @return string RFC3986エンコード文字列
      */
-    function encodeRFC3986($str) {
+    function encodeRFC3986($str)
+    {
         return str_replace('%7E', '~', rawurlencode($str));
     }
@@ -1763,5 +1857,6 @@
      * @return string 変更後の文字列
      */
-    static function trim($str, $charlist = null) {
+    static function trim($str, $charlist = null)
+    {
         $re = SC_Utils_Ex::getTrimPregPattern($charlist);
         return preg_replace('/(^' . $re . ')|(' . $re . '$)/us', '', $str);
@@ -1775,5 +1870,6 @@
      * @return string 変更後の文字列
      */
-    static function ltrim($str, $charlist = null) {
+    static function ltrim($str, $charlist = null)
+    {
         $re = SC_Utils_Ex::getTrimPregPattern($charlist);
         return preg_replace('/^' . $re . '/us', '', $str);
@@ -1787,5 +1883,6 @@
      * @return string 変更後の文字列
      */
-    static function rtrim($str, $charlist = null) {
+    static function rtrim($str, $charlist = null)
+    {
         $re = SC_Utils_Ex::getTrimPregPattern($charlist);
         return preg_replace('/' . $re . '$/us', '', $str);
@@ -1798,5 +1895,6 @@
      * @return string パターン
      */
-    static function getTrimPregPattern($charlist = null) {
+    static function getTrimPregPattern($charlist = null)
+    {
         if (is_null($charlist)) {
             return '\s+';
@@ -1812,5 +1910,6 @@
      * @return string
      */
-    function getUnitDataSize($data){
+    function getUnitDataSize($data)
+    {
 
         if($data < 1000){
Index: branches/version-2_12-dev/data/class/SC_MobileView.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_MobileView.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_MobileView.php	(revision 22567)
@@ -22,10 +22,13 @@
  */
 
-class SC_MobileView extends SC_SiteView_Ex {
-    function __construct($setPrevURL = true) {
+class SC_MobileView extends SC_SiteView_Ex 
+{
+    function __construct($setPrevURL = true)
+    {
         parent::__construct($setPrevURL);
     }
 
-    function init() {
+    function init()
+    {
         parent::init();
 
Index: branches/version-2_12-dev/data/class/SC_Display.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Display.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Display.php	(revision 22567)
@@ -28,5 +28,6 @@
  * @version $Id$
  */
-class SC_Display{
+class SC_Display
+{
 
     var $response;
@@ -49,5 +50,6 @@
      */
 
-    function __construct($hasPrevURL = true) {
+    function __construct($hasPrevURL = true)
+    {
         $this->response = new SC_Response_Ex();
         if ($hasPrevURL) {
@@ -56,5 +58,6 @@
     }
 
-    function setPrevURL() {
+    function setPrevURL()
+    {
         // TODO SC_SiteSession で実装した方が良さげ
         $objCartSess = new SC_CartSession_Ex();
@@ -68,5 +71,6 @@
      * @param $is_admin boolean 管理画面を扱う場合 true
      */
-    function prepare($page, $is_admin = false) {
+    function prepare($page, $is_admin = false)
+    {
         if (!$this->deviceSeted || !is_null($this->view)) {
             $device = ($is_admin) ? DEVICE_TYPE_ADMIN : $this->detectDevice();
@@ -83,9 +87,11 @@
      * SC_Response::reload() のラッパーです.
      */
-    function reload($queryString = array(), $removeQueryString = false) {
+    function reload($queryString = array(), $removeQueryString = false)
+    {
         $this->response->reload($queryString, $removeQueryString);
     }
 
-    function noAction() {
+    function noAction()
+    {
         return;
     }
@@ -94,5 +100,6 @@
      * ヘッダを追加する.
      */
-    function addHeader($name, $value) {
+    function addHeader($name, $value)
+    {
         $this->response->addHeader($name, $value);
     }
@@ -102,5 +109,6 @@
      * Enter description here ...
      */
-    function setDevice($device = DEVICE_TYPE_PC) {
+    function setDevice($device = DEVICE_TYPE_PC)
+    {
 
         switch ($device) {
@@ -127,5 +135,6 @@
      * SC_View インスタンスを設定する.
      */
-    function setView($view) {
+    function setView($view)
+    {
         $this->view = $view;
     }
@@ -142,5 +151,6 @@
      * @return integer 端末種別ID
      */
-    public static function detectDevice($reset = FALSE) {
+    public static function detectDevice($reset = FALSE)
+    {
         if (is_null(SC_Display_Ex::$device) || $reset) {
             $nu = new Net_UserAgent_Mobile();
@@ -157,13 +167,16 @@
     }
 
-    function assign($val1,$val2) {
+    function assign($val1,$val2)
+    {
         $this->view->assign($val1, $val2);
     }
 
-    function assignobj($obj) {
+    function assignobj($obj)
+    {
         $this->view->assignobj($obj);
     }
 
-    function assignarray($array) {
+    function assignarray($array)
+    {
         $this->view->assignarray($array);
     }
Index: branches/version-2_12-dev/data/class/batch/SC_Batch_Update.php
===================================================================
--- branches/version-2_12-dev/data/class/batch/SC_Batch_Update.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/batch/SC_Batch_Update.php	(revision 22567)
@@ -31,5 +31,6 @@
  * @version $Id$
  */
-class SC_Batch_Update extends SC_Batch {
+class SC_Batch_Update extends SC_Batch 
+{
 
     /**
@@ -49,5 +50,6 @@
      * @return void
      */
-    function execute($target = '.') {
+    function execute($target = '.')
+    {
         $msg = '';
         $oldMask = umask(0);
@@ -196,5 +198,6 @@
      * @see http://www.php.net/glob
      */
-    function listdirs($dir) {
+    function listdirs($dir)
+    {
         static $alldirs = array();
         $dirs = glob($dir . '/*');
@@ -213,5 +216,6 @@
      * @param string $path 絶対パス
      */
-    function lfMkdirRecursive($path) {
+    function lfMkdirRecursive($path)
+    {
         $path = dirname($path);
 
@@ -236,5 +240,6 @@
     }
 
-    function makeDistInfo($bkupDistInfoArray) {
+    function makeDistInfo($bkupDistInfoArray)
+    {
         $src = "<?php\n"
              . '$distifo = array(' . "\n";
@@ -248,5 +253,6 @@
     }
 
-    function printLog($msg) {
+    function printLog($msg)
+    {
         GC_Utils_Ex::gfPrintLog($msg, DATA_REALDIR . 'logs/ownersstore_batch_update.log');
     }
Index: branches/version-2_12-dev/data/class/SC_SiteSession.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SiteSession.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_SiteSession.php	(revision 22567)
@@ -23,7 +23,9 @@
 
 /* カートセッション管理クラス */
-class SC_SiteSession {
+class SC_SiteSession 
+{
     /* コンストラクタ */
-    function __construct() {
+    function __construct()
+    {
         // 前ページでの登録成功判定を引き継ぐ
         $_SESSION['site']['pre_regist_success'] =
@@ -40,5 +42,6 @@
 
     /* 前ページが正当であるかの判定 */
-    function isPrePage() {
+    function isPrePage()
+    {
         if ($_SESSION['site']['pre_page'] != '' && $_SESSION['site']['now_page'] != '') {
             if ($_SESSION['site']['pre_regist_success'] || $_SESSION['site']['pre_page'] == $_SESSION['site']['now_page']) {
@@ -49,15 +52,18 @@
     }
 
-    function setNowPage($path) {
+    function setNowPage($path)
+    {
         $_SESSION['site']['now_page'] = $path;
     }
 
     /* 値の取得 */
-    function getValue($keyname) {
+    function getValue($keyname)
+    {
         return $_SESSION['site'][$keyname];
     }
 
     /* ユニークIDの取得 */
-    function getUniqId() {
+    function getUniqId()
+    {
         // ユニークIDがセットされていない場合はセットする。
         if (!isset($_SESSION['site']['uniqid']) || $_SESSION['site']['uniqid'] == '') {
@@ -68,5 +74,6 @@
 
     /* ユニークIDのセット */
-    function setUniqId() {
+    function setUniqId()
+    {
         // 予測されないようにランダム文字列を付与する。
         $_SESSION['site']['uniqid'] = SC_Utils_Ex::sfGetUniqRandomId();
@@ -74,5 +81,6 @@
 
     /* ユニークIDのチェック */
-    function checkUniqId() {
+    function checkUniqId()
+    {
         if (!empty($_POST['uniqid'])) {
             if ($_POST['uniqid'] != $_SESSION['site']['uniqid']) {
@@ -84,10 +92,12 @@
 
     /* ユニークIDの解除 */
-    function unsetUniqId() {
+    function unsetUniqId()
+    {
         $_SESSION['site']['uniqid'] = '';
     }
 
     /* 登録成功を記録 */
-    function setRegistFlag() {
+    function setRegistFlag()
+    {
         $_SESSION['site']['regist_success'] = true;
     }
Index: branches/version-2_12-dev/data/class/SC_Cookie.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Cookie.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Cookie.php	(revision 22567)
@@ -26,10 +26,12 @@
  *
  */
-class SC_Cookie {
+class SC_Cookie 
+{
 
     var $expire;
 
     // コンストラクタ
-    function __construct($day = COOKIE_EXPIRE) {
+    function __construct($day = COOKIE_EXPIRE)
+    {
         // 有効期限
         $this->expire = time() + ($day * 24 * 3600);
@@ -37,5 +39,6 @@
 
     // クッキー書き込み
-    function setCookie($key, $val) {
+    function setCookie($key, $val)
+    {
         setcookie($key, $val, $this->expire, ROOT_URLPATH, DOMAIN_NAME);
     }
@@ -46,5 +49,6 @@
      * EC-CUBE をURLパスルート以外にインストールしている場合、上位ディレクトリの値も(劣後ではあるが)取得する点に留意。
      */
-    function getCookie($key) {
+    function getCookie($key)
+    {
         return isset($_COOKIE[$key]) ? $_COOKIE[$key] : null;
     }
Index: branches/version-2_12-dev/data/class/db/SC_DB_MasterData.php
===================================================================
--- branches/version-2_12-dev/data/class/db/SC_DB_MasterData.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/db/SC_DB_MasterData.php	(revision 22567)
@@ -42,5 +42,6 @@
  * @version $Id:SC_DB_MasterData.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_DB_MasterData {
+class SC_DB_MasterData 
+{
 
     // {{{ properties
@@ -70,5 +71,6 @@
      * @return array マスターデータ
      */
-    function getMasterData($name, $columns = array()) {
+    function getMasterData($name, $columns = array())
+    {
 
         $columns = $this->getDefaultColumnName($columns);
@@ -102,5 +104,6 @@
      * @return integer マスターデータの登録数
      */
-    function registMasterData($name, $columns, $masterData, $autoCommit = true) {
+    function registMasterData($name, $columns, $masterData, $autoCommit = true)
+    {
 
         $columns = $this->getDefaultColumnName($columns);
@@ -137,5 +140,6 @@
      * @return integer マスターデータの更新数
      */
-    function updateMasterData($name, $columns, $masterData, $autoCommit = true) {
+    function updateMasterData($name, $columns, $masterData, $autoCommit = true)
+    {
 
         $columns = $this->getDefaultColumnName($columns);
@@ -171,5 +175,6 @@
      * @return integer マスターデータの更新数
      */
-    function insertMasterData($name, $key, $value, $comment, $autoCommit = true) {
+    function insertMasterData($name, $key, $value, $comment, $autoCommit = true)
+    {
 
         $columns = $this->getDefaultColumnName();
@@ -203,5 +208,6 @@
      * @return integer マスターデータの削除数
      */
-    function deleteMasterData($name, $autoCommit = true) {
+    function deleteMasterData($name, $autoCommit = true)
+    {
         $this->objQuery =& SC_Query_Ex::getSingletonInstance();
         if ($autoCommit) {
@@ -225,5 +231,6 @@
      * @return bool 消去した場合 true
      */
-    function clearCache($name) {
+    function clearCache($name)
+    {
         $masterDataFile = MASTER_DATA_REALDIR . $name . '.php';
         if (is_file($masterDataFile)) {
@@ -252,5 +259,6 @@
      * @return bool キャッシュの生成に成功した場合 true
      */
-    function createCache($name, $columns = array(), $isDefine = false, $commentColumn = array()) {
+    function createCache($name, $columns = array(), $isDefine = false, $commentColumn = array())
+    {
 
         // マスターデータを取得
@@ -301,5 +309,6 @@
      * @return array マスターデータ
      */
-    function getDbMasterData($name, $columns = array()) {
+    function getDbMasterData($name, $columns = array())
+    {
 
         $columns = $this->getDefaultColumnName($columns);
@@ -333,5 +342,6 @@
      * @return array カラム名を格納した配列
      */
-    function getDefaultColumnName($columns = array()) {
+    function getDefaultColumnName($columns = array())
+    {
 
         if (!empty($columns)) {
@@ -350,5 +360,6 @@
      * @return string 定数定義の文字列
      */
-    function getMasterDataAsDefine($masterData, $comments = array()) {
+    function getMasterDataAsDefine($masterData, $comments = array())
+    {
         $data = '';
         foreach ($masterData as $key => $val) {
Index: branches/version-2_12-dev/data/class/db/SC_DB_DBFactory.php
===================================================================
--- branches/version-2_12-dev/data/class/db/SC_DB_DBFactory.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/db/SC_DB_DBFactory.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id:SC_DB_DBFactory.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_DB_DBFactory {
+class SC_DB_DBFactory 
+{
 
     /**
@@ -37,5 +38,6 @@
      * @return mixed DBFactory インスタンス
      */
-    function getInstance($db_type = DB_TYPE) {
+    function getInstance($db_type = DB_TYPE)
+    {
         switch ($db_type) {
             case 'mysql':
@@ -60,5 +62,6 @@
      * @return mixed データソース名またはDB接続パラメータの連想配列
      */
-    function getDSN($dsn = '') {
+    function getDSN($dsn = '')
+    {
         if (empty($dsn)) {
             if (defined('DEFAULT_DSN')) {
@@ -84,5 +87,6 @@
      * @return string データベースのバージョン
      */
-    function sfGetDBVersion($dsn = '') { return null; }
+    function sfGetDBVersion($dsn = '')
+    { return null; }
 
     /**
@@ -92,5 +96,6 @@
      * @return string MySQL 用に置換した SQL 文
      */
-    function sfChangeMySQL($sql) { return null; }
+    function sfChangeMySQL($sql)
+    { return null; }
 
     /**
@@ -100,5 +105,6 @@
      * @return string 昨日の売上高・売上件数を算出する SQL
      */
-    function getOrderYesterdaySql($method) { return null; }
+    function getOrderYesterdaySql($method)
+    { return null; }
 
     /**
@@ -108,5 +114,6 @@
      * @return string 当月の売上高・売上件数を算出する SQL
      */
-    function getOrderMonthSql($method) { return null; }
+    function getOrderMonthSql($method)
+    { return null; }
 
     /**
@@ -115,5 +122,6 @@
      * @return string 昨日のレビュー書き込み件数を算出する SQL
      */
-    function getReviewYesterdaySql() { return null; }
+    function getReviewYesterdaySql()
+    { return null; }
 
     /**
@@ -122,5 +130,6 @@
      * @return string 検索条件の SQL
      */
-    function getSendHistoryWhereStartdateSql() { return null; }
+    function getSendHistoryWhereStartdateSql()
+    { return null; }
 
     /**
@@ -129,5 +138,6 @@
      * @return string 検索条件の SQL
      */
-    function getDownloadableDaysWhereSql() { return null; }
+    function getDownloadableDaysWhereSql()
+    { return null; }
 
     /**
@@ -137,5 +147,6 @@
      * @return string 連結後の SQL 文
      */
-    function concatColumn($columns) { return null; }
+    function concatColumn($columns)
+    { return null; }
 
     /**
@@ -148,5 +159,6 @@
      * @return array テーブル名の配列
      */
-    function findTableNames($expression = '') { return array(); }
+    function findTableNames($expression = '')
+    { return array(); }
 
     /**
@@ -159,5 +171,6 @@
      * @return array インデックス設定情報配列
      */
-    function sfGetCreateIndexDefinition($table, $name, $definition) { return $definition; }
+    function sfGetCreateIndexDefinition($table, $name, $definition)
+    { return $definition; }
 
     /**
@@ -167,5 +180,6 @@
      * @return void
      */
-    function initObjQuery(SC_Query &$objQuery) {
+    function initObjQuery(SC_Query &$objQuery)
+    {
     }
 
@@ -175,5 +189,6 @@
      * @return array テーブル名の配列
      */
-    function listTables(SC_Query &$objQuery) {
+    function listTables(SC_Query &$objQuery)
+    {
         $objManager =& $objQuery->conn->loadModule('Manager');
         return $objManager->listTables();
Index: branches/version-2_12-dev/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php
===================================================================
--- branches/version-2_12-dev/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id:SC_DB_DBFactory_MYSQL.php 15267 2007-08-09 12:31:52Z nanasess $
  */
-class SC_DB_DBFactory_MYSQL extends SC_DB_DBFactory {
+class SC_DB_DBFactory_MYSQL extends SC_DB_DBFactory 
+{
 
     /** SC_Query インスタンス */
@@ -44,5 +45,6 @@
      * @return string データベースのバージョン
      */
-    function sfGetDBVersion($dsn = '') {
+    function sfGetDBVersion($dsn = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance($dsn);
         $val = $objQuery->getOne('select version()');
@@ -57,5 +59,6 @@
      * @return string MySQL 用に置換した SQL 文
      */
-    function sfChangeMySQL($sql) {
+    function sfChangeMySQL($sql)
+    {
         // 改行、タブを1スペースに変換
         $sql = preg_replace("/[\r\n\t]/",' ',$sql);
@@ -76,5 +79,6 @@
      * @return array 文字コード情報
      */
-    function getCharSet() {
+    function getCharSet()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrRet = $objQuery->getAll("SHOW VARIABLES LIKE 'char%'");
@@ -88,5 +92,6 @@
      * @return string 昨日の売上高・売上件数を算出する SQL
      */
-    function getOrderYesterdaySql($method) {
+    function getOrderYesterdaySql($method)
+    {
         return 'SELECT ' . $method . '(total) FROM dtb_order '
                . 'WHERE del_flg = 0 '
@@ -101,5 +106,6 @@
      * @return string 当月の売上高・売上件数を算出する SQL
      */
-    function getOrderMonthSql($method) {
+    function getOrderMonthSql($method)
+    {
         return 'SELECT '.$method.'(total) FROM dtb_order '
                . 'WHERE del_flg = 0 '
@@ -114,5 +120,6 @@
      * @return string 昨日のレビュー書き込み件数を算出する SQL
      */
-    function getReviewYesterdaySql() {
+    function getReviewYesterdaySql()
+    {
         return 'SELECT COUNT(*) FROM dtb_review AS A '
                . 'LEFT JOIN dtb_products AS B '
@@ -129,5 +136,6 @@
      * @return string 検索条件の SQL
      */
-    function getSendHistoryWhereStartdateSql() {
+    function getSendHistoryWhereStartdateSql()
+    {
         return 'start_date BETWEEN date_add(CURRENT_TIMESTAMP,INTERVAL -5 minute) AND date_add(CURRENT_TIMESTAMP,INTERVAL 5 minute)';
     }
@@ -139,5 +147,6 @@
      * @return string 検索条件の SQL
      */
-    function getDownloadableDaysWhereSql($dtb_order_alias = 'dtb_order') {
+    function getDownloadableDaysWhereSql($dtb_order_alias = 'dtb_order')
+    {
         return '(SELECT IF((SELECT d1.downloadable_days_unlimited FROM dtb_baseinfo d1)=1, 1, DATE(CURRENT_TIMESTAMP) <= DATE(DATE_ADD(' . $dtb_order_alias . '.payment_date, INTERVAL (SELECT downloadable_days FROM dtb_baseinfo) DAY))))';
     }
@@ -149,5 +158,6 @@
      * @return string 検索条件のSQL
      */
-    function getOrderTotalDaysWhereSql($type) {
+    function getOrderTotalDaysWhereSql($type)
+    {
         switch ($type) {
             case 'month':
@@ -185,5 +195,6 @@
      * @return string 年代抽出部分の SQL
      */
-    function getOrderTotalAgeColSql() {
+    function getOrderTotalAgeColSql()
+    {
         return 'TRUNC((YEAR(create_date) - YEAR(order_birth)) - (RIGHT(create_date, 5) < RIGHT(order_birth, 5)), -1)';
     }
@@ -195,5 +206,6 @@
      * @return string 連結後の SQL 文
      */
-    function concatColumn($columns) {
+    function concatColumn($columns)
+    {
         $sql = 'concat(';
         $i = 0;
@@ -218,5 +230,6 @@
      * @return array テーブル名の配列
      */
-    function findTableNames($expression = '') {
+    function findTableNames($expression = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $sql = 'SHOW TABLES LIKE '. $objQuery->quote('%' . $expression . '%');
@@ -233,5 +246,6 @@
      * @return string 変換後の SQL 文
      */
-    function sfChangeILIKE($sql) {
+    function sfChangeILIKE($sql)
+    {
         $changesql = preg_replace('/(^|[^\w])ILIKE([^\w]|$)/i', '$1LIKE$2', $sql);
         return $changesql;
@@ -245,5 +259,6 @@
      * @return string 変換後の SQL 文
      */
-    function sfChangeRANDOM($sql) {
+    function sfChangeRANDOM($sql)
+    {
         $changesql = preg_replace('/(^|[^\w])RANDOM\(/i', '$1RAND(', $sql);
         return $changesql;
@@ -257,5 +272,6 @@
      * @return string 変換後の SQL 文
      */
-    function sfChangeTrunc($sql) {
+    function sfChangeTrunc($sql)
+    {
         $changesql = preg_replace('/(^|[^\w])TRUNC([^\w]|$)/i', '$1TRUNCATE$2', $sql);
         return $changesql;
@@ -269,5 +285,6 @@
      * @return string 変換後の SQL 文
      */
-    function sfChangeArrayToString($sql) {
+    function sfChangeArrayToString($sql)
+    {
         if (strpos(strtoupper($sql), 'ARRAY_TO_STRING') !== FALSE) {
             preg_match_all('/ARRAY_TO_STRING.*?\(.*?ARRAY\(.*?SELECT (.+?) FROM (.+?) WHERE (.+?)\).*?\,.*?\'(.+?)\'.*?\)/is', $sql, $match, PREG_SET_ORDER);
@@ -290,5 +307,6 @@
      * @return array インデックス設定情報配列
      */
-    function sfGetCreateIndexDefinition($table, $name, $definition) {
+    function sfGetCreateIndexDefinition($table, $name, $definition)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrTblInfo = $objQuery->getTableInfo($table);
@@ -310,5 +328,6 @@
      * @return string
      */
-    function getDummyFromClauseSql() {
+    function getDummyFromClauseSql()
+    {
         return 'FROM DUAL';
     }
@@ -320,5 +339,6 @@
      * @return void
      */
-    function initObjQuery(SC_Query &$objQuery) {
+    function initObjQuery(SC_Query &$objQuery)
+    {
         $objQuery->exec('SET SESSION storage_engine = InnoDB');
         $objQuery->exec("SET SESSION sql_mode = 'ANSI'");
Index: branches/version-2_12-dev/data/class/db/dbfactory/SC_DB_DBFactory_PGSQL.php
===================================================================
--- branches/version-2_12-dev/data/class/db/dbfactory/SC_DB_DBFactory_PGSQL.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/db/dbfactory/SC_DB_DBFactory_PGSQL.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id:SC_DB_DBFactory_PGSQL.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_DB_DBFactory_PGSQL extends SC_DB_DBFactory {
+class SC_DB_DBFactory_PGSQL extends SC_DB_DBFactory 
+{
 
     /**
@@ -41,5 +42,6 @@
      * @return string データベースのバージョン
      */
-    function sfGetDBVersion($dsn = '') {
+    function sfGetDBVersion($dsn = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance($dsn);
         $val = $objQuery->getOne('select version()');
@@ -57,5 +59,6 @@
      * @return string MySQL 用に置換した SQL 文
      */
-    function sfChangeMySQL($sql) {
+    function sfChangeMySQL($sql)
+    {
         return $sql;
     }
@@ -67,5 +70,6 @@
      * @return string 昨日の売上高・売上件数を算出する SQL
      */
-    function getOrderYesterdaySql($method) {
+    function getOrderYesterdaySql($method)
+    {
         return 'SELECT '.$method.'(total) FROM dtb_order '
                . 'WHERE del_flg = 0 '
@@ -80,5 +84,6 @@
      * @return string 当月の売上高・売上件数を算出する SQL
      */
-    function getOrderMonthSql($method) {
+    function getOrderMonthSql($method)
+    {
         return 'SELECT '.$method.'(total) FROM dtb_order '
                . 'WHERE del_flg = 0 '
@@ -93,5 +98,6 @@
      * @return string 昨日のレビュー書き込み件数を算出する SQL
      */
-    function getReviewYesterdaySql() {
+    function getReviewYesterdaySql()
+    {
         return 'SELECT COUNT(*) FROM dtb_review AS A '
                . 'LEFT JOIN dtb_products AS B '
@@ -108,5 +114,6 @@
      * @return string 検索条件の SQL
      */
-    function getSendHistoryWhereStartdateSql() {
+    function getSendHistoryWhereStartdateSql()
+    {
         return "start_date BETWEEN current_timestamp + '- 5 minutes' AND current_timestamp + '5 minutes'";
     }
@@ -118,5 +125,6 @@
      * @return string 検索条件の SQL
      */
-    function getDownloadableDaysWhereSql($dtb_order_alias = 'dtb_order') {
+    function getDownloadableDaysWhereSql($dtb_order_alias = 'dtb_order')
+    {
         $baseinfo = SC_Helper_DB_Ex::sfGetBasisData();
         //downloadable_daysにNULLが入っている場合(無期限ダウンロード可能時)もあるので、NULLの場合は0日に補正
@@ -145,5 +153,6 @@
      * @return string 検索条件のSQL
      */
-    function getOrderTotalDaysWhereSql($type) {
+    function getOrderTotalDaysWhereSql($type)
+    {
         switch ($type) {
             case 'month':
@@ -181,5 +190,6 @@
      * @return string 年代抽出部分の SQL
      */
-    function getOrderTotalAgeColSql() {
+    function getOrderTotalAgeColSql()
+    {
         return 'TRUNC(CAST(EXTRACT(YEAR FROM AGE(create_date, order_birth)) AS INT), -1)';
     }
@@ -191,5 +201,6 @@
      * @return string 連結後の SQL 文
      */
-    function concatColumn($columns) {
+    function concatColumn($columns)
+    {
         $sql = '';
         $i = 0;
@@ -214,5 +225,6 @@
      * @return array テーブル名の配列
      */
-    function findTableNames($expression = '') {
+    function findTableNames($expression = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $sql = '   SELECT c.relname AS name, '
@@ -238,5 +250,6 @@
      * @return array 文字コード情報
      */
-    function getCharSet() {
+    function getCharSet()
+    {
         // 未実装
         return array();
@@ -248,5 +261,6 @@
      * @return string
      */
-    function getDummyFromClauseSql() {
+    function getDummyFromClauseSql()
+    {
         return '';
     }
@@ -258,5 +272,6 @@
      * @return array テーブル名の配列
      */
-    function listTables(SC_Query &$objQuery) {
+    function listTables(SC_Query &$objQuery)
+    {
         $col = 'tablename';
         $from = 'pg_tables';
Index: branches/version-2_12-dev/data/class/SC_MobileImage.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_MobileImage.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_MobileImage.php	(revision 22567)
@@ -30,5 +30,6 @@
  * 画像変換クラス
  */
-class SC_MobileImage {
+class SC_MobileImage 
+{
     /**
      * 画像を端末の解像度に合わせて変換する
@@ -38,5 +39,6 @@
      * @return string 出力
      */
-    static function handler($buffer) {
+    static function handler($buffer)
+    {
 
         // 端末情報を取得する
Index: branches/version-2_12-dev/data/class/SC_View.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_View.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_View.php	(revision 22567)
@@ -24,5 +24,6 @@
 require_once realpath(dirname(__FILE__)) . '/../module/Smarty/libs/Smarty.class.php';
 
-class SC_View {
+class SC_View 
+{
 
     var $_smarty;
@@ -31,9 +32,11 @@
 
     // コンストラクタ
-    function __construct() {
+    function __construct()
+    {
         $this->init();
     }
 
-    function init() {
+    function init()
+    {
         $this->_smarty = new Smarty;
         $this->_smarty->left_delimiter = '<!--{';
@@ -73,10 +76,12 @@
 
     // テンプレートに値を割り当てる
-    function assign($val1, $val2) {
+    function assign($val1, $val2)
+    {
         $this->_smarty->assign($val1, $val2);
     }
 
     // テンプレートの処理結果を取得
-    function fetch($template) {
+    function fetch($template)
+    {
         return $this->_smarty->fetch($template);
     }
@@ -89,5 +94,6 @@
      * @return string
      */
-    function getResponse($template, $no_error = false) {
+    function getResponse($template, $no_error = false)
+    {
         if (!$no_error) {
             global $GLOBAL_ERR;
@@ -112,5 +118,6 @@
      * @return void
      */
-    function setPage($objPage) {
+    function setPage($objPage)
+    {
        $this->objPage = $objPage;
     }
@@ -120,5 +127,6 @@
      * @return void
      */
-    function registFilter() {
+    function registFilter()
+    {
         $this->_smarty->register_prefilter(array(&$this, 'prefilter_transform'));
         $this->_smarty->register_outputfilter(array(&$this, 'outputfilter_transform'));
@@ -131,5 +139,6 @@
      * @return string $source ソース
      */
-    function prefilter_transform($source, &$smarty) {
+    function prefilter_transform($source, &$smarty)
+    {
         if (!is_null($this->objPage)) {
             // フックポイントを実行.
@@ -146,5 +155,6 @@
      * @return string $source ソース
      */
-    function outputfilter_transform($source, &$smarty) {
+    function outputfilter_transform($source, &$smarty)
+    {
         if (!is_null($this->objPage)) {
             // フックポイントを実行.
@@ -156,5 +166,6 @@
 
     // テンプレートの処理結果を表示
-    function display($template, $no_error = false) {
+    function display($template, $no_error = false)
+    {
         if (!$no_error) {
             global $GLOBAL_ERR;
@@ -175,5 +186,6 @@
 
     // オブジェクト内の変数をすべて割り当てる。
-    function assignobj($obj) {
+    function assignobj($obj)
+    {
         $data = get_object_vars($obj);
 
@@ -184,5 +196,6 @@
 
     // 連想配列内の変数をすべて割り当てる。
-    function assignarray($array) {
+    function assignarray($array)
+    {
         foreach ($array as $key => $val) {
             $this->_smarty->assign($key, $val);
@@ -195,5 +208,6 @@
      * @param integer $device_type_id 端末種別ID
      */
-    function assignTemplatePath($device_type_id) {
+    function assignTemplatePath($device_type_id)
+    {
 
         // テンプレート変数を割り当て
@@ -210,5 +224,6 @@
 
     // デバッグ
-    function debug($var = true) {
+    function debug($var = true)
+    {
         $this->_smarty->debugging = $var;
     }
Index: branches/version-2_12-dev/data/class/SC_SessionFactory.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SessionFactory.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_SessionFactory.php	(revision 22567)
@@ -42,5 +42,6 @@
  * @version $Id$
  */
-class SC_SessionFactory {
+class SC_SessionFactory 
+{
 
     // }}}
@@ -52,5 +53,6 @@
      * @return SC_SessionFactory
      */
-    function getInstance() {
+    function getInstance()
+    {
 
         $type = defined('SESSION_KEEP_METHOD')
@@ -87,5 +89,6 @@
      *
      */
-    function initSession() {}
+    function initSession()
+    {}
 
     /**
@@ -94,5 +97,6 @@
      * @return boolean
      */
-    function useCookie() {}
+    function useCookie()
+    {}
 
 }
Index: branches/version-2_12-dev/data/class/SC_Date.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Date.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Date.php	(revision 22567)
@@ -23,5 +23,6 @@
 
 /* 日時表示用クラス */
-class SC_Date {
+class SC_Date 
+{
     var $start_year;
     var $month;
@@ -30,30 +31,37 @@
 
     // コンストラクタ
-    function __construct($start_year='', $end_year='') {
+    function __construct($start_year='', $end_year='')
+    {
         if ($start_year)  $this->setStartYear($start_year);
         if ($end_year)    $this->setEndYear($end_year);
     }
 
-    function setStartYear($year) {
+    function setStartYear($year)
+    {
         $this->start_year = $year;
     }
 
-    function getStartYear() {
+    function getStartYear()
+    {
         return $this->start_year;
     }
 
-    function setEndYear($endYear) {
+    function setEndYear($endYear)
+    {
         $this->end_year = $endYear;
     }
 
-    function getEndYear() {
+    function getEndYear()
+    {
         return $this->end_year;
     }
 
-    function setMonth($month) {
+    function setMonth($month)
+    {
         $this->month = $month;
     }
 
-    function setDay($day) {
+    function setDay($day)
+    {
         $this->day = $day;
     }
@@ -69,5 +77,6 @@
      * @param string $default_key
      */
-    function getYear($year = '', $default_year = false, $default_key = '----') {
+    function getYear($year = '', $default_year = false, $default_key = '----')
+    {
         if ($year) $this->setStartYear($year);
 
@@ -93,5 +102,6 @@
     }
 
-    function getZeroYear($year = '') {
+    function getZeroYear($year = '')
+    {
         if ($year) $this->setStartYear($year);
 
@@ -111,5 +121,6 @@
     }
 
-    function getZeroMonth() {
+    function getZeroMonth()
+    {
 
         $month_array = array();
@@ -121,5 +132,6 @@
     }   
 
-    function getMonth($default = false) {
+    function getMonth($default = false)
+    {
         $month_array = array();
 
@@ -132,5 +144,6 @@
     }   
 
-    function getDay($default = false) {
+    function getDay($default = false)
+    {
         $day_array = array();
 
@@ -144,5 +157,6 @@
     }
 
-    function getHour() {
+    function getHour()
+    {
 
         $hour_array = array();
@@ -154,5 +168,6 @@
     }
 
-    function getMinutes() {
+    function getMinutes()
+    {
 
         $minutes_array = array();
@@ -164,5 +179,6 @@
     }
 
-    function getMinutesInterval() {
+    function getMinutesInterval()
+    {
 
         $minutes_array = array('00'=>'00', '30'=>'30');
Index: branches/version-2_12-dev/data/class/SC_Fpdf.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Fpdf.php	(revision 22250)
+++ branches/version-2_12-dev/data/class/SC_Fpdf.php	(revision 22567)
@@ -30,6 +30,8 @@
 define('PDF_TEMPLATE_REALDIR', TEMPLATE_ADMIN_REALDIR . 'pdf/');
 
-class SC_Fpdf extends SC_Helper_FPDI {
-    function __construct($download, $title, $tpl_pdf = 'nouhinsyo1.pdf') {
+class SC_Fpdf extends SC_Helper_FPDI 
+{
+    function __construct($download, $title, $tpl_pdf = 'nouhinsyo1.pdf')
+    {
         $this->FPDF();
         // デフォルトの設定
@@ -67,5 +69,6 @@
     }
 
-    function setData($arrData) {
+    function setData($arrData)
+    {
         $this->arrData = $arrData;
 
@@ -93,5 +96,6 @@
     }
 
-    function setShopData() {
+    function setShopData()
+    {
         // ショップ情報
 
@@ -130,5 +134,6 @@
     }
 
-    function setMessageData() {
+    function setMessageData()
+    {
         // メッセージ
         $this->lfText(27, 70, $this->arrData['msg1'], 8);  //メッセージ1
@@ -139,5 +144,6 @@
     }
 
-    function setOrderData() {
+    function setOrderData()
+    {
         $arrOrder = array();
         // DBから受注情報を読み込む
@@ -264,5 +270,6 @@
      * @return string 変更後の文字列
      */
-    function setEtcData() {
+    function setEtcData()
+    {
         $this->Cell(0, 10, '', 0, 1, 'C', 0, '');
         $this->SetFont('Gothic', 'B', 9);
@@ -273,5 +280,6 @@
     }
 
-    function createPdf() {
+    function createPdf()
+    {
         // PDFをブラウザに送信
         ob_clean();
@@ -292,5 +300,6 @@
 
     // PDF_Japanese::Text へのパーサー
-    function lfText($x, $y, $text, $size = 0, $style = '') {
+    function lfText($x, $y, $text, $size = 0, $style = '')
+    {
         // 退避
         $bak_font_style = $this->FontStyle;
@@ -305,5 +314,6 @@
 
     // 受注データの取得
-    function lfGetOrderData($order_id) {
+    function lfGetOrderData($order_id)
+    {
         if (SC_Utils_Ex::sfIsInt($order_id)) {
             // DBから受注情報を読み込む
@@ -329,5 +339,6 @@
 
     // 受注詳細データの取得
-    function lfGetOrderDetail($order_id) {
+    function lfGetOrderDetail($order_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'product_id, product_class_id, product_code, product_name, classcategory_name1, classcategory_name2, price, quantity, point_rate, tax_rate, tax_rule';
Index: branches/version-2_12-dev/data/class/SC_Batch.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Batch.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Batch.php	(revision 22567)
@@ -29,5 +29,6 @@
  * @version $Id$
  */
-class SC_Batch {
+class SC_Batch 
+{
 
     // }}}
@@ -40,4 +41,5 @@
      * @return mixed バッチの実行結果
      */
-    function execute($argv = '') {}
+    function execute($argv = '')
+    {}
 }
Index: branches/version-2_12-dev/data/class/SC_Image.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Image.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Image.php	(revision 22567)
@@ -23,9 +23,11 @@
 
 //---- アップロードファイル加工クラス(thumb.phpとセットで使用する)
-class SC_Image {
+class SC_Image 
+{
 
     var $tmp_dir;
 
-    function __construct($tmp_dir) {
+    function __construct($tmp_dir)
+    {
         // ヘッダファイル読込
         $this->tmp_dir = rtrim($tmp_dir, '/') . '/';
@@ -33,5 +35,6 @@
 
     //--- 一時ファイル生成(サムネイル画像生成用)
-    function makeTempImage($keyname, $max_width, $max_height) {
+    function makeTempImage($keyname, $max_width, $max_height)
+    {
         // 一意なIDを取得する。
         $mainname = uniqid('').'.';
@@ -44,5 +47,6 @@
 
     //--- ファイルを指定保存DIRへ移動
-    function moveTempImage($filename, $save_dir) {
+    function moveTempImage($filename, $save_dir)
+    {
         // コピー元ファイル、コピー先ディレクトリが存在する場合にのみ実行する
         $from_path = $this->tmp_dir.$filename;
@@ -58,5 +62,6 @@
 
     //---- 指定ファイルを削除
-    function deleteImage($filename, $dir) {
+    function deleteImage($filename, $dir)
+    {
         if (file_exists($dir.'/'.$filename)) {
             unlink($dir.'/'.$filename);
@@ -74,5 +79,6 @@
      * @param array 新ファイル名を格納した配列
      */
-    function MakeThumb($FromImgPath , $ToImgPath , $tmpMW , $tmpMH, $newFileName = '') {
+    function MakeThumb($FromImgPath , $ToImgPath , $tmpMW , $tmpMH, $newFileName = '')
+    {
         // 画像の最大横幅（単位：ピクセル）
         $ThmMaxWidth = LARGE_IMAGE_WIDTH;
Index: branches/version-2_12-dev/data/class/plugin/SC_Plugin_Base.php
===================================================================
--- branches/version-2_12-dev/data/class/plugin/SC_Plugin_Base.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/plugin/SC_Plugin_Base.php	(revision 22567)
@@ -31,5 +31,6 @@
  * @version $Id: $
  */
-abstract class SC_Plugin_Base {
+abstract class SC_Plugin_Base 
+{
 
     protected $arrSelfInfo;
@@ -41,5 +42,6 @@
      * @return void
      */
-    function __construct(array $arrSelfInfo) {
+    function __construct(array $arrSelfInfo)
+    {
         $this->arrSelfInfo = $arrSelfInfo;
     }
@@ -90,5 +92,6 @@
      * @param integer $priority
      */
-    function register(SC_Helper_Plugin $objHelperPlugin, $priority) {
+    function register(SC_Helper_Plugin $objHelperPlugin, $priority)
+    {
         if (isset($this->arrSelfInfo['plugin_hook_point'])) {
             $arrHookPoints = $this->arrSelfInfo['plugin_hook_point'];
@@ -108,5 +111,6 @@
      * @return array $arrSelfInfo 自身のプラグイン情報
      */
-    function getPluginInfo() {
+    function getPluginInfo()
+    {
         return $this->arrSelfInfo;
     }
Index: branches/version-2_12-dev/data/class/plugin/SC_Plugin_Util.php
===================================================================
--- branches/version-2_12-dev/data/class/plugin/SC_Plugin_Util.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/plugin/SC_Plugin_Util.php	(revision 22567)
@@ -23,10 +23,12 @@
 
 // プラグインのユーティリティクラス.
-class SC_Plugin_Util {
+class SC_Plugin_Util 
+{
 
     /**
      * 稼働中のプラグインを取得する。
      */
-    function getEnablePlugin() {
+    function getEnablePlugin()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '*';
@@ -55,5 +57,6 @@
      * @return array $arrRet インストールされているプラグイン.
      */
-    function getAllPlugin() {
+    function getAllPlugin()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '*';
@@ -74,5 +77,6 @@
      * @return array プラグインの基本情報.
      */
-    function getPluginByPluginId($plugin_id) {
+    function getPluginByPluginId($plugin_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '*';
@@ -90,5 +94,6 @@
      * @return array プラグインの基本情報.
      */
-    function getPluginByPluginCode($plugin_code) {
+    function getPluginByPluginCode($plugin_code)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '*';
@@ -105,5 +110,6 @@
      * @return array プラグインの基本情報.
      */
-    function deletePluginByPluginId($plugin_id) {
+    function deletePluginByPluginId($plugin_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'plugin_id = ?';
@@ -117,5 +123,6 @@
      * @return array $arrPluginDirectory
      */
-    function getPluginDirectory() {
+    function getPluginDirectory()
+    {
         $arrPluginDirectory = array();
         if (is_dir(PLUGIN_UPLOAD_REALDIR)) {
@@ -136,5 +143,6 @@
      * @return array フックポイントの一覧
      */
-    function getPluginHookPoint($plugin_id) {
+    function getPluginHookPoint($plugin_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $cols = '*';
@@ -150,5 +158,6 @@
      * @return array $arrErr エラー情報を格納した連想配列.
      */
-    function checkExtension($key) {
+    function checkExtension($key)
+    {
         // プラグイン利用に必須のモジュール
         // 'EC-CUBEバージョン' => array('モジュール名')
Index: branches/version-2_12-dev/data/class/pages/forgot/LC_Page_Forgot.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/forgot/LC_Page_Forgot.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/forgot/LC_Page_Forgot.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Forgot extends LC_Page_Ex {
+class LC_Page_Forgot extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -56,5 +57,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = 'パスワードを忘れた方';
@@ -75,5 +77,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -86,5 +89,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -147,5 +151,6 @@
      * @return string エラー文字列 問題が無ければNULL
      */
-    function lfCheckForgotMail(&$arrForm, &$arrReminder) {
+    function lfCheckForgotMail(&$arrForm, &$arrReminder)
+    {
         $errmsg = NULL;
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -175,5 +180,6 @@
      * @return void
      */
-    function lfInitMailCheckParam(&$objFormParam, $device_type) {
+    function lfInitMailCheckParam(&$objFormParam, $device_type)
+    {
         $objFormParam->addParam('お名前(姓)', 'name01', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'NO_SPTAB', 'SPTAB_CHECK' ,'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('お名前(名)', 'name02', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'NO_SPTAB', 'SPTAB_CHECK' , 'MAX_LENGTH_CHECK'));
@@ -193,5 +199,6 @@
      * @return string エラー文字列 問題が無ければNULL
      */
-    function lfCheckForgotSecret(&$arrForm, &$arrReminder) {
+    function lfCheckForgotSecret(&$arrForm, &$arrReminder)
+    {
         $errmsg = '';
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -253,5 +260,6 @@
      * @return void
      */
-    function lfInitSecretCheckParam(&$objFormParam, $device_type) {
+    function lfInitSecretCheckParam(&$objFormParam, $device_type)
+    {
         // メールチェックと同等のチェックを再度行う
         $this->lfInitMailCheckParam($objFormParam, $device_type);
@@ -267,5 +275,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -282,5 +291,6 @@
      * FIXME: メールテンプレート編集の方に足すのが望ましい
      */
-    function lfSendMail(&$CONF, $email, $customer_name, $new_password) {
+    function lfSendMail(&$CONF, $email, $customer_name, $new_password)
+    {
         // パスワード変更お知らせメール送信
         $objMailText = new SC_SiteView_Ex(false);
Index: branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_Kiyaku.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_Kiyaku.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_Kiyaku.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Entry_Kiyaku extends LC_Page_Ex {
+class LC_Page_Entry_Kiyaku extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = 'ご利用規約';
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -63,5 +66,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $arrKiyaku = $this->lfGetKiyakuData();
@@ -83,5 +87,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -96,5 +101,6 @@
      * @return string 規約の内容をテキストエリアで表示するように整形したデータ
      */
-    function lfMakeKiyakuText($arrKiyaku, $max, $offset) {
+    function lfMakeKiyakuText($arrKiyaku, $max, $offset)
+    {
         $this->tpl_kiyaku_text = '';
         for ($i = 0; $i < $max; $i++) {
@@ -112,5 +118,6 @@
      * @return array $arrKiyaku 規約の配列
      */
-    function lfGetKiyakuData() {
+    function lfGetKiyakuData()
+    {
 
         $objQuery   = SC_Query_Ex::getSingletonInstance();
@@ -130,5 +137,6 @@
      * @return int
      */
-    function lfSetOffset($offset) {
+    function lfSetOffset($offset)
+    {
         return is_numeric($offset) === true ? intval($offset) : 1;
     }
Index: branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_EmailMobile.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_EmailMobile.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_EmailMobile.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Entry_EmailMobile extends LC_Page_Ex {
+class LC_Page_Entry_EmailMobile extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -63,5 +66,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCustomer    = new SC_Customer_Ex();
@@ -95,5 +99,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -105,5 +110,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('メールアドレス', 'email_mobile', null, 'a',
                                 array('NO_SPTAB', 'EXIST_CHECK', 'CHANGE_LOWER', 'EMAIL_CHAR_CHECK', 'EMAIL_CHECK', 'MOBILE_EMAIL_CHECK'));
@@ -118,5 +124,6 @@
      * @return array エラー情報の配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objFormParam->convParam();
         $objErr         = new SC_CheckError_Ex();
@@ -140,5 +147,6 @@
      * @return void
      */
-    function lfRegistEmailMobile($email_mobile, $customer_id) {
+    function lfRegistEmailMobile($email_mobile, $customer_id)
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
         $objQuery->update('dtb_customer',
Index: branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_Entry.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Entry extends LC_Page_Ex {
+class LC_Page_Entry extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $masterData         = new SC_DB_MasterData_Ex();
@@ -64,5 +66,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -74,5 +77,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -167,5 +171,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -179,5 +184,6 @@
      * @return uniqid
      */
-    function lfRegistCustomerData($sqlval) {
+    function lfRegistCustomerData($sqlval)
+    {
         SC_Helper_Customer_Ex::sfEditCustomerData($sqlval);
         return $sqlval['secret_key'];
@@ -195,5 +201,6 @@
      * @return $arrResults
      */
-    function lfMakeSqlVal(&$objFormParam) {
+    function lfMakeSqlVal(&$objFormParam)
+    {
         $arrForm                = $objFormParam->getHashArray();
         $arrResults             = $objFormParam->getDbArray();
@@ -230,5 +237,6 @@
      * @return void
      */
-    function lfSendMail($uniqid, $arrForm) {
+    function lfSendMail($uniqid, $arrForm)
+    {
         $CONF           = SC_Helper_DB_Ex::sfGetBasisData();
 
@@ -285,5 +293,6 @@
      * @return boolean kiyaku.php からの妥当な遷移であれば true
      */
-    function lfCheckReferer(&$post, $referer) {
+    function lfCheckReferer(&$post, $referer)
+    {
 
         if (SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE
@@ -301,5 +310,6 @@
      * @return array $arrErr エラーメッセージ配列
      */
-    function lfCheckError($arrRequest) {
+    function lfCheckError($arrRequest)
+    {
         // パラメーター管理クラス
         $objFormParam = new SC_FormParam_Ex();
@@ -330,5 +340,6 @@
      * @return エラーなし：true エラー：false
      */
-    function lfInputNameCheck($value) {
+    function lfInputNameCheck($value)
+    {
         // 半角英数字と_（アンダーバー）, []以外の文字を使用していたらエラー
         if (strlen($value) > 0 && !preg_match("/^[a-zA-Z0-9_\[\]]+$/", $value)) {
Index: branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_Complete.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_Complete.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_Complete.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Entry_Complete extends LC_Page_Ex {
+class LC_Page_Entry_Complete extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->httpCacheControl('nocache');
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -63,5 +66,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // カートが空かどうかを確認する。
@@ -92,5 +96,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id:LC_Page_FrontParts_LoginCheck.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_FrontParts_LoginCheck extends LC_Page_Ex {
+class LC_Page_FrontParts_LoginCheck extends LC_Page_Ex 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // 会員管理クラス
@@ -209,5 +213,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -219,5 +224,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('記憶する', 'login_memory', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('メールアドレス', 'login_email', MTEXT_LEN, 'a', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
@@ -235,5 +241,6 @@
      * @see LC_PageError
      */
-    function lfGetErrorMessage($error) {
+    function lfGetErrorMessage($error)
+    {
         switch ($error) {
             case TEMP_LOGIN_ERROR:
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Category.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Category.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Category.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_Category extends LC_Page_FrontParts_Bloc_Ex {
+class LC_Page_FrontParts_Bloc_Category extends LC_Page_FrontParts_Bloc_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // モバイル判定
@@ -85,5 +89,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -95,5 +100,6 @@
      * @return array $arrCategoryId 選択中のカテゴリID
      */
-    function lfGetSelectedCategoryId($arrRequest) {
+    function lfGetSelectedCategoryId($arrRequest)
+    {
             // 商品ID取得
         $product_id = '';
@@ -122,5 +128,6 @@
      * @return array $arrRet カテゴリツリーの配列を返す
      */
-    function lfGetCatTree($arrParentCategoryId, $count_check = false) {
+    function lfGetCatTree($arrParentCategoryId, $count_check = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objDb = new SC_Helper_DB_Ex();
@@ -171,5 +178,6 @@
      * @return array $arrMainCat メインカテゴリの配列を返す
      */
-    function lfGetMainCat($count_check = false) {
+    function lfGetMainCat($count_check = false)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '*';
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc extends LC_Page_Ex {
+class LC_Page_FrontParts_Bloc extends LC_Page_Ex 
+{
 
     /**
@@ -39,5 +40,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         // 開始時刻を設定する。
         $this->timeStart = microtime(true);
@@ -64,5 +66,6 @@
      * @return void
      */
-    function setTplMainpage($bloc_file) {
+    function setTplMainpage($bloc_file)
+    {
         if (SC_Utils_Ex::isAbsoluteRealPath($bloc_file)) {
             $this->tpl_mainpage = $bloc_file;
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginHeader.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginHeader.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginHeader.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_LoginHeader extends LC_Page_FrontParts_Bloc_Login_Ex {
+class LC_Page_FrontParts_Bloc_LoginHeader extends LC_Page_FrontParts_Bloc_Login_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         parent::action();
     }
@@ -70,5 +74,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviHeader.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviHeader.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviHeader.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_NaviHeader extends LC_Page_FrontParts_Bloc_Login_Ex {
+class LC_Page_FrontParts_Bloc_NaviHeader extends LC_Page_FrontParts_Bloc_Login_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $masterData = new SC_DB_MasterData_Ex();
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -63,5 +66,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         parent::action();
 
@@ -79,5 +83,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -91,5 +96,6 @@
      * @return array $arrCartList カートデータ配列
      */
-    function lfGetCartData($objCart, $arrInfo, $cartKeys) {
+    function lfGetCartData($objCart, $arrInfo, $cartKeys)
+    {
         $cartList = array();
         foreach ($cartKeys as $key) {
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginFooter.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginFooter.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginFooter.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_LoginFooter extends LC_Page_FrontParts_Bloc_Login_Ex {
+class LC_Page_FrontParts_Bloc_LoginFooter extends LC_Page_FrontParts_Bloc_Login_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         parent::action();
     }
@@ -70,5 +74,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Login.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Login.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Login.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_FrontParts_Bloc_Login.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_FrontParts_Bloc_Login extends LC_Page_FrontParts_Bloc_Ex {
+class LC_Page_FrontParts_Bloc_Login extends LC_Page_FrontParts_Bloc_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_login = false;
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCustomer = new SC_Customer_Ex();
@@ -100,5 +104,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -109,5 +114,6 @@
      * @return boolean
      */
-    function lfCheckDisableLogout() {
+    function lfCheckDisableLogout()
+    {
         $masterData = new SC_DB_MasterData_Ex();
         $arrDisableLogout = $masterData->getMasterData('mtb_disable_logout');
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Calendar.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Calendar.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Calendar.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $ $
  */
-class LC_Page_FrontParts_Bloc_Calendar extends LC_Page_FrontParts_Bloc_Ex {
+class LC_Page_FrontParts_Bloc_Calendar extends LC_Page_FrontParts_Bloc_Ex 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // 休日取得取得
@@ -79,5 +83,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -89,5 +94,6 @@
      * @return array カレンダー情報の配列を返す
      */
-    function lfGetCalendar($disp_month = 1) {
+    function lfGetCalendar($disp_month = 1)
+    {
         $arrCalendar = array();
         $today = date('Y/m/d');
@@ -124,5 +130,6 @@
      * @return array $arrHoliday 休日情報の配列を返す
      */
-    function lfGetHoliday() {
+    function lfGetHoliday()
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
         $objQuery->setOrder('rank DESC');
@@ -141,5 +148,6 @@
      * @return array $arrRegularHoliday 定休日情報の配列を返す
      */
-    function lfGetRegularHoliday() {
+    function lfGetRegularHoliday()
+    {
         $arrInfo = SC_Helper_DB_Ex::sfGetBasisData();
         $arrRegularHoliday = explode('|', $arrInfo['regular_holiday_ids']);
@@ -155,5 +163,6 @@
      * @return boolean 休日の場合trueを返す
      */
-    function lfCheckHoliday($year, $month, $day) {
+    function lfCheckHoliday($year, $month, $day)
+    {
         if (!empty($this->arrHoliday[$month])) {
             if (in_array($day, $this->arrHoliday[$month])) {
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Cart.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Cart.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Cart.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_FrontParts_Bloc_Cart.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_FrontParts_Bloc_Cart extends LC_Page_FrontParts_Bloc_Ex {
+class LC_Page_FrontParts_Bloc_Cart extends LC_Page_FrontParts_Bloc_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $masterData = new SC_DB_MasterData_Ex();
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -63,5 +66,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCart = new SC_CartSession_Ex();
@@ -79,5 +83,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -89,5 +94,6 @@
      * @return array カートデータ配列
      */
-    function lfGetCartData(&$objCart) {
+    function lfGetCartData(&$objCart)
+    {
         $arrCartKeys = $objCart->getKeys();
         foreach ($arrCartKeys as $cart_key) {
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend.php	(revision 22564)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id: LC_Page_FrontParts_Bloc_Best5 - Copy.php -1   $
  */
-class LC_Page_FrontParts_Bloc_Recommend extends LC_Page_FrontParts_Bloc_Ex {
+class LC_Page_FrontParts_Bloc_Recommend extends LC_Page_FrontParts_Bloc_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // 基本情報を渡す
@@ -78,5 +82,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -87,5 +92,6 @@
      * @return array $arrBestProducts 検索結果配列
      */
-    function lfGetRanking() {
+    function lfGetRanking()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objProduct = new SC_Product_Ex();
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_FrontParts_Bloc_SearchProducts.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_FrontParts_Bloc_SearchProducts extends LC_Page_FrontParts_Bloc_Ex {
+class LC_Page_FrontParts_Bloc_SearchProducts extends LC_Page_FrontParts_Bloc_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // 商品ID取得
@@ -86,5 +90,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -95,5 +100,6 @@
      * @return string $product_id 商品ID
      */
-    function lfGetProductId() {
+    function lfGetProductId()
+    {
         $product_id = '';
         if (isset($_GET['product_id']) && $_GET['product_id'] != '' && is_numeric($_GET['product_id'])) {
@@ -108,5 +114,6 @@
      * @return string $category_id カテゴリID
      */
-    function lfGetCategoryId() {
+    function lfGetCategoryId()
+    {
         $category_id = '';
         if (isset($_GET['category_id']) && $_GET['category_id'] != '' && is_numeric($_GET['category_id'])) {
@@ -121,5 +128,6 @@
      * @return string $maker_id メーカーID
      */
-    function lfGetMakerId() {
+    function lfGetMakerId()
+    {
         $maker_id = '';
         if (isset($_GET['maker_id']) && $_GET['maker_id'] != '' && is_numeric($_GET['maker_id'])) {
@@ -134,5 +142,6 @@
      * @return array $arrCategoryId 選択中のカテゴリID
      */
-    function lfGetSelectedCategoryId($product_id, $category_id) {
+    function lfGetSelectedCategoryId($product_id, $category_id)
+    {
         // 選択中のカテゴリIDを判定する
         $objDb = new SC_Helper_DB_Ex();
@@ -146,5 +155,6 @@
      * @return array $arrMakerId 選択中のメーカーID
      */
-    function lfGetSelectedMakerId($product_id, $maker_id) {
+    function lfGetSelectedMakerId($product_id, $maker_id)
+    {
         // 選択中のメーカーIDを判定する
         $objDb = new SC_Helper_DB_Ex();
@@ -158,5 +168,6 @@
      * @return array $arrCategoryList カテゴリ検索用選択リスト
      */
-    function lfGetCategoryList() {
+    function lfGetCategoryList()
+    {
         $objDb = new SC_Helper_DB_Ex();
         // カテゴリ検索用選択リスト
@@ -177,5 +188,6 @@
      * @return array $arrMakerList メーカー検索用選択リスト
      */
-    function lfGetMakerList() {
+    function lfGetMakerList()
+    {
         $objDb = new SC_Helper_DB_Ex();
         // メーカー検索用選択リスト
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviFooter.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviFooter.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviFooter.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_NaviFooter extends LC_Page_FrontParts_Bloc_Login_Ex {
+class LC_Page_FrontParts_Bloc_NaviFooter extends LC_Page_FrontParts_Bloc_Login_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         parent::action();
     }
@@ -70,5 +74,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_News.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_News.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_News.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_News extends LC_Page_FrontParts_Bloc_Ex {
+class LC_Page_FrontParts_Bloc_News extends LC_Page_FrontParts_Bloc_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -108,5 +112,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -118,5 +123,6 @@
      * @return void
      */
-    function lfInitNewsParam(&$objFormParam) {
+    function lfInitNewsParam(&$objFormParam)
+    {
         $objFormParam->addParam('現在ページ', 'pageno', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'), '', false);
         $objFormParam->addParam('表示件数', 'disp_number', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'), '', false);
@@ -129,5 +135,6 @@
      * @return array $arrNewsList 新着情報の配列を返す
      */
-    function lfGetNews(&$objQuery) {
+    function lfGetNews(&$objQuery)
+    {
         $objQuery->setOrder('rank DESC ');
         $arrNewsList = $objQuery->select('* , cast(news_date as date) as news_date_disp', 'dtb_news' ,'del_flg = 0');
@@ -155,5 +162,6 @@
      * @return String $json 新着情報のJSONを返す
      */
-    function lfGetNewsForJson(&$objFormParam) {
+    function lfGetNewsForJson(&$objFormParam)
+    {
 
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -184,5 +192,6 @@
      * @return String $json 新着情報1件分のJSONを返す
      */
-    function lfGetNewsDetailForJson(&$objFormParam) {
+    function lfGetNewsDetailForJson(&$objFormParam)
+    {
 
         $objQuery = SC_Query_Ex::getSingletonInstance();
@@ -201,5 +210,6 @@
      * @return Integer $count 新着情報の件数を返す
      */
-    function lfGetNewsCount() {
+    function lfGetNewsCount()
+    {
 
         $count = 0;
@@ -217,5 +227,6 @@
      * @return string JSON 形式のエラーメッセージ
      */
-    function lfGetErrors($arrErr) {
+    function lfGetErrors($arrErr)
+    {
         $messages = '';
         foreach ($arrErr as $val) {
Index: branches/version-2_12-dev/data/class/pages/LC_Page_Sitemap.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/LC_Page_Sitemap.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/LC_Page_Sitemap.php	(revision 22567)
@@ -51,5 +51,6 @@
  * :TODO: filemtime 関数を使えば、静的なページの更新時間も取得できそう
  */
-class LC_Page_Sitemap extends LC_Page_Ex {
+class LC_Page_Sitemap extends LC_Page_Ex 
+{
 
     // }}}
@@ -70,5 +71,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -83,5 +85,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         // ページのデータを取得
         // FIXME PCサイトのみに限定している。ある程度妥当だとは思うが、よりベターな方法はないだろうか。
@@ -140,5 +143,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -155,5 +159,6 @@
      * TODO Smarty に移行すべき?
      */
-    function createSitemap($loc, $lastmod = '', $changefreq = '', $priority = '') {
+    function createSitemap($loc, $lastmod = '', $changefreq = '', $priority = '')
+    {
         printf("\t<url>\n");
         printf("\t\t<loc>%s</loc>\n", htmlentities($loc, ENT_QUOTES, 'UTF-8'));
@@ -176,5 +181,6 @@
      * @return array TOPページの情報
      */
-    function getTopPage($arrPageList) {
+    function getTopPage($arrPageList)
+    {
         $arrRet = array();
         foreach ($arrPageList as $arrPage) {
@@ -192,5 +198,6 @@
      * @return array 編集可能ページ
      */
-    function getEditablePage($arrPageList) {
+    function getEditablePage($arrPageList)
+    {
         $arrRet = array();
         foreach ($arrPageList as $arrPage) {
@@ -207,5 +214,6 @@
      * @return array 検索エンジンからアクセス可能な商品一覧ページの情報
      */
-    function getAllProducts() {
+    function getAllProducts()
+    {
 
         // XXX: 商品登録の無いカテゴリは除外する方が良い気もする
@@ -229,5 +237,6 @@
      * @return array 検索エンジンからアクセス可能な商品詳細ページの情報
      */
-    function getAllDetail() {
+    function getAllDetail()
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
         $sql = 'SELECT product_id, update_date FROM dtb_products WHERE del_flg = 0 AND status = 1';
@@ -252,5 +261,6 @@
      * @return array $arrPageList ブロック情報
      */
-    function getPageData($where = '', $arrVal = '') {
+    function getPageData($where = '', $arrVal = '')
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();     // DB操作オブジェクト
         $sql = '';                      // データ取得SQL生成用
@@ -302,5 +312,6 @@
      * @return void
      */
-    function date2W3CDatetime($date) {
+    function date2W3CDatetime($date)
+    {
         $arr = array();
         // 正規表現で文字列を抽出
Index: branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_List.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_List.php	(revision 22507)
+++ branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_List.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Products_List extends LC_Page_Ex {
+class LC_Page_Products_List extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -68,5 +69,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -83,5 +85,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -94,5 +97,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objProduct = new SC_Product_Ex();
@@ -151,5 +155,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -160,5 +165,6 @@
      * @return integer カテゴリID
      */
-    function lfGetCategoryId($category_id) {
+    function lfGetCategoryId($category_id)
+    {
 
         // 指定なしの場合、0 を返す
@@ -184,5 +190,6 @@
 
     /* 商品一覧の表示 */
-    function lfGetProductsList($searchCondition, $disp_number, $startno, $linemax, &$objProduct) {
+    function lfGetProductsList($searchCondition, $disp_number, $startno, $linemax, &$objProduct)
+    {
 
         $arrOrderVal = array();
@@ -242,5 +249,6 @@
 
     /* 入力内容のチェック */
-    function lfCheckError($product_id, &$arrForm, $tpl_classcat_find1, $tpl_classcat_find2) {
+    function lfCheckError($product_id, &$arrForm, $tpl_classcat_find1, $tpl_classcat_find2)
+    {
 
         // 入力データを渡す。
@@ -266,5 +274,6 @@
      * @return void
      */
-    function lfGetDisplayNum($display_number) {
+    function lfGetDisplayNum($display_number)
+    {
         // 表示件数
         return (SC_Utils_Ex::sfIsInt($display_number))
@@ -278,5 +287,6 @@
      * @return str
      */
-    function lfGetPageTitle($mode, $category_id = 0) {
+    function lfGetPageTitle($mode, $category_id = 0)
+    {
         if ($mode == 'search') {
             return '検索結果';
@@ -294,5 +304,6 @@
      * @return array
      */
-    function lfGetSearchConditionDisp($arrSearchData) {
+    function lfGetSearchConditionDisp($arrSearchData)
+    {
         $objQuery   =& SC_Query_Ex::getSingletonInstance();
         $arrSearch  = array('category' => '指定なし', 'maker' => '指定なし', 'name' => '指定なし');
@@ -319,5 +330,6 @@
      * @return int
      */
-    function lfGetProductAllNum($searchCondition) {
+    function lfGetProductAllNum($searchCondition)
+    {
         // 検索結果対象となる商品の数を取得
         $objQuery   =& SC_Query_Ex::getSingletonInstance();
@@ -332,5 +344,6 @@
      * @return array
      */
-    function lfGetSearchCondition($arrSearchData) {
+    function lfGetSearchCondition($arrSearchData)
+    {
         $searchCondition = array(
             'where'             => '',
@@ -391,5 +404,6 @@
      * @return str
      */
-    function lfSetSelectedData(&$arrProducts, $arrForm, $arrErr, $product_id) {
+    function lfSetSelectedData(&$arrProducts, $arrForm, $arrErr, $product_id)
+    {
         $js_fnOnLoad = '';
         foreach ($arrProducts as $key => $value) {
@@ -412,5 +426,6 @@
      * @return void
      */
-    function lfAddCart($arrForm, $referer) {
+    function lfAddCart($arrForm, $referer)
+    {
         $product_class_id = $arrForm['product_class_id'];
         $objCartSess = new SC_CartSession_Ex();
@@ -426,5 +441,6 @@
      * @return Array $arrProducts 商品一覧情報
      */
-    function setStatusDataTo($arrProducts, $arrStatus, $arrStatusImage) {
+    function setStatusDataTo($arrProducts, $arrStatus, $arrStatusImage)
+    {
 
         foreach ($arrProducts['productStatus'] as $product_id => $arrValues) {
@@ -448,5 +464,6 @@
      * @return void
      */
-    function doJson() {
+    function doJson()
+    {
         $this->arrProducts = $this->setStatusDataTo($this->arrProducts, $this->arrSTATUS, $this->arrSTATUS_IMAGE);
         SC_Product_Ex::setPriceTaxTo($this->arrProducts);
@@ -466,5 +483,6 @@
      * @return void
      */
-    function doDefault(&$objProduct) {
+    function doDefault(&$objProduct)
+    {
         //商品一覧の表示処理
         $strnavi            = $this->objNavi->strnavi;
@@ -527,5 +545,6 @@
         }
 
-        $this->tpl_javascript   .= 'function fnOnLoad(){' . $js_fnOnLoad . '}';
+        $this->tpl_javascript   .= 'function fnOnLoad()
+        {' . $js_fnOnLoad . '}';
         $this->tpl_onload       .= 'fnOnLoad(); ';
     }
Index: branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Review.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Review.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Review.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_Products_Review.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Products_Review extends LC_Page_Ex {
+class LC_Page_Products_Review extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -53,5 +54,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -67,5 +69,6 @@
      * Page のプロセス.
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -78,5 +81,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -137,5 +141,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -147,5 +152,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('レビューID', 'review_id', INT_LEN, 'aKV');
         $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n', array('NUM_CHECK','EXIST_CHECK', 'MAX_LENGTH_CHECK'));
@@ -164,5 +170,6 @@
      * @return array エラーメッセージの配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $arrErr = $objFormParam->checkError();
 
@@ -192,5 +199,6 @@
      * @return string $product_name 商品名
      */
-    function lfGetProductName($product_id) {
+    function lfGetProductName($product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -199,5 +207,6 @@
 
     //登録実行
-    function lfRegistRecommendData(&$objFormParam) {
+    function lfRegistRecommendData(&$objFormParam)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrRegist = $objFormParam->getDbArray();
Index: branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Detail.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Detail.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Detail.php	(revision 22567)
@@ -35,5 +35,6 @@
  * @version $Id:LC_Page_Products_Detail.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Products_Detail extends LC_Page_Ex {
+class LC_Page_Products_Detail extends LC_Page_Ex 
+{
 
     /** 商品ステータス */
@@ -66,5 +67,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $masterData = new SC_DB_MasterData_Ex();
@@ -80,5 +82,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -91,5 +94,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         // 会員クラス
         $objCustomer = new SC_Customer_Ex();
@@ -136,5 +140,6 @@
 
         $this->tpl_javascript .= 'classCategories = ' . SC_Utils_Ex::jsonEncode($objProduct->classCategories[$product_id]) . ';';
-        $this->tpl_javascript .= 'function lnOnLoad(){' . $this->js_lnOnload . '}';
+        $this->tpl_javascript .= 'function lnOnLoad()
+        {' . $this->js_lnOnload . '}';
         $this->tpl_onload .= 'lnOnLoad();';
 
@@ -237,10 +242,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* プロダクトIDの正当性チェック */
-    function lfCheckProductId($admin_mode,$product_id) {
+    function lfCheckProductId($admin_mode,$product_id)
+    {
         // 管理機能からの確認の場合は、非公開の商品も表示する。
         if (isset($admin_mode) && $admin_mode == 'on') {
@@ -263,5 +270,6 @@
 
     /* ファイル情報の初期化 */
-    function lfInitFile($objUpFile) {
+    function lfInitFile($objUpFile)
+    {
         $objUpFile->addFile('詳細-メイン画像', 'main_image', array('jpg'), IMAGE_SIZE);
         for ($cnt = 1; $cnt <= PRODUCTSUB_MAX; $cnt++) {
@@ -272,5 +280,6 @@
 
     /* 規格選択セレクトボックスの作成 */
-    function lfMakeSelect() {
+    function lfMakeSelect()
+    {
         return 'fnSetClassCategories('
             . 'document.form1, '
@@ -280,5 +289,6 @@
 
     /* 規格選択セレクトボックスの作成(モバイル) */
-    function lfMakeSelectMobile(&$objPage, $product_id,$request_classcategory_id1) {
+    function lfMakeSelectMobile(&$objPage, $product_id,$request_classcategory_id1)
+    {
 
         $classcat_find1 = false;
@@ -343,5 +353,6 @@
 
     /* パラメーター情報の初期化 */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('規格1', 'classcategory_id1', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('規格2', 'classcategory_id2', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -360,5 +371,6 @@
 
     /* 商品規格情報の取得 */
-    function lfGetProductsClass($product_id) {
+    function lfGetProductsClass($product_id)
+    {
         $objProduct = new SC_Product_Ex();
         return $objProduct->getProductsClassFullByProductId($product_id);
@@ -366,5 +378,6 @@
 
     /* 登録済み関連商品の読み込み */
-    function lfPreGetRecommendProducts($product_id) {
+    function lfPreGetRecommendProducts($product_id)
+    {
         $objProduct = new SC_Product_Ex();
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -390,5 +403,6 @@
 
     /* 入力内容のチェック */
-    function lfCheckError($mode,&$objFormParam,$tpl_classcat_find1 = null ,$tpl_classcat_find2 = null) {
+    function lfCheckError($mode,&$objFormParam,$tpl_classcat_find1 = null ,$tpl_classcat_find2 = null)
+    {
 
         switch ($mode) {
@@ -422,5 +436,6 @@
 
     //商品ごとのレビュー情報を取得する
-    function lfGetReviewData($id) {
+    function lfGetReviewData($id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         //商品ごとのレビュー情報を取得する
@@ -439,5 +454,6 @@
      * @return $subImageFlag
      */
-    function lfSetFile($objUpFile,$arrProduct,&$arrFile) {
+    function lfSetFile($objUpFile,$arrProduct,&$arrFile)
+    {
         // DBからのデータを引き継ぐ
         $objUpFile->setDBFileList($arrProduct);
@@ -459,5 +475,6 @@
      * @return void
      */
-    function lfRegistFavoriteProduct($favorite_product_id,$customer_id) {
+    function lfRegistFavoriteProduct($favorite_product_id,$customer_id)
+    {
         // ログイン中のユーザが商品をお気に入りにいれる処理
         if (!SC_Helper_DB_Ex::sfIsRecord('dtb_products', 'product_id', $favorite_product_id, 'del_flg = 0 AND status = 1')) {
@@ -489,5 +506,6 @@
      * @return void 
      */
-    function doCart() {
+    function doCart()
+    {
         $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam,
                                             $this->tpl_classcat_find1,
@@ -511,5 +529,6 @@
      * @return void
      */
-    function doAddFavorite(&$objCustomer) {
+    function doAddFavorite(&$objCustomer)
+    {
         // ログイン中のユーザが商品をお気に入りにいれる処理
         if ($objCustomer->isLoginSuccess() === true && $this->objFormParam->getValue('favorite_product_id') > 0) {
@@ -533,5 +552,6 @@
      * @return void
      */
-    function doAddFavoriteSphone($objCustomer) {
+    function doAddFavoriteSphone($objCustomer)
+    {
         // ログイン中のユーザが商品をお気に入りにいれる処理(スマートフォン用)
         if ($objCustomer->isLoginSuccess() === true && $this->objFormParam->getValue('favorite_product_id') > 0) {
@@ -557,5 +577,6 @@
      * @return void 
      */
-    function doDefault() {
+    function doDefault()
+    {
         // カート「戻るボタン」用に保持
         $netURL = new Net_URL();
@@ -567,5 +588,6 @@
      * @return void
      */
-    function doMobileSelect() {
+    function doMobileSelect()
+    {
         // 規格1が設定されている場合
         if ($this->tpl_classcat_find1) {
@@ -583,5 +605,6 @@
      * @return type 
      */
-    function doMobileSelect2() {
+    function doMobileSelect2()
+    {
         $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam,$this->tpl_classcat_find1,$this->tpl_classcat_find2);
 
@@ -608,5 +631,6 @@
      * @return void
      */
-    function doMobileSelectItem() {
+    function doMobileSelectItem()
+    {
         $objProduct = new SC_Product_Ex();
 
@@ -650,5 +674,6 @@
      * @return void 
      */
-    function doMobileCart() {
+    function doMobileCart()
+    {
         // この段階でエラーが出る場合は、数量の入力エラーのはず
         if (count($this->arrErr)) {
@@ -662,5 +687,6 @@
      * @return void 
      */
-    function doMobileDefault() {
+    function doMobileDefault()
+    {
         $this->tpl_mainpage = 'products/detail.tpl';
     }
Index: branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Search.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Search.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Search.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Products_Search extends LC_Page_Ex {
+class LC_Page_Products_Search extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -72,5 +76,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_CategoryList.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_CategoryList.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_CategoryList.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Products_CategoryList extends LC_Page_Ex {
+class LC_Page_Products_CategoryList extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // カテゴリIDの正当性チェック
@@ -81,10 +85,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* カテゴリIDの正当性チェック */
-    function lfCheckCategoryId($category_id) {
+    function lfCheckCategoryId($category_id)
+    {
         if ($category_id && !SC_Helper_DB_Ex::sfIsRecord('dtb_category', 'category_id', (array)$category_id, 'del_flg = 0')) {
             return 0;
@@ -102,5 +108,6 @@
      * @return void
      */
-    function lfGetCategories($category_id, $count_check = false, &$objPage) {
+    function lfGetCategories($category_id, $count_check = false, &$objPage)
+    {
         // カテゴリの正しいIDを取得する。
         $category_id = $this->lfCheckCategoryId($category_id);
@@ -156,5 +163,6 @@
      * @return object
      */
-    function lfInitParam($arrRequest) {
+    function lfInitParam($arrRequest)
+    {
         $objFormParam = new SC_FormParam_Ex();
         $objFormParam->addParam('カテゴリID', 'category_id', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK'));
Index: branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_ReviewComplete.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_ReviewComplete.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_ReviewComplete.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Products_ReviewComplete extends LC_Page_Ex {
+class LC_Page_Products_ReviewComplete extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->setTemplate('products/review_complete.tpl');
@@ -74,5 +78,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/LC_Page_ResizeImage.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/LC_Page_ResizeImage.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/LC_Page_ResizeImage.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_ResizeImage extends LC_Page_Ex {
+class LC_Page_ResizeImage extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $objFormParam = new SC_FormParam_Ex();
         $this->lfInitParam($objFormParam);
@@ -90,9 +94,11 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('画像ファイル名', 'image', STEXT_LEN, 'a',  array('MAX_LENGTH_CHECK'));
         $objFormParam->addParam('画像の幅', 'width', STEXT_LEN, 'n',  array('NUM_CHECK'));
@@ -105,5 +111,6 @@
      * @return boolean 正常な形式:true 不正な形式:false
      */
-    function lfCheckFileName() {
+    function lfCheckFileName()
+    {
         //$pattern = '|^[0-9]+_[0-9a-z]+\.[a-z]{3}$|';
         $pattern = '|\./|';
@@ -125,5 +132,6 @@
      * @return void
      */
-    function lfOutputImage($file, $width, $height) {
+    function lfOutputImage($file, $width, $height)
+    {
         $objThumb = new gdthumb();
         $objThumb->Main($file, $width, $height, '', true);
Index: branches/version-2_12-dev/data/class/pages/rss/LC_Page_Rss.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/rss/LC_Page_Rss.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/rss/LC_Page_Rss.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_RSS extends LC_Page_Ex {
+class LC_Page_RSS extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'rss/index.tpl';
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
 
         $objQuery = SC_Query_Ex::getSingletonInstance();
@@ -90,5 +93,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -100,5 +104,6 @@
      * @return array $arrNews 取得結果を配列で返す
      */
-    function lfGetNews(&$objQuery) {
+    function lfGetNews(&$objQuery)
+    {
         $col = '';
         $col .= 'news_id ';        // 新着情報ID
Index: branches/version-2_12-dev/data/class/pages/rss/LC_Page_Rss_Products.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/rss/LC_Page_Rss_Products.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/rss/LC_Page_Rss_Products.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Rss_Products extends LC_Page_Ex {
+class LC_Page_Rss_Products extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'rss/products.tpl';
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
     }
@@ -63,5 +66,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objView = new SC_SiteView_Ex();
@@ -124,5 +128,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -135,5 +140,6 @@
      * @return array $arrProduct 商品情報の配列を返す
      */
-    function lfGetProductsDetailData($mode, $product_id) {
+    function lfGetProductsDetailData($mode, $product_id)
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
         //商品詳細を取得
@@ -186,5 +192,6 @@
      * @return array $arrProduct 商品情報の配列を返す
      */
-    function lfGetProductsListData() {
+    function lfGetProductsListData()
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
         //商品一覧を取得
@@ -198,5 +205,6 @@
      * @return array $arrProduct 商品情報の配列を返す
      */
-    function lfGetProductsAllData() {
+    function lfGetProductsAllData()
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
         //商品情報を取得
@@ -243,5 +251,6 @@
      * @return array $arrProduct 取得結果を配列で返す
      */
-    function lfGetProductsDetail(&$objQuery, $product_id = 'all') {
+    function lfGetProductsDetail(&$objQuery, $product_id = 'all')
+    {
         $objProduct = new SC_Product_Ex();
 
@@ -284,5 +293,6 @@
      * @return array $arrProduct 取得結果を配列で返す
      */
-    function lfGetProductsAllclass(&$objQuery) {
+    function lfGetProductsAllclass(&$objQuery)
+    {
         // --- 商品一覧の取得
         $objQuery->setWhere('del_flg = 0 AND status = 1');
Index: branches/version-2_12-dev/data/class/pages/LC_Page_Index.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/LC_Page_Index.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/LC_Page_Index.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Index extends LC_Page_Ex {
+class LC_Page_Index extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $this->tpl_title = '';
         $objCustomer = new SC_Customer_Ex();
@@ -73,5 +77,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Php.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Php.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Php.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Api_Php extends LC_Page_Ex {
+class LC_Page_Api_Php extends LC_Page_Ex 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
 //        $this->sendResponse();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $arrParam = $_REQUEST;
 
@@ -75,5 +79,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Json.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Json.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Json.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Api_Json extends LC_Page_Ex {
+class LC_Page_Api_Json extends LC_Page_Ex 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
 //        $this->sendResponse();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $arrParam = $_REQUEST;
 
@@ -75,5 +79,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/api/LC_Page_Api.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/api/LC_Page_Api.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/api/LC_Page_Api.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Api extends LC_Page_Ex {
+class LC_Page_Api extends LC_Page_Ex 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
 //        $this->sendResponse();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $arrParam = $_REQUEST;
 
@@ -75,5 +79,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Xml.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Xml.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/api/LC_Page_Api_Xml.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Api_Xml extends LC_Page_Ex {
+class LC_Page_Api_Xml extends LC_Page_Ex 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
 //        $this->sendResponse();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $arrParam = $_REQUEST;
 
@@ -75,5 +79,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/order/LC_Page_Order.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/order/LC_Page_Order.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/order/LC_Page_Order.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Order extends LC_Page_Ex {
+class LC_Page_Order extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_page_category = 'order';
@@ -55,5 +57,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -79,5 +83,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/LC_Page.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/LC_Page.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/LC_Page.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id:LC_Page.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page {
+class LC_Page 
+{
 
     // {{{ properties
@@ -84,5 +85,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         // 開始時刻を設定する。
         $this->timeStart = microtime(true);
@@ -117,5 +119,6 @@
      * @return void
      */
-    function process() {}
+    function process()
+    {}
 
     /**
@@ -124,5 +127,6 @@
      * @return void
      */
-    function sendResponse() {
+    function sendResponse()
+    {
         $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg);
         // ローカルフックポイントを実行.
@@ -151,5 +155,6 @@
      * @return void
      */
-    function sendResponseCSV($file_name, $data) {
+    function sendResponseCSV($file_name, $data)
+    {
         $this->objDisplay->prepare($this);
         $this->objDisplay->addHeader('Content-disposition', "attachment; filename=${file_name}");
@@ -168,5 +173,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         // 一定時間以上かかったページの場合、ログ出力する。
         // エラー画面の表示では $this->timeStart が出力されない
@@ -187,5 +193,6 @@
      * @return void
      */
-    function doLocalHookpointBefore(SC_Helper_Plugin_Ex $objPlugin) {
+    function doLocalHookpointBefore(SC_Helper_Plugin_Ex $objPlugin)
+    {
         // ローカルフックポイントを実行
         $parent_class_name = get_parent_class($this);
@@ -205,5 +212,6 @@
      * @return void
      */
-    function doLocalHookpointAfter(SC_Helper_Plugin_Ex $objPlugin) {
+    function doLocalHookpointAfter(SC_Helper_Plugin_Ex $objPlugin)
+    {
         // ローカルフックポイントを実行
         $parent_class_name = get_parent_class($this);
@@ -221,5 +229,6 @@
      *
      */
-    function getTemplate() {
+    function getTemplate()
+    {
         return $this->template;
     }
@@ -229,5 +238,6 @@
      *
      */
-    function setTemplate($template) {
+    function setTemplate($template)
+    {
         $this->template = $template;
     }
@@ -253,5 +263,6 @@
      * @see Net_URL
      */
-    function getLocation($path, $param = array(), $useSSL = 'escape') {
+    function getLocation($path, $param = array(), $useSSL = 'escape')
+    {
         $rootPath = $this->getRootPath($path);
 
@@ -286,5 +297,6 @@
      * @return string EC-CUBE のWEBルート(/html/)を / としたパス
      */
-    function getRootPath($path) {
+    function getRootPath($path)
+    {
         // Windowsの場合は, ディレクトリの区切り文字を\から/に変換する
         $path = str_replace('\\', '/', $path);
@@ -324,5 +336,6 @@
      * @deprecated 決済モジュール互換のため
      */
-    function allowClientCache() {
+    function allowClientCache()
+    {
         $this->httpCacheControl('private');
     }
@@ -335,5 +348,6 @@
      * @return void
      */
-    function httpCacheControl($mode = '') {
+    function httpCacheControl($mode = '')
+    {
         switch ($mode) {
             case 'nocache':
@@ -370,5 +384,6 @@
      * @return string $_GET['mode'] 又は $_POST['mode'] の文字列
      */
-    function getMode() {
+    function getMode()
+    {
         $pattern = '/^[a-zA-Z0-9_]+$/';
         $mode = null;
@@ -396,5 +411,6 @@
      * @return void
      */
-    function doValidToken($is_admin = false) {
+    function doValidToken($is_admin = false)
+    {
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             if (!SC_Helper_Session_Ex::isValidToken(false)) {
@@ -415,5 +431,6 @@
      * @return void
      */
-    function setTokenTo() {
+    function setTokenTo()
+    {
         $this->transactionid = SC_Helper_Session_Ex::getToken();
     }
@@ -424,5 +441,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::gfPrintLog を使用すること
      */
-    function log($mess, $log_level) {
+    function log($mess, $log_level)
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         // ログレベル=Debugの場合は、DEBUG_MODEがtrueの場合のみログ出力する
@@ -444,5 +462,6 @@
      * @return void
      */
-    function p($val) {
+    function p($val)
+    {
         SC_Utils_Ex::sfPrintR($val);
     }
Index: branches/version-2_12-dev/data/class/pages/preview/LC_Page_Preview.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/preview/LC_Page_Preview.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/preview/LC_Page_Preview.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Preview extends LC_Page_Ex {
+class LC_Page_Preview extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
 
@@ -78,5 +81,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/LC_Page_InputZip.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/LC_Page_InputZip.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/LC_Page_InputZip.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_InputZip extends LC_Page_Ex {
+class LC_Page_InputZip extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_message = '住所を検索しています。';
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $objView = new SC_SiteView_Ex(false);
 
@@ -90,5 +93,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -100,5 +104,6 @@
      * @return array $arrErr エラーメッセージ配列
      */
-    function fnErrorCheck($arrRequest) {
+    function fnErrorCheck($arrRequest)
+    {
         // パラメーター管理クラス
         $objFormParam = new SC_FormParam_Ex();
@@ -127,5 +132,6 @@
      * @return エラーなし：true エラー：false
      */
-    function lfInputNameCheck($value) {
+    function lfInputNameCheck($value)
+    {
         // 半角英数字と_（アンダーバー）, []以外の文字を使用していたらエラー
         if (strlen($value) > 0 && !preg_match("/^[a-zA-Z0-9_\[\]]+$/", $value)) {
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage.php	(revision 22563)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_MyPage extends LC_Page_AbstractMypage_Ex {
+class LC_Page_MyPage extends LC_Page_AbstractMypage_Ex 
+{
 
     // {{{ properties
@@ -47,5 +48,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mypageno = 'index';
@@ -66,5 +68,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -75,5 +78,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCustomer = new SC_Customer_Ex();
@@ -113,5 +117,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -125,5 +130,6 @@
      * @return void
      */
-    function lfGetOrderHistory($customer_id, $startno = -1) {
+    function lfGetOrderHistory($customer_id, $startno = -1)
+    {
         $objQuery   = SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_History.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_History.php	(revision 22537)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_History.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_History extends LC_Page_AbstractMypage_Ex {
+class LC_Page_Mypage_History extends LC_Page_AbstractMypage_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mypageno     = 'index';
@@ -60,5 +62,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCustomer    = new SC_Customer_Ex();
@@ -121,5 +125,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -131,5 +136,6 @@
      * @return array 受注メール送信履歴の内容
      */
-    function lfGetMailHistory($order_id) {
+    function lfGetMailHistory($order_id)
+    {
         $objQuery   =& SC_Query_Ex::getSingletonInstance();
         $col        = 'send_date, subject, template_id, send_id';
@@ -147,5 +153,6 @@
      * @return array お届け先情報
      */
-    function lfGetShippingDate(&$objPurchase, $order_id, $arrWDAY) {
+    function lfGetShippingDate(&$objPurchase, $order_id, $arrWDAY)
+    {
         $arrShipping = $objPurchase->getShippings($order_id);
 
@@ -169,5 +176,6 @@
      * @return array 画像をセットした購入履歴の配列
      */
-    function setMainListImage($arrOrderDetails) {
+    function setMainListImage($arrOrderDetails)
+    {
         $i = 0;
         foreach ($arrOrderDetails as $arrOrderDetail) {
@@ -186,5 +194,6 @@
      * @return array MIMETYPE、ファイル名をセットした購入履歴の配列
      */
-    function lfSetMimetype($arrOrderDetails) {
+    function lfSetMimetype($arrOrderDetails)
+    {
         $objHelperMobile = new SC_Helper_Mobile_Ex();
         $i = 0;
@@ -207,5 +216,6 @@
      * @param $arrOrderDetail 購入履歴の配列
      */
-    function lfSetAU($arrOrderDetails) {
+    function lfSetAU($arrOrderDetails)
+    {
         $this->isAU = false;
         // モバイル端末かつ、キャリアがAUの場合に処理を行う
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Refusal.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Refusal.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Refusal.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Refusal extends LC_Page_AbstractMypage_Ex {
+class LC_Page_Mypage_Refusal extends LC_Page_AbstractMypage_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_subtitle = '退会手続き(入力ページ)';
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         switch ($this->getMode()) {
@@ -89,5 +93,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -99,5 +104,6 @@
      * @return void
      */
-    function lfDeleteCustomer($customer_id) {
+    function lfDeleteCustomer($customer_id)
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Delivery.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Delivery.php	(revision 22546)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Delivery.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Delivery extends LC_Page_AbstractMypage_Ex {
+class LC_Page_Mypage_Delivery extends LC_Page_AbstractMypage_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_subtitle = 'お届け先追加･変更';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -65,5 +68,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCustomer    = new SC_Customer_Ex();
@@ -125,5 +129,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -134,5 +139,6 @@
      * @return SC_FormParam
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('お届け先ID', 'other_deliv_id', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('現在ページ', 'pageno', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'), '', false);
@@ -146,5 +152,6 @@
      * return array
      */
-    function setPref($arrOtherDeliv, $arrPref) {
+    function setPref($arrOtherDeliv, $arrPref)
+    {
         if (is_array($arrOtherDeliv)) {
             foreach ($arrOtherDeliv as $key => $arrDeliv) {
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_AbstractMypage.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_AbstractMypage.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_AbstractMypage.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_AbstractMypage extends LC_Page_Ex {
+class LC_Page_AbstractMypage extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         // mypage 共通
@@ -55,5 +57,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
 
         parent::process();
@@ -103,5 +106,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Change extends LC_Page_AbstractMypage_Ex {
+class LC_Page_Mypage_Change extends LC_Page_AbstractMypage_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_subtitle = '会員登録内容変更(入力ページ)';
@@ -67,5 +69,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -75,5 +78,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCustomer = new SC_Customer_Ex();
@@ -166,5 +170,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -178,5 +183,6 @@
      * @return void
      */
-    function lfRegistCustomerData(&$objFormParam, $customer_id) {
+    function lfRegistCustomerData(&$objFormParam, $customer_id)
+    {
         $arrRet             = $objFormParam->getHashArray();
         $sqlval             = $objFormParam->getDbArray();
@@ -192,5 +198,6 @@
      * @return array $arrErr エラーメッセージ配列
      */
-    function lfCheckError($arrRequest) {
+    function lfCheckError($arrRequest)
+    {
         // パラメーター管理クラス
         $objFormParam = new SC_FormParam_Ex();
@@ -221,5 +228,6 @@
      * @return エラーなし：true エラー：false
      */
-    function lfInputNameCheck($value) {
+    function lfInputNameCheck($value)
+    {
         // 半角英数字と_（アンダーバー）, []以外の文字を使用していたらエラー
         if (strlen($value) > 0 && !preg_match("/^[a-zA-Z0-9_\[\]]+$/", $value)) {
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DownLoad.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DownLoad.php	(revision 22282)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DownLoad.php	(revision 22567)
@@ -31,5 +31,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_DownLoad extends LC_Page_Ex {
+class LC_Page_Mypage_DownLoad extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -56,5 +57,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->allowClientCache();
@@ -66,5 +68,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         ob_end_clean();
         parent::process();
@@ -78,5 +81,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // ログインチェック
@@ -105,5 +109,6 @@
      * @return void
      */
-    function sendResponse() {
+    function sendResponse()
+    {
         // TODO sendResponseをオーバーライドしている為、afterフックポイントが実行されない.直接実行する.(#1790)
         $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg);
@@ -165,5 +170,6 @@
      * @return array 商品情報の配列
      */
-    function lfGetRealFileName($customer_id, $order_id, $product_id, $product_class_id) {
+    function lfGetRealFileName($customer_id, $order_id, $product_id, $product_class_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = <<< __EOS__
@@ -194,5 +200,6 @@
 
     /* パラメーター情報の初期化 */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('customer_id', 'customer_id', INT_LEN, 'n', array('EXIST_CHECK','NUM_CHECK'));
         $objFormParam->addParam('order_id', 'order_id', INT_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK'));
@@ -202,5 +209,6 @@
 
     /* 入力内容のチェック */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objErr = new SC_CheckError_Ex($objFormParam->getHashArray());
         $objErr->arrErr = $objFormParam->checkError();
@@ -214,5 +222,6 @@
      * @param string $sdown_filename ダウンロード時の指定ファイル名
      */
-    function lfMobileHeader($realpath,$sdown_filename) {
+    function lfMobileHeader($realpath,$sdown_filename)
+    {
         $objHelperMobile = new SC_Helper_Mobile_Ex();
         //ファイルの拡張子からコンテンツタイプを取得する
@@ -231,5 +240,6 @@
      * @param string $sdown_filename ダウンロード時の指定ファイル名
      */
-    function lfMobileAuDownload($realpath,$sdown_filename) {
+    function lfMobileAuDownload($realpath,$sdown_filename)
+    {
         //モバイル用ヘッダー出力
         $this->lfMobileHeader($realpath,$sdown_filename);
@@ -262,5 +272,6 @@
      * @param string $sdown_filename ダウンロード時の指定ファイル名
      */
-    function lfMobileDownload($realpath,$sdown_filename) {
+    function lfMobileDownload($realpath,$sdown_filename)
+    {
         //モバイル用ヘッダー出力
         $this->lfMobileHeader($realpath,$sdown_filename);
@@ -320,5 +331,6 @@
      * @param string $sdown_filename ダウンロード時の指定ファイル名
      */
-    function lfDownload($realpath,$sdown_filename) {
+    function lfDownload($realpath,$sdown_filename)
+    {
         // 拡張子を取得
         $extension = pathinfo($realpath, PATHINFO_EXTENSION);
@@ -361,5 +373,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Login.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Login.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Login.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Login extends LC_Page_AbstractMypage_Ex {
+class LC_Page_Mypage_Login extends LC_Page_AbstractMypage_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->httpCacheControl('nocache');
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -72,5 +76,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_RefusalComplete.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_RefusalComplete.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_RefusalComplete.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_RefusalComplete extends LC_Page_Ex {
+class LC_Page_Mypage_RefusalComplete extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title    = 'MYページ';
@@ -61,5 +63,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -72,5 +75,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -82,5 +86,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Order.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Order.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Order.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Order extends LC_Page_AbstractMypage_Ex {
+class LC_Page_Mypage_Order extends LC_Page_AbstractMypage_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -60,5 +63,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         //受注詳細データの取得
@@ -81,10 +85,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     // 受注詳細データの取得
-    function lfGetOrderDetail($order_id) {
+    function lfGetOrderDetail($order_id)
+    {
         $objQuery       = SC_Query_Ex::getSingletonInstance();
 
@@ -104,5 +110,6 @@
 
     // 商品をカートに追加
-    function lfAddCartProducts($arrOrderDetail) {
+    function lfAddCartProducts($arrOrderDetail)
+    {
 
         $objCartSess = new SC_CartSession_Ex();
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_MailView.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_MailView.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_MailView.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_MailView extends LC_Page_AbstractMypage_Ex {
+class LC_Page_Mypage_MailView extends LC_Page_AbstractMypage_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->httpCacheControl('nocache');
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCustomer = new SC_Customer_Ex();
@@ -101,5 +105,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -113,5 +118,6 @@
      * @return array
      */
-    function lfGetMailView($send_id, $customer_id) {
+    function lfGetMailView($send_id, $customer_id)
+    {
         $objQuery   = SC_Query_Ex::getSingletonInstance();
         $col        = 'subject, mail_body';
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_ChangeComplete.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_ChangeComplete.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_ChangeComplete.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_ChangeComplete extends LC_Page_AbstractMypage_Ex {
+class LC_Page_Mypage_ChangeComplete extends LC_Page_AbstractMypage_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_subtitle = '会員登録内容変更(完了ページ)';
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -72,5 +76,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php	(revision 22546)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_DeliveryAddr extends LC_Page_Ex {
+class LC_Page_Mypage_DeliveryAddr extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title    = 'お届け先の追加･変更';
@@ -58,5 +60,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCustomer = new SC_Customer_Ex();
@@ -162,10 +166,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* 登録実行 */
-    function lfRegistData($objAddress, $objFormParam, $customer_id) {
+    function lfRegistData($objAddress, $objFormParam, $customer_id)
+    {
         $arrRet     = $objFormParam->getHashArray();
         $sqlval     = $objFormParam->getDbArray();
@@ -177,5 +183,6 @@
     }
 
-    function lfRegistDataNonMember($objFormParam) {
+    function lfRegistDataNonMember($objFormParam)
+    {
         $arrRegistColumn = $objFormParam->getDbArray();
         foreach ($arrRegistColumn as $key => $val) {
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php	(revision 22486)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_MyPage_Favorite extends LC_Page_AbstractMypage_Ex {
+class LC_Page_MyPage_Favorite extends LC_Page_AbstractMypage_Ex 
+{
 
     // {{{ properties
@@ -47,5 +48,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_subtitle = 'お気に入り一覧';
@@ -58,5 +60,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -67,5 +70,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $objCustomer = new SC_Customer_Ex();
 
@@ -111,5 +115,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -123,5 +128,6 @@
      * @return array お気に入り商品一覧
      */
-    function lfGetFavoriteProduct($customer_id, &$objPage) {
+    function lfGetFavoriteProduct($customer_id, &$objPage)
+    {
         $objQuery       = SC_Query_Ex::getSingletonInstance();
         $objProduct     = new SC_Product_Ex();
@@ -172,5 +178,6 @@
 
     /* 仕方がない処理。。 */
-    function lfMakeWhere($tablename, $arrProductId) {
+    function lfMakeWhere($tablename, $arrProductId)
+    {
 
         // 取得した表示すべきIDだけを指定して情報を取得。
@@ -186,5 +193,6 @@
 
     // お気に入り商品削除
-    function lfDeleteFavoriteProduct($customer_id, $product_id) {
+    function lfDeleteFavoriteProduct($customer_id, $product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php	(revision 21951)
+++ branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php	(revision 22567)
@@ -12,6 +12,8 @@
  * @version $Id$
  */
-class LC_Page_Upgrade_Base extends LC_Page_Ex {
-    function isValidIP() {
+class LC_Page_Upgrade_Base extends LC_Page_Ex 
+{
+    function isValidIP()
+    {
         $objLog  = new LC_Upgrade_Helper_Log;
         $masterData = new SC_DB_MasterData_Ex();
@@ -34,5 +36,6 @@
      * @return boolean
      */
-    function autoUpdateEnable($product_id) {
+    function autoUpdateEnable($product_id)
+    {
         $where = 'module_id = ?';
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -55,5 +58,6 @@
      * @return string|object レスポンスボディ|エラー時にはPEAR::Errorオブジェクトを返す.
      */
-    function request($mode, $arrParams = array(), $arrCookies = array()) {
+    function request($mode, $arrParams = array(), $arrCookies = array())
+    {
         $objReq = new HTTP_Request();
         $objReq->setUrl(OSTORE_URL . 'upgrade/index.php');
@@ -76,5 +80,6 @@
     }
 
-    function isLoggedInAdminPage() {
+    function isLoggedInAdminPage()
+    {
         $objSess = new SC_Session_Ex();
 
@@ -90,9 +95,11 @@
      * @return string
      */
-    function createSeed() {
+    function createSeed()
+    {
         return sha1(uniqid(rand(), true) . time());
     }
 
-    function getPublicKey() {
+    function getPublicKey()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrRet = $objQuery->select('*', 'dtb_ownersstore_settings');
@@ -105,5 +112,6 @@
      * オーナーズストアからの POST のため, トークンチェックしない.
      */
-    function doValidToken() {
+    function doValidToken()
+    {
         // nothing.
     }
Index: branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_ProductsList.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_ProductsList.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_ProductsList.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Upgrade_ProductsList extends LC_Page_Upgrade_Base {
+class LC_Page_Upgrade_ProductsList extends LC_Page_Upgrade_Base 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process($mode) {
+    function process($mode)
+    {
         $objLog  = new LC_Upgrade_Helper_Log;
         $objJson = new LC_Upgrade_Helper_Json;
@@ -157,5 +160,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_SiteCheck.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_SiteCheck.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_SiteCheck.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Upgrade_SiteCheck extends LC_Page_Upgrade_Base {
+class LC_Page_Upgrade_SiteCheck extends LC_Page_Upgrade_Base 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {}
+    function init()
+    {}
 
     /**
@@ -49,5 +51,6 @@
      * @return void
      */
-    function process($mode) {
+    function process($mode)
+    {
         $objLog  = new LC_Upgrade_Helper_LOG;
         $objJson = new LC_Upgrade_Helper_Json;
@@ -78,4 +81,5 @@
      * @return void
      */
-    function destroy() {}
+    function destroy()
+    {}
 }
Index: branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_Download.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_Download.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_Download.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Upgrade_Download extends LC_Page_Upgrade_Base {
+class LC_Page_Upgrade_Download extends LC_Page_Upgrade_Base 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process($mode) {
+    function process($mode)
+    {
         $objLog  = new LC_Upgrade_Helper_Log;
         $objLog->start($mode);
@@ -245,9 +248,11 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
-    function initParam() {
+    function initParam()
+    {
         $this->objForm = new SC_FormParam_Ex();
         $this->objForm->addParam(
@@ -262,5 +267,6 @@
      * @param object $objRet
      */
-    function updateMdlTable($objRet) {
+    function updateMdlTable($objRet)
+    {
         $table = 'dtb_module';
         $where = 'module_id = ?';
@@ -295,5 +301,6 @@
      * @return
      */
-    function notifyDownload($mode, $arrCookies) {
+    function notifyDownload($mode, $arrCookies)
+    {
         $arrPOSTParams = array(
             'eccube_url' => HTTP_URL
@@ -308,5 +315,6 @@
      * @return boolean
      */
-    function isValidAccess($mode) {
+    function isValidAccess($mode)
+    {
         $objLog = new LC_Upgrade_Helper_Log;
         switch ($mode) {
@@ -358,5 +366,6 @@
     }
 
-    function registerUpdateLog($arrLog, $objRet) {
+    function registerUpdateLog($arrLog, $objRet)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrInsert = array(
@@ -380,5 +389,6 @@
      * LC_Update_Updater::execute()で処理を実行する.
      */
-    function fileExecute($productCode) {
+    function fileExecute($productCode)
+    {
         $file = DATA_REALDIR . 'downloads/update/' . $productCode . '_update.php';
         if (file_exists($file)) {
Index: branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Log.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Log.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Log.php	(revision 22567)
@@ -26,5 +26,6 @@
  *
  */
-class LC_Upgrade_Helper_Log {
+class LC_Upgrade_Helper_Log 
+{
     /**
      * 開始メッセージを出力
@@ -32,5 +33,6 @@
      * @param string $mode
      */
-    function start($mode) {
+    function start($mode)
+    {
         $message = "##### $mode start #####";
         $this->log($message);
@@ -41,5 +43,6 @@
      * @param string $mode
      */
-    function end() {
+    function end()
+    {
         $message = '##### end #####';
         $this->log($message);
@@ -50,5 +53,6 @@
      * @param string $message
      */
-    function log($message) {
+    function log($message)
+    {
         GC_Utils_Ex::gfPrintLog($message, OSTORE_LOG_REALFILE);
     }
@@ -59,5 +63,6 @@
      * @param mixed $val
      */
-    function error($code, $val = null) {
+    function error($code, $val = null)
+    {
         $format = '* error! code:%s / debug:%s';
         $message = sprintf($format, $code, serialize($val));
Index: branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Json.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Json.php	(revision 21951)
+++ branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Json.php	(revision 22567)
@@ -4,5 +4,6 @@
  *
  */
-class LC_Upgrade_Helper_Json extends Services_JSON {
+class LC_Upgrade_Helper_Json extends Services_JSON 
+{
     /** */
     var $arrData = array(
@@ -18,5 +19,6 @@
      * @return SC_Upgrade_Helper_Json
      */
-    function __construct() {
+    function __construct()
+    {
         parent::Services_JSON();
     }
@@ -26,9 +28,11 @@
      *
      */
-    function isError() {
+    function isError()
+    {
         return $this->isSuccess() ? false : true;
     }
 
-    function isSuccess() {
+    function isSuccess()
+    {
         if ($this->arrData['status'] === OSTORE_STATUS_SUCCESS) {
             return true;
@@ -43,5 +47,6 @@
      * @param unknown_type $errMessage
      */
-    function setError($errCode) {
+    function setError($errCode)
+    {
         $masterData = new SC_DB_MasterData_Ex();
         $arrOStoreErrMsg = $masterData->getMasterData('mtb_ownersstore_err');
@@ -59,5 +64,6 @@
      * @param mixed $data
      */
-    function setSuccess($data = array(), $msg = '') {
+    function setSuccess($data = array(), $msg = '')
+    {
         $this->arrData['status'] = OSTORE_STATUS_SUCCESS;
         $this->arrData['data']   = $data;
@@ -69,5 +75,6 @@
      *
      */
-    function display() {
+    function display()
+    {
         header('Content-Type: text/javascript; charset=UTF-8');
         echo $this->encode($this->arrData);
@@ -85,5 +92,6 @@
      * @see SC_Utils_Ex::jsonDecode
      */
-    function decode($str) {
+    function decode($str)
+    {
         return SC_Utils_Ex::jsonDecode($str);
     }
Index: branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Complete.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Complete.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Complete.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_Shopping_Complete.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Shopping_Complete extends LC_Page_Ex {
+class LC_Page_Shopping_Complete extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = 'ご注文完了';
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -63,5 +66,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData();
@@ -76,5 +80,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -83,5 +88,6 @@
      * 決済モジュールから遷移する場合があるため, トークンチェックしない.
      */
-    function doValidToken() {
+    function doValidToken()
+    {
         // nothing.
     }
Index: branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php	(revision 22546)
+++ branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Multiple extends LC_Page_Ex {
+class LC_Page_Shopping_Multiple extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = 'お届け先の複数指定';
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $objSiteSess = new SC_SiteSession_Ex();
         $objCartSess = new SC_CartSession_Ex();
@@ -121,5 +125,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -131,5 +136,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('商品規格ID', 'product_class_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('商品名', 'name');
@@ -154,5 +160,6 @@
      * @return void
      */
-    function setParamToSplitItems(&$objFormParam, &$objCartSess) {
+    function setParamToSplitItems(&$objFormParam, &$objCartSess)
+    {
         $cartLists =& $objCartSess->getCartList($objCartSess->getKey());
         $arrItems = array();
@@ -185,5 +192,6 @@
      * @return array 配送住所のプルダウン用連想配列
      */
-    function getDelivAddrs(&$objCustomer, &$objPurchase, &$objAddress, $uniqid) {
+    function getDelivAddrs(&$objCustomer, &$objPurchase, &$objAddress, $uniqid)
+    {
         $masterData = new SC_DB_MasterData_Ex();
         $arrPref = $masterData->getMasterData('mtb_pref');
@@ -236,5 +244,6 @@
      * @return array エラー情報の配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objCartSess = new SC_CartSession_Ex();
 
@@ -298,5 +307,6 @@
      * @return void
      */
-    function saveMultipleShippings($uniqid, &$objFormParam, &$objCustomer, &$objPurchase, &$objCartSess, &$objAddress) {
+    function saveMultipleShippings($uniqid, &$objFormParam, &$objCustomer, &$objPurchase, &$objCartSess, &$objAddress)
+    {
         $arrParams = $objFormParam->getSwapArray();
 
Index: branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php	(revision 22555)
+++ branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Confirm extends LC_Page_Ex {
+class LC_Page_Shopping_Confirm extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = 'ご入力内容のご確認';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -70,5 +73,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCartSess = new SC_CartSession_Ex();
@@ -181,5 +185,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php	(revision 22554)
+++ branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Payment extends LC_Page_Ex {
+class LC_Page_Shopping_Payment extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -50,5 +51,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_onload = 'fnCheckInputPoint();';
@@ -63,5 +65,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -74,5 +77,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objSiteSess = new SC_SiteSession_Ex();
@@ -248,5 +252,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -260,5 +265,6 @@
      * @param array $arrShipping 配送先情報の配列
      */
-    function setFormParams(&$objFormParam, $arrParam, $deliv_only, &$arrShipping) {
+    function setFormParams(&$objFormParam, $arrParam, $deliv_only, &$arrShipping)
+    {
         $this->lfInitParam($objFormParam, $deliv_only, $arrShipping);
         $objFormParam->setParam($arrParam);
@@ -274,5 +280,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam, $deliv_only, &$arrShipping) {
+    function lfInitParam(&$objFormParam, $deliv_only, &$arrShipping)
+    {
         $objFormParam->addParam('配送業者', 'deliv_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('ポイント', 'use_point', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK', 'ZERO_START'));
@@ -303,5 +310,6 @@
      * @return array 入力チェック結果の配列
      */
-    function lfCheckError(&$objFormParam, $subtotal, $max_point) {
+    function lfCheckError(&$objFormParam, $subtotal, $max_point)
+    {
         $objPurchase = new SC_Helper_Purchase_Ex();
         // 入力データを渡す。
@@ -343,5 +351,6 @@
      * @param array $arrDelivTime 配送時間の配列
      */
-    function saveShippings(&$objFormParam, $arrDelivTime) {
+    function saveShippings(&$objFormParam, $arrDelivTime)
+    {
         $deliv_id = $objFormParam->getValue('deliv_id');
 
@@ -369,5 +378,6 @@
      * @return void
      */
-    function lfRegistData($uniqid, $arrForm, &$objPurchase, $arrPayment) {
+    function lfRegistData($uniqid, $arrForm, &$objPurchase, $arrPayment)
+    {
 
         $arrForm['order_temp_id'] = $uniqid;
@@ -401,5 +411,6 @@
      * @return array 支払い方法, お届け時間を格納した配列
      */
-    function getSelectedDeliv(&$objPurchase, &$objCartSess, $deliv_id) {
+    function getSelectedDeliv(&$objPurchase, &$objCartSess, $deliv_id)
+    {
         $arrResults = array();
         $arrResults['arrDelivTime'] = SC_Helper_Delivery_Ex::getDelivTime($deliv_id);
@@ -416,5 +427,6 @@
      * @return boolean 支払い方法の画像がある場合 true
      */
-    function hasPaymentImage($arrPayment) {
+    function hasPaymentImage($arrPayment)
+    {
         foreach ($arrPayment as $val) {
             if (!SC_Utils_Ex::isBlank($val['payment_image'])) {
@@ -431,5 +443,6 @@
      * @return boolean 配送業者が1社のみの場合 true
      */
-    function isSingleDeliv($arrDeliv) {
+    function isSingleDeliv($arrDeliv)
+    {
         if (count($arrDeliv) == 1) {
             return true;
@@ -446,5 +459,6 @@
      * @return string モバイル用テンプレートのパス
      */
-    function getMobileMainpage($is_single_deliv = true, $mode) {
+    function getMobileMainpage($is_single_deliv = true, $mode)
+    {
         switch ($mode) {
             case 'select_deliv':
Index: branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping.php	(revision 22531)
+++ branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping extends LC_Page_Ex {
+class LC_Page_Shopping extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = 'ログイン';
@@ -64,5 +66,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -75,5 +78,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objSiteSess = new SC_SiteSession_Ex();
@@ -272,5 +276,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -282,5 +287,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
 
         $objFormParam->addParam('お名前(姓)', 'order_name01', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'SPTAB_CHECK', 'MAX_LENGTH_CHECK'));
@@ -327,5 +333,6 @@
      * @return void
      */
-    function lfInitLoginFormParam(&$objFormParam) {
+    function lfInitLoginFormParam(&$objFormParam)
+    {
         $objFormParam->addParam('記憶する', 'login_memory', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('メールアドレス', 'login_email', STEXT_LEN, 'a', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
@@ -347,5 +354,6 @@
      * @return string 遷移先のパス
      */
-    function getNextLocation($product_type_id, $uniqid, &$objCustomer, &$objPurchase, &$objSiteSess) {
+    function getNextLocation($product_type_id, $uniqid, &$objCustomer, &$objPurchase, &$objSiteSess)
+    {
         switch ($product_type_id) {
             case PRODUCT_TYPE_DOWNLOAD:
@@ -371,5 +379,6 @@
      * @param boolean $isMultiple 複数配送の場合 true
      */
-    function lfRegistData($uniqid, &$objPurchase, &$objCustomer, &$objFormParam, $isMultiple = false) {
+    function lfRegistData($uniqid, &$objPurchase, &$objCustomer, &$objFormParam, $isMultiple = false)
+    {
         $arrParams = $objFormParam->getHashArray();
 
@@ -414,5 +423,6 @@
      * @return array エラー情報の配
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力値の変換
         $objFormParam->convParam();
@@ -463,5 +473,6 @@
      * @return void
      */
-    function setFormParams(&$objFormParam, &$objPurchase, $uniqid) {
+    function setFormParams(&$objFormParam, &$objPurchase, $uniqid)
+    {
         $arrOrderTemp = $objPurchase->getOrderTemp($uniqid);
         if (SC_Utils_Ex::isBlank($arrOrderTemp)) {
@@ -501,5 +512,6 @@
      * @see LC_PageError
      */
-    function lfGetErrorMessage($error) {
+    function lfGetErrorMessage($error)
+    {
         switch ($error) {
             case TEMP_LOGIN_ERROR:
Index: branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php	(revision 22546)
+++ branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Deliv extends LC_Page_Ex {
+class LC_Page_Shopping_Deliv extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $masterData = new SC_DB_MasterData_Ex();
@@ -55,5 +57,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objSiteSess = new SC_SiteSession_Ex();
@@ -191,5 +195,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -201,5 +206,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('その他のお届け先ID', 'other_deliv_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('お届け先チェック', 'deliv_check', INT_LEN, 'n', array('MAX_LENGTH_CHECK'));
@@ -219,5 +225,6 @@
      * @return boolean お届け先チェックの値が妥当な場合 true
      */
-    function registerDeliv($other_deliv_id, $uniqid, &$objPurchase, &$objCustomer, $objAddress) {
+    function registerDeliv($other_deliv_id, $uniqid, &$objPurchase, &$objCustomer, $objAddress)
+    {
         GC_Utils_Ex::gfDebugLog('register deliv. deliv_check=' . $deliv_check);
         $arrValues = array();
Index: branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_LoadPaymentModule.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_LoadPaymentModule.php	(revision 22539)
+++ branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_LoadPaymentModule.php	(revision 22567)
@@ -35,5 +35,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_LoadPaymentModule extends LC_Page_Ex {
+class LC_Page_Shopping_LoadPaymentModule extends LC_Page_Ex 
+{
 
     // }}}
@@ -45,5 +46,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
 
         $order_id = $this->getOrderId();
@@ -76,5 +79,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -90,5 +94,6 @@
      *                        失敗した場合 false
      */
-    function getModulePath($order_id) {
+    function getModulePath($order_id)
+    {
         $objPurchase = new SC_Helper_Purchase_Ex();
         $objPayment = new SC_Helper_Payment_Ex();
@@ -119,5 +124,6 @@
      *                         失敗した場合は, false を返す.
      */
-    function getOrderId() {
+    function getOrderId()
+    {
         if (isset($_SESSION['order_id'])
             && !SC_Utils_Ex::isBlank($_SESSION['order_id'])
@@ -143,5 +149,6 @@
      * 決済モジュールから遷移する場合があるため, トークンチェックしない.
      */
-    function doValidToken() {
+    function doValidToken()
+    {
         // nothing.
     }
Index: branches/version-2_12-dev/data/class/pages/unsupported/LC_Page_Unsupported.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/unsupported/LC_Page_Unsupported.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/unsupported/LC_Page_Unsupported.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Unsupported extends LC_Page_Ex {
+class LC_Page_Unsupported extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = '未対応デバイス';
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -58,5 +61,6 @@
     }
 
-    function action() {
+    function action()
+    {
 
 
@@ -68,5 +72,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Home.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Home.php	(revision 22318)
+++ branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Home.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Home extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Home extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'home.tpl';
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // DBバージョンの取得
@@ -112,5 +116,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -121,5 +126,6 @@
      * @return string PHPバージョン情報
      */
-    function lfGetPHPVersion() {
+    function lfGetPHPVersion()
+    {
         return 'PHP ' . phpversion();
     }
@@ -130,5 +136,6 @@
      * @return mixed DBバージョン情報
      */
-    function lfGetDBVersion() {
+    function lfGetDBVersion()
+    {
         $dbFactory = SC_DB_DBFactory_Ex::getInstance();
         return $dbFactory->sfGetDBVersion();
@@ -140,5 +147,6 @@
      * @return integer 会員数
      */
-    function lfGetCustomerCnt() {
+    function lfGetCustomerCnt()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'COUNT(customer_id)';
@@ -154,5 +162,6 @@
      * @return integer 結果数値
      */
-    function lfGetOrderYesterday($method) {
+    function lfGetOrderYesterday($method)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -169,5 +178,6 @@
      * @return integer 結果数値
      */
-    function lfGetOrderMonth($method) {
+    function lfGetOrderMonth($method)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $month = date('Y/m', mktime());
@@ -184,5 +194,6 @@
      * @return integer 会員の保持ポイント合計
      */
-    function lfGetTotalCustomerPoint() {
+    function lfGetTotalCustomerPoint()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -198,5 +209,6 @@
      * @return integer 昨日のレビュー書き込み数
      */
-    function lfGetReviewYesterday() {
+    function lfGetReviewYesterday()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -212,5 +224,6 @@
      * @return integer レビュー書き込み非表示数
      */
-    function lfGetReviewNonDisp() {
+    function lfGetReviewNonDisp()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -225,5 +238,6 @@
      * @return array 品切れ商品一覧
      */
-    function lfGetSoldOut() {
+    function lfGetSoldOut()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -242,5 +256,6 @@
      * @return array 新規受付一覧配列
      */
-    function lfGetNewOrder() {
+    function lfGetNewOrder()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -299,5 +314,6 @@
      * @return array 取得した情報配列
      */
-    function lfGetInfo() {
+    function lfGetInfo()
+    {
         // 更新情報の取得ON/OFF確認
         if (!ECCUBE_INFO) return array();
Index: branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Logout.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Logout.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Logout.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Logout extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Logout extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
     }
@@ -60,5 +63,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->lfDoLogout();
@@ -73,5 +77,6 @@
      * @return void
      */
-    function lfDoLogout() {
+    function lfDoLogout()
+    {
         $objSess = new SC_Session_Ex();
         $objSess->logout();
@@ -83,5 +88,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Seo.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Seo.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Seo.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Seo extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_Seo extends LC_Page_Admin_Ex 
+{
 
     // {{{ properties
@@ -47,5 +48,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/seo.tpl';
@@ -67,5 +69,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -77,5 +80,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // データの取得
@@ -132,5 +136,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -142,5 +147,6 @@
      * @return integer 更新結果
      */
-    function lfUpdPageData($arrUpdData = array()) {
+    function lfUpdPageData($arrUpdData = array())
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -160,5 +166,6 @@
     }
 
-    function lfInitParam($mode, &$objFormParam) {
+    function lfInitParam($mode, &$objFormParam)
+    {
         $objFormParam->addParam('デバイスID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('ページID', 'page_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -175,5 +182,6 @@
      * @return array 表示データ
      */
-    function lfSetData($arrPageData, $arrDispData) {
+    function lfSetData($arrPageData, $arrDispData)
+    {
 
         foreach ($arrPageData as $device_key => $arrVal) {
@@ -196,5 +204,6 @@
      * @return array $arrRet ページデータ($arrRet[デバイスタイプID])
      */
-    function lfGetSeoPageData() {
+    function lfGetSeoPageData()
+    {
         $objLayout = new SC_Helper_PageLayout_Ex();
 
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Holiday.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Holiday.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Holiday.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Holiday extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_Holiday extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/holiday.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -163,9 +167,11 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
-    function lfGetHolidayDataByHolidayID($holiday_id) {
+    function lfGetHolidayDataByHolidayID($holiday_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -174,5 +180,6 @@
     }
 
-    function lfGetHolidayList() {
+    function lfGetHolidayList()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -183,5 +190,6 @@
 
     /* DBへの挿入 */
-    function lfInsertClass($arrData, $member_id) {
+    function lfInsertClass($arrData, $member_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // INSERTする値を作成する。
@@ -200,5 +208,6 @@
 
     /* DBへの更新 */
-    function lfUpdateClass($arrData) {
+    function lfUpdateClass($arrData)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // UPDATEする値を作成する。
@@ -213,5 +222,6 @@
     }
 
-    function lfInitParam($mode, &$objFormParam) {
+    function lfInitParam($mode, &$objFormParam)
+    {
         switch ($mode) {
             case 'edit':
@@ -237,5 +247,6 @@
      * @return array
      */
-    function lfCheckError($mode, &$objFormParam) {
+    function lfCheckError($mode, &$objFormParam)
+    {
         $objFormParam->convParam();
         $arrErr = $objFormParam->checkError();
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Point.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Point.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Point.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Point extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_Point extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/point.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -116,15 +120,18 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* パラメーター情報の初期化 */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('ポイント付与率', 'point_rate', PERCENTAGE_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('会員登録時付与ポイント', 'welcome_point', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
     }
 
-    function lfUpdateData($post) {
+    function lfUpdateData($post)
+    {
         // 入力データを渡す。
         $sqlval = $post;
@@ -135,5 +142,6 @@
     }
 
-    function lfInsertData($post) {
+    function lfInsertData($post)
+    {
         // 入力データを渡す。
         $sqlval = $post;
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php	(revision 22567)
@@ -44,5 +44,6 @@
  * @version $Id:LC_Page_Admin_Basis_ZipInstall.php 16741 2007-11-08 00:43:24Z adachi $
  */
-class LC_Page_Admin_Basis_ZipInstall extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_ZipInstall extends LC_Page_Admin_Ex 
+{
 
     /** CSVの行数 */
@@ -66,5 +67,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/zip_install.tpl';
@@ -84,5 +86,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -94,5 +97,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -165,9 +169,11 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
-    function lfAutoCommitZip() {
+    function lfAutoCommitZip()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -184,5 +190,6 @@
      * @return void
      */
-    function lfDeleteZip() {
+    function lfDeleteZip()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -199,5 +206,6 @@
      * @return void
      */
-    function lfInitParam($tpl_mode, &$objFormParam) {
+    function lfInitParam($tpl_mode, &$objFormParam)
+    {
         if ($tpl_mode == 'manual') {
             $objFormParam->addParam('開始行', 'startRowNum', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
@@ -210,5 +218,6 @@
      * @return void
      */
-    function insertMtbZip($start = 1) {
+    function insertMtbZip($start = 1)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -274,5 +283,6 @@
             <!--
                 // 完了画面
-                function complete() {
+                function complete()
+                {
                     document.open('text/html','replace');
                     document.clear();
@@ -291,5 +301,6 @@
     }
 
-    function openZipCsv() {
+    function openZipCsv()
+    {
         $this->convertZipCsv();
         $fp = fopen(ZIP_CSV_UTF8_REALFILE, 'r');
@@ -300,5 +311,6 @@
     }
 
-    function convertZipCsv() {
+    function convertZipCsv()
+    {
         if (file_exists(ZIP_CSV_UTF8_REALFILE)) return;
 
@@ -321,10 +333,12 @@
     }
 
-    function countMtbZip() {
+    function countMtbZip()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         return $objQuery->count('mtb_zip');
     }
 
-    function countZipCsv() {
+    function countZipCsv()
+    {
         $line = 0;
         $fp = $this->openZipCsv();
@@ -351,5 +365,6 @@
      * @return void
      */
-    function lfDownloadZipFileFromJp() {
+    function lfDownloadZipFileFromJp()
+    {
         // Proxy経由を可能とする。
         // TODO Proxyの設定は「data/module/HTTP/Request.php」内の「function HTTP_Request」へ記述する。いずれは、外部設定としたい。
@@ -380,5 +395,6 @@
      * @return void
      */
-    function lfExtractZipFile() {
+    function lfExtractZipFile()
+    {
         $zip = zip_open($this->zip_csv_temp_realfile);
         if (!is_resource($zip)) {
@@ -433,5 +449,6 @@
      * @return string CSV の更新日時 (整形済みテキスト)
      */
-    function lfGetCsvDatetime() {
+    function lfGetCsvDatetime()
+    {
         return date('Y/m/d H:i:s', filemtime(ZIP_CSV_REALFILE));
     }
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Kiyaku.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Kiyaku.php	(revision 22294)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Kiyaku.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Kiyaku extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_Kiyaku extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/kiyaku.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -152,10 +156,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* DBへの挿入 */
-    function lfInsertClass($arrData, $member_id) {
+    function lfInsertClass($arrData, $member_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // INSERTする値を作成する。
@@ -173,5 +179,6 @@
     }
 
-    function lfGetKiyakuDataByKiyakuID($kiyaku_id) {
+    function lfGetKiyakuDataByKiyakuID($kiyaku_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -180,5 +187,6 @@
     }
 
-    function lfGetKiyakuList() {
+    function lfGetKiyakuList()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -189,5 +197,6 @@
 
     /* DBへの更新 */
-    function lfUpdateClass($arrData, $kiyaku_id) {
+    function lfUpdateClass($arrData, $kiyaku_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // UPDATEする値を作成する。
@@ -201,5 +210,6 @@
     }
 
-    function lfInitParam($mode, &$objFormParam) {
+    function lfInitParam($mode, &$objFormParam)
+    {
         switch ($mode) {
             case 'confirm':
@@ -224,5 +234,6 @@
      * @return array
      */
-    function lfCheckError($objFormParam) {
+    function lfCheckError($objFormParam)
+    {
         $arrErr = $objFormParam->checkError();
         $arrForm = $objFormParam->getHashArray();
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Payment.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Payment.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Payment.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Payment extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_Payment extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/payment.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objPayment = new SC_Helper_Payment_Ex();
@@ -114,5 +118,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_PaymentInput.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_PaymentInput.php	(revision 22566)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_PaymentInput.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_PaymentInput extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_PaymentInput extends LC_Page_Admin_Ex 
+{
 
     // {{{ properties
@@ -47,5 +48,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/payment_input.tpl';
@@ -61,5 +63,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -71,5 +74,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objPayment = new SC_Helper_Payment_Ex();
@@ -160,10 +164,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* ファイル情報の初期化 */
-    function lfInitFile() {
+    function lfInitFile()
+    {
         $this->objUpFile->addFile('ロゴ画像', 'payment_image', array('gif','jpeg','jpg','png'), IMAGE_SIZE, false, CLASS_IMAGE_WIDTH, CLASS_IMAGE_HEIGHT);
         return $this->objUpFile;
@@ -171,5 +177,6 @@
 
     /* パラメーター情報の初期化 */
-    function lfInitParam($mode, &$objFormParam) {
+    function lfInitParam($mode, &$objFormParam)
+    {
 
         switch ($mode) {
@@ -212,5 +219,6 @@
 
     /* DBへデータを登録する */
-    function lfRegistData(&$objFormParam, SC_Helper_Payment_Ex $objPayment, $member_id, $payment_id = '') {
+    function lfRegistData(&$objFormParam, SC_Helper_Payment_Ex $objPayment, $member_id, $payment_id = '')
+    {
 
         $sqlval = array_merge($objFormParam->getHashArray(), $this->objUpFile->getDBFileList());
@@ -228,5 +236,6 @@
 
     /* 入力内容のチェック */
-    function lfCheckError($post, $objFormParam, SC_Helper_Payment_Ex $objPayment) {
+    function lfCheckError($post, $objFormParam, SC_Helper_Payment_Ex $objPayment)
+    {
 
         // DBのデータを取得
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	(revision 22487)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/index.tpl';
@@ -68,5 +70,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -78,5 +81,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objFormParam = new SC_FormParam_Ex();
@@ -116,5 +120,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -125,5 +130,6 @@
      * @deprecated 2.12.4
      */
-    function lfUpdateData($arrData) {
+    function lfUpdateData($arrData)
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         SC_Helper_DB_Ex::registerBasisData($arrData);
@@ -135,10 +141,12 @@
      * @deprecated 2.12.4
      */
-    function lfInsertData($arrData) {
+    function lfInsertData($arrData)
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         SC_Helper_DB_Ex::registerBasisData($arrData);
     }
 
-    function lfInitParam(&$objFormParam, $post) {
+    function lfInitParam(&$objFormParam, $post)
+    {
         $objFormParam->addParam('会社名', 'company_name', STEXT_LEN, 'KVa',  array('MAX_LENGTH_CHECK'));
         $objFormParam->addParam('会社名(フリガナ)', 'company_kana', STEXT_LEN, 'KVC',  array('KANA_CHECK','MAX_LENGTH_CHECK'));
@@ -191,5 +199,6 @@
 
     // 入力エラーチェック
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $arrErr = $objFormParam->checkError();
         $post = $objFormParam->getHashArray();
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Mail.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Mail.php	(revision 22304)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Mail.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Mail extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_Mail extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/mail.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $masterData = new SC_DB_MasterData_Ex();
@@ -120,9 +124,11 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
-    function lfGetMailTemplateByTemplateID($template_id) {
+    function lfGetMailTemplateByTemplateID($template_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -131,5 +137,6 @@
     }
 
-    function lfRegistMailTemplate($post, $member_id) {
+    function lfRegistMailTemplate($post, $member_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -148,5 +155,6 @@
     }
 
-    function lfInitParam($mode, &$objFormParam) {
+    function lfInitParam($mode, &$objFormParam)
+    {
         switch ($mode) {
             case 'regist':
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Delivery.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Delivery.php	(revision 22543)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Delivery.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Delivery extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_Delivery extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/delivery.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDeliv = new SC_Helper_Delivery_Ex();
@@ -115,5 +119,6 @@
      * @return array
      */
-    function lfCheckError($mode, &$objFormParam) {
+    function lfCheckError($mode, &$objFormParam)
+    {
         $arrErr = array();
         switch ($mode) {
@@ -138,5 +143,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php	(revision 22566)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_DeliveryInput extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_DeliveryInput extends LC_Page_Admin_Ex 
+{
     // }}}
     // {{{ functions
@@ -41,5 +42,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/delivery_input.tpl';
@@ -60,5 +62,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -70,5 +73,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $objFormParam = new SC_FormParam_Ex();
         $this->lfInitParam($this->mode, $objFormParam);
@@ -105,10 +109,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* パラメーター情報の初期化 */
-    function lfInitParam($mode, &$objFormParam) {
+    function lfInitParam($mode, &$objFormParam)
+    {
         $objFormParam = new SC_FormParam_Ex();
 
@@ -148,5 +154,6 @@
      * @return $deliv_id
      */
-    function lfRegistData($arrRet, $member_id) {
+    function lfRegistData($arrRet, $member_id)
+    {
         $objDelivery = new SC_Helper_Delivery_Ex();
 
@@ -197,5 +204,6 @@
 
     /* 配送業者情報の取得 */
-    function lfGetDelivData(&$objFormParam) {
+    function lfGetDelivData(&$objFormParam)
+    {
         $objDelivery = new SC_Helper_Delivery_Ex();
 
@@ -229,5 +237,6 @@
 
     /* 入力内容のチェック */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力データを渡す。
         $arrRet =  $objFormParam->getHashArray();
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Tradelaw.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Tradelaw.php	(revision 22550)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Tradelaw.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Tradelaw extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Basis_Tradelaw extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'basis/tradelaw.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -117,10 +121,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* パラメーター情報の初期化 */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('販売業者', 'law_company', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('運営責任者', 'law_manager', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
@@ -146,5 +152,6 @@
     }
 
-    function lfUpdateData($sqlval) {
+    function lfUpdateData($sqlval)
+    {
         $sqlval['update_date'] = 'CURRENT_TIMESTAMP';
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -153,5 +160,6 @@
     }
 
-    function lfInsertData($sqlval) {
+    function lfInsertData($sqlval)
+    {
         $sqlval['update_date'] = 'CURRENT_TIMESTAMP';
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -161,5 +169,6 @@
 
     /* 入力内容のチェック */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力データを渡す。
         $arrRet =  $objFormParam->getHashArray();
Index: branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Customer extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Customer extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'customer/index.tpl';
@@ -86,5 +88,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -96,5 +99,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -147,5 +151,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -157,5 +162,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam);
         $objFormParam->addParam('編集対象会員ID', 'edit_customer_id', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK'));
@@ -168,5 +174,6 @@
      * @return array エラー配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         return SC_Helper_Customer_Ex::sfCheckErrorSearchParam($objFormParam);
     }
@@ -178,5 +185,6 @@
      * @return boolean true:成功 false:失敗
      */
-    function lfDoDeleteCustomer($customer_id) {
+    function lfDoDeleteCustomer($customer_id)
+    {
         $arrData = SC_Helper_Customer_Ex::sfGetCustomerDataFromId($customer_id, 'del_flg = 0');
         if (SC_Utils_Ex::isBlank($arrData)) {
@@ -198,5 +206,6 @@
      * @return boolean true:成功 false:失敗
      */
-    function lfDoResendMail($customer_id) {
+    function lfDoResendMail($customer_id)
+    {
         $arrData = SC_Helper_Customer_Ex::sfGetCustomerDataFromId($customer_id);
         if (SC_Utils_Ex::isBlank($arrData) or $arrData['del_flg'] == 1) {
@@ -217,5 +226,6 @@
      * @return array( integer 全体件数, mixed 会員データ一覧配列, mixed SC_PageNaviオブジェクト)
      */
-    function lfDoSearch($arrParam) {
+    function lfDoSearch($arrParam)
+    {
         return SC_Helper_Customer_Ex::sfGetSearchData($arrParam);
     }
@@ -227,5 +237,6 @@
      * @return boolean true:成功 false:失敗
      */
-    function lfDoCSV($arrParam) {
+    function lfDoCSV($arrParam)
+    {
         $objSelect = new SC_CustomerList_Ex($arrParam, 'customer');
         $order = 'update_date DESC, customer_id DESC';
Index: branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php	(revision 22537)
+++ branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'customer/edit.tpl';
@@ -74,5 +76,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -84,5 +87,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -197,5 +201,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -207,5 +212,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         // 会員項目のパラメーター取得
         SC_Helper_Customer_Ex::sfCustomerEntryParam($objFormParam, true);
@@ -222,5 +228,6 @@
      * @return void
      */
-    function lfInitSearchParam(&$objFormParam) {
+    function lfInitSearchParam(&$objFormParam)
+    {
         SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam);
         // 初回受け入れ時用
@@ -234,5 +241,6 @@
      * @return array エラー配列
      */
-    function lfCheckErrorSearchParam(&$objFormParam) {
+    function lfCheckErrorSearchParam(&$objFormParam)
+    {
         return SC_Helper_Customer_Ex::sfCheckErrorSearchParam($objFormParam);
     }
@@ -244,5 +252,6 @@
      * @return array エラー配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $arrErr = SC_Helper_Customer_Ex::sfCustomerMypageErrorCheck($objFormParam, true);
 
@@ -283,5 +292,6 @@
      * @return array エラー配列
      */
-    function lfRegistData(&$objFormParam) {
+    function lfRegistData(&$objFormParam)
+    {
         $objQuery   =& SC_Query_Ex::getSingletonInstance();
         // 登録用データ取得
@@ -312,5 +322,6 @@
      * @return array( integer 全体件数, mixed 会員データ一覧配列, mixed SC_PageNaviオブジェクト)
      */
-    function lfPurchaseHistory($customer_id, $pageno = 0) {
+    function lfPurchaseHistory($customer_id, $pageno = 0)
+    {
         if (SC_Utils_Ex::isBlank($customer_id)) {
             return array('0', array(), NULL);
Index: branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_SearchCustomer.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_SearchCustomer.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_SearchCustomer.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Customer_SearchCustomer extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Customer_SearchCustomer extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'customer/search_customer.tpl';
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -98,5 +102,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -108,5 +113,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam);
     }
@@ -118,5 +124,6 @@
      * @return array エラー配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         return SC_Helper_Customer_Ex::sfCheckErrorSearchParam($objFormParam);
     }
@@ -128,5 +135,6 @@
      * @return array( integer 全体件数, mixed 会員データ一覧配列, mixed SC_PageNaviオブジェクト)
      */
-    function lfDoSearch($arrParam) {
+    function lfDoSearch($arrParam)
+    {
         return SC_Helper_Customer_Ex::sfGetSearchData($arrParam);
     }
Index: branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_Template.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_Template.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_Template.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_Template extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Mail_Template extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'mail/template.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objMailHelper = new SC_Helper_Mail_Ex();
@@ -93,5 +97,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -102,5 +107,6 @@
      * @return void
      */
-    function lfDeleteMailTemplate($template_id) {
+    function lfDeleteMailTemplate($template_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->update('dtb_mailmaga_template',
Index: branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_TemplateInput.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_TemplateInput.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_TemplateInput.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_TemplateInput extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Mail_TemplateInput extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'mail/template_input.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objMailHelper = new SC_Helper_Mail_Ex();
@@ -115,5 +119,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -126,5 +131,6 @@
      * @return void
      */
-    function lfRegistData(&$objFormParam, $template_id = null) {
+    function lfRegistData(&$objFormParam, $template_id = null)
+    {
 
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -154,5 +160,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('メール形式', 'mail_method', INT_LEN, 'n', array('EXIST_CHECK','ALNUM_CHECK'));
         $objFormParam->addParam('Subject', 'subject', STEXT_LEN, 'KVa', array('EXIST_CHECK','SPTAB_CHECK','MAX_LENGTH_CHECK'));
Index: branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Mail extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'mail/index.tpl';
@@ -83,5 +85,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -93,5 +96,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -181,5 +185,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -191,5 +196,6 @@
      * @return void
      */
-    function lfInitParamSearchCustomer(&$objFormParam) {
+    function lfInitParamSearchCustomer(&$objFormParam)
+    {
         SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam);
         $objFormParam->addParam('配信形式', 'search_htmlmail', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK'));
@@ -203,5 +209,6 @@
      * @return void
      */
-    function lfAddParamSelectTemplate(&$objFormParam) {
+    function lfAddParamSelectTemplate(&$objFormParam)
+    {
         $objFormParam->addParam('メール形式', 'mail_method', INT_LEN, 'n', array('EXIST_CHECK','ALNUM_CHECK'));
         $objFormParam->addParam('Subject', 'subject', STEXT_LEN, 'KVa', array('EXIST_CHECK','SPTAB_CHECK','MAX_LENGTH_CHECK'));
@@ -216,5 +223,6 @@
      * @return array key:template_id value:サブジェクト【配信形式】
      */
-    function lfGetMailTemplateList($arrTemplate) {
+    function lfGetMailTemplateList($arrTemplate)
+    {
         if (is_array($arrTemplate)) {
             foreach ($arrTemplate as $line) {
@@ -232,5 +240,6 @@
      * @return void
      */
-    function lfGetTemplateData(&$objFormParam, $template_id) {
+    function lfGetTemplateData(&$objFormParam, $template_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->setOrder('template_id DESC');
@@ -245,5 +254,6 @@
      * @return integer 登録した行の dtb_send_history.send_id の値
      */
-    function lfRegisterData(&$objFormParam) {
+    function lfRegisterData(&$objFormParam)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -289,5 +299,6 @@
      * @return array
      */
-    function lfGetMailQuery($send_id) {
+    function lfGetMailQuery($send_id)
+    {
 
         $objQuery =& SC_Query_Ex::getSingletonInstance();
Index: branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_History.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_History.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_History.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_History extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Mail_History extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'mail/history.tpl';
@@ -57,5 +59,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -67,5 +70,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         switch ($this->getMode()) {
@@ -91,5 +95,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -101,5 +106,6 @@
      * @return array( integer 全体件数, mixed メール配信データ一覧配列, mixed SC_PageNaviオブジェクト)
      */
-    function lfDoSearch($search_pageno = 1) {
+    function lfDoSearch($search_pageno = 1)
+    {
 
         // 引数の初期化
@@ -140,5 +146,6 @@
      * @return void
      */
-    function lfDeleteHistory($send_id) {
+    function lfDeleteHistory($send_id)
+    {
             $objQuery =& SC_Query_Ex::getSingletonInstance();
             $objQuery->update('dtb_send_history',
Index: branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_Preview.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_Preview.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail_Preview.php	(revision 22567)
@@ -31,5 +31,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_Preview extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Mail_Preview extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -41,5 +42,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_subtitle = 'プレビュー';
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objMailHelper = new SC_Helper_Mail_Ex();
@@ -94,5 +98,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductRank.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductRank.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductRank.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ProductRank extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_ProductRank extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/product_rank.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -113,10 +117,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* 商品読み込み */
-    function lfGetProduct($category_id) {
+    function lfGetProduct($category_id)
+    {
         // FIXME SC_Product クラスを使用した実装
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -151,5 +157,6 @@
      * 商品の数値指定での並び替え実行
      */
-    function lfRenumber($parent_category_id) {
+    function lfRenumber($parent_category_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -176,15 +183,18 @@
     }
 
-    function lfRankUp(&$objDb, $parent_category_id, $product_id) {
+    function lfRankUp(&$objDb, $parent_category_id, $product_id)
+    {
         $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id);
         $objDb->sfRankUp('dtb_product_categories', 'product_id', $product_id, $where);
     }
 
-    function lfRankDown(&$objDb, $parent_category_id, $product_id) {
+    function lfRankDown(&$objDb, $parent_category_id, $product_id)
+    {
         $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id);
         $objDb->sfRankDown('dtb_product_categories', 'product_id', $product_id, $where);
     }
 
-    function lfRankMove(&$objDb, $parent_category_id, $product_id) {
+    function lfRankMove(&$objDb, $parent_category_id, $product_id)
+    {
         $key = 'pos-'.$product_id;
         $input_pos = mb_convert_kana($_POST[$key], 'n');
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Category.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Category.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Category.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Category extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_Category extends LC_Page_Admin_Ex 
+{
 
     // {{{ properties
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_maintitle = '商品管理';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb      = new SC_Helper_DB_Ex();
@@ -201,5 +205,6 @@
      * @return void
      */
-    function doDelete(&$objFormParam, &$objDb) {
+    function doDelete(&$objFormParam, &$objDb)
+    {
         $category_id = $objFormParam->getValue('category_id');
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -231,5 +236,6 @@
      * @return void
      */
-    function doPreEdit(&$objFormParam) {
+    function doPreEdit(&$objFormParam)
+    {
         $category_id = $objFormParam->getValue('category_id');
 
@@ -257,5 +263,6 @@
      * @return void
      */
-    function doEdit(&$objFormParam) {
+    function doEdit(&$objFormParam)
+    {
         $category_id = $objFormParam->getValue('category_id');
 
@@ -293,5 +300,6 @@
      * @return void
      */
-    function checkError(&$objFormParam, $add) {
+    function checkError(&$objFormParam, $add)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -348,5 +356,6 @@
      * @return void
      */
-    function doUp(&$objFormParam) {
+    function doUp(&$objFormParam)
+    {
         $category_id = $objFormParam->getValue('category_id');
 
@@ -375,5 +384,6 @@
      * @return void
      */
-    function doDown(&$objFormParam) {
+    function doDown(&$objFormParam)
+    {
         $category_id = $objFormParam->getValue('category_id');
 
@@ -402,5 +412,6 @@
      * @return void
      */
-    function initParam(&$objFormParam) {
+    function initParam(&$objFormParam)
+    {
         $objFormParam->addParam('親カテゴリID', 'parent_category_id', null, null, array());
         $objFormParam->addParam('カテゴリID', 'category_id', null, null, array());
@@ -418,5 +429,6 @@
      * @return array カテゴリの配列
      */
-    function findCategoiesByParentCategoryId($parent_category_id) {
+    function findCategoiesByParentCategoryId($parent_category_id)
+    {
         if (!$parent_category_id) {
             $parent_category_id = 0;
@@ -435,5 +447,6 @@
      * @return void
      */
-    function updateCategory($category_id, $arrCategory) {
+    function updateCategory($category_id, $arrCategory)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -452,5 +465,6 @@
      * @return void
      */
-    function registerCategory($arrCategory) {
+    function registerCategory($arrCategory)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -498,5 +512,6 @@
      * @param 超えている場合 true
      */
-    function isOverLevel($parent_category_id) {
+    function isOverLevel($parent_category_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $level = $objQuery->get('level', 'dtb_category', 'category_id = ?', array($parent_category_id));
@@ -509,10 +524,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     // 並びが1つ下のIDを取得する。
-    function lfGetDownRankID($objQuery, $table, $pid_name, $id_name, $id) {
+    function lfGetDownRankID($objQuery, $table, $pid_name, $id_name, $id)
+    {
         // 親IDを取得する。
         $col = "$pid_name";
@@ -535,5 +552,6 @@
 
     // 並びが1つ上のIDを取得する。
-    function lfGetUpRankID($objQuery, $table, $pid_name, $id_name, $id) {
+    function lfGetUpRankID($objQuery, $table, $pid_name, $id_name, $id)
+    {
         // 親IDを取得する。
         $col = "$pid_name";
@@ -555,5 +573,6 @@
     }
 
-    function lfCountChilds($objQuery, $table, $pid_name, $id_name, $id) {
+    function lfCountChilds($objQuery, $table, $pid_name, $id_name, $id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         // 子ID一覧を取得
@@ -562,5 +581,6 @@
     }
 
-    function lfUpRankChilds($objQuery, $table, $pid_name, $id_name, $id, $count) {
+    function lfUpRankChilds($objQuery, $table, $pid_name, $id_name, $id, $count)
+    {
         $objDb = new SC_Helper_DB_Ex();
         // 子ID一覧を取得
@@ -574,5 +594,6 @@
     }
 
-    function lfDownRankChilds($objQuery, $table, $pid_name, $id_name, $id, $count) {
+    function lfDownRankChilds($objQuery, $table, $pid_name, $id_name, $id, $count)
+    {
         $objDb = new SC_Helper_DB_Ex();
         // 子ID一覧を取得
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSVCategory.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSVCategory.php	(revision 22251)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSVCategory.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $$Id$$
  */
-class LC_Page_Admin_Products_UploadCSVCategory extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_UploadCSVCategory extends LC_Page_Admin_Ex 
+{
 
     // {{{ properties
@@ -66,5 +67,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/upload_csv_category.tpl';
@@ -85,5 +87,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -95,5 +98,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // CSV管理ヘルパー
@@ -141,5 +145,6 @@
      * @return void
      */
-    function addRowResult($line_count, $message) {
+    function addRowResult($line_count, $message)
+    {
         $this->arrRowResult[] = $line_count . '行目：' . $message;
     }
@@ -152,5 +157,6 @@
      * @return void
      */
-    function addRowErr($line_count, $message) {
+    function addRowErr($line_count, $message)
+    {
         $this->arrRowErr[] = $line_count . '行目：' . $message;
     }
@@ -164,5 +170,6 @@
      * @return void
      */
-    function doUploadCsv(&$objFormParam, &$objUpFile) {
+    function doUploadCsv(&$objFormParam, &$objUpFile)
+    {
         // ファイルアップロードのチェック
         $objUpFile->makeTempFile('csv_file');
@@ -262,5 +269,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -271,5 +279,6 @@
      * @return void
      */
-    function lfInitFile(&$objUpFile) {
+    function lfInitFile(&$objUpFile)
+    {
         $objUpFile->addFile('CSVファイル', 'csv_file', array('csv'), CSV_SIZE, true, 0, 0, false);
     }
@@ -281,5 +290,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam, &$arrCSVFrame) {
+    function lfInitParam(&$objFormParam, &$arrCSVFrame)
+    {
         // 固有の初期値調整
         $arrCSVFrame = $this->lfSetParamDefaultValue($arrCSVFrame);
@@ -326,5 +336,6 @@
      * @return void
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力データを渡す。
         $arrRet =  $objFormParam->getHashArray();
@@ -347,5 +358,6 @@
      * @return void
      */
-    function lfInitTableInfo() {
+    function lfInitTableInfo()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $this->arrRegistColumn = $objQuery->listTableFields('dtb_category');
@@ -361,5 +373,6 @@
      * @return integer カテゴリID
      */
-    function lfRegistCategory($objQuery, $line, &$objFormParam) {
+    function lfRegistCategory($objQuery, $line, &$objFormParam)
+    {
         // 登録データ対象取得
         $arrList = $objFormParam->getHashArray();
@@ -407,5 +420,6 @@
      * @return array $arrCSVFrame CSV構造配列
      */
-    function lfSetParamDefaultValue(&$arrCSVFrame) {
+    function lfSetParamDefaultValue(&$arrCSVFrame)
+    {
         foreach ($arrCSVFrame as $key => $val) {
             switch ($val['col']) {
@@ -429,5 +443,6 @@
      * @return $sqlval 登録情報配列
      */
-    function lfSetCategoryDefaultData(&$sqlval) {
+    function lfSetCategoryDefaultData(&$sqlval)
+    {
         if ($sqlval['del_flg'] == '') {
             $sqlval['del_flg'] = '0'; //有効
@@ -449,5 +464,6 @@
      * @return array エラー配列
      */
-    function lfCheckErrorDetail($item, $arrErr) {
+    function lfCheckErrorDetail($item, $arrErr)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         /*
@@ -517,5 +533,6 @@
      * @return integer カテゴリID
      */
-    function registerCategory($parent_category_id, $category_name, $creator_id, $category_id = null) {
+    function registerCategory($parent_category_id, $category_name, $creator_id, $category_id = null)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -572,5 +589,6 @@
      * @return string $time DB保存用の時間文字列
      */
-    function lfGetDbFormatTimeWithLine($line_no = '') {
+    function lfGetDbFormatTimeWithLine($line_no = '')
+    {
         $time = date('Y-m-d H:i:s');
         // 秒以下を生成
@@ -590,5 +608,6 @@
      * @return boolean true:有効なデータがある false:有効ではない
      */
-    function lfIsDbRecord($table, $keyname, $item) {
+    function lfIsDbRecord($table, $keyname, $item)
+    {
         if (array_search($keyname, $this->arrFormKeyList) !== FALSE  //入力対象である
             && $item[$keyname] != ''   // 空ではない
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Maker extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_Maker extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/maker.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -150,5 +154,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -160,5 +165,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('メーカーID', 'maker_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('メーカー名', 'name', SMTEXT_LEN, 'KVa', array('EXIST_CHECK','SPTAB_CHECK','MAX_LENGTH_CHECK'));
@@ -170,5 +176,6 @@
      * @return array $arrMaker メーカー情報
      */
-    function lfDisp() {
+    function lfDisp()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -187,5 +194,6 @@
      * @return void
      */
-    function lfInsert(&$arrForm) {
+    function lfInsert(&$arrForm)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -208,5 +216,6 @@
      * @return void
      */
-    function lfUpdate(&$arrForm) {
+    function lfUpdate(&$arrForm)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -226,5 +235,6 @@
      * @return void
      */
-    function lfDelete($maker_id) {
+    function lfDelete($maker_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objDb->sfDeleteRankRecord('dtb_maker', 'maker_id', $maker_id, '', true);
@@ -238,5 +248,6 @@
      * @return void
      */
-    function lfRankChange($maker_id, $mode) {
+    function lfRankChange($maker_id, $mode)
+    {
         $objDb = new SC_Helper_DB_Ex();
 
@@ -262,5 +273,6 @@
      * @return array  $arrForm メーカー名を追加
      */
-    function lfPreEdit(&$arrForm, $maker_id) {
+    function lfPreEdit(&$arrForm, $maker_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -280,5 +292,6 @@
      * @return array $objErr->arrErr エラー内容
      */
-    function lfCheckError(&$arrForm, &$objFormParam) {
+    function lfCheckError(&$arrForm, &$objFormParam)
+    {
 
         $arrErr = $objFormParam->checkError();
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/index.tpl';
@@ -78,5 +80,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -88,5 +91,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -187,5 +191,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -197,5 +202,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
 
         // POSTされる値
@@ -228,5 +234,6 @@
      * @return void
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objErr = new SC_CheckError_Ex($objFormParam->getHashArray());
         $objErr->arrErr = $objFormParam->checkError();
@@ -238,5 +245,6 @@
 
     // カテゴリIDをキー、カテゴリ名を値にする配列を返す。
-    function lfGetIDName($arrCatKey, $arrCatVal) {
+    function lfGetIDName($arrCatKey, $arrCatVal)
+    {
         $max = count($arrCatKey);
         for ($cnt = 0; $cnt < $max; $cnt++) {
@@ -255,5 +263,6 @@
      * @return void
      */
-    function doDelete($where, $arrParam = array()) {
+    function doDelete($where, $arrParam = array())
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $sqlval['del_flg']     = 1;
@@ -282,5 +291,6 @@
      * @return void
      */
-    function buildQuery($key, &$where, &$arrValues, &$objFormParam, &$objDb) {
+    function buildQuery($key, &$where, &$arrValues, &$objFormParam, &$objDb)
+    {
         $dbFactory = SC_DB_DBFactory_Ex::getInstance();
         switch ($key) {
@@ -367,5 +377,6 @@
      * @return integer 検索結果の行数
      */
-    function getNumberOfLines($where, $arrValues) {
+    function getNumberOfLines($where, $arrValues)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         return $objQuery->count('dtb_products', $where, $arrValues);
@@ -383,5 +394,6 @@
      * @return array 商品の検索結果
      */
-    function findProducts($where, $arrValues, $limit, $offset, $order, &$objProduct) {
+    function findProducts($where, $arrValues, $limit, $offset, $order, &$objProduct)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php	(revision 22307)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Product extends LC_Page_Admin_Products_Ex {
+class LC_Page_Admin_Products_Product extends LC_Page_Admin_Products_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/product.tpl';
@@ -65,5 +67,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -75,5 +78,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -294,5 +298,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -306,5 +311,6 @@
      * @return void
      */
-    function lfInitFormParam_PreEdit(&$objFormParam, $arrPost) {
+    function lfInitFormParam_PreEdit(&$objFormParam, $arrPost)
+    {
         $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->setParam($arrPost);
@@ -319,5 +325,6 @@
      * @return void
      */
-    function lfInitFormParam(&$objFormParam, $arrPost) {
+    function lfInitFormParam(&$objFormParam, $arrPost)
+    {
         $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('商品名', 'name', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'SPTAB_CHECK', 'MAX_LENGTH_CHECK'));
@@ -387,5 +394,6 @@
      * @return void
      */
-    function lfInitFormParam_UploadImage(&$objFormParam) {
+    function lfInitFormParam_UploadImage(&$objFormParam)
+    {
         $objFormParam->addParam('image_key', 'image_key', '', '', array());
     }
@@ -398,5 +406,6 @@
      * @return void
      */
-    function lfInitFormParam_UploadDown(&$objFormParam) {
+    function lfInitFormParam_UploadDown(&$objFormParam)
+    {
         $objFormParam->addParam('down_key', 'down_key', '', '', array());
     }
@@ -409,5 +418,6 @@
      * @return void
      */
-    function lfInitFormParam_RecommendSelect(&$objFormParam) {
+    function lfInitFormParam_RecommendSelect(&$objFormParam)
+    {
         $objFormParam->addParam('anchor_key', 'anchor_key', '', '', array());
         $objFormParam->addParam('select_recommend_no', 'select_recommend_no', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -421,5 +431,6 @@
      * @return void
      */
-    function lfInitFile(&$objUpFile) {
+    function lfInitFile(&$objUpFile)
+    {
         $objUpFile->addFile('一覧-メイン画像', 'main_list_image', array('jpg', 'gif', 'png'),IMAGE_SIZE, false, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
         $objUpFile->addFile('詳細-メイン画像', 'main_image', array('jpg', 'gif', 'png'), IMAGE_SIZE, false, NORMAL_IMAGE_WIDTH, NORMAL_IMAGE_HEIGHT);
@@ -438,5 +449,6 @@
      * @return void
      */
-    function lfInitDownFile(&$objDownFile) {
+    function lfInitDownFile(&$objDownFile)
+    {
         $objDownFile->addFile('ダウンロード販売用ファイル', 'down_file', explode(',', DOWNLOAD_EXTENSION),DOWN_SIZE, true, 0, 0);
     }
@@ -451,5 +463,6 @@
      * @return array エラー情報を格納した連想配列
      */
-    function lfCheckError_Edit(&$objFormParam, &$objUpFile, &$objDownFile, $arrForm) {
+    function lfCheckError_Edit(&$objFormParam, &$objUpFile, &$objDownFile, $arrForm)
+    {
         $objErr = new SC_CheckError_Ex($arrForm);
         $arrErr = array();
@@ -493,5 +506,6 @@
      * @return void
      */
-    function lfCheckError_RecommendSelect(&$arrForm, &$arrErr) {
+    function lfCheckError_RecommendSelect(&$arrForm, &$arrErr)
+    {
         $select_recommend_no = $arrForm['select_recommend_no'];
         $select_recommend_id = $arrForm['recommend_id' . $select_recommend_no];
@@ -519,5 +533,6 @@
      * @return array 検索パラメーター配列
      */
-    function lfGetSearchParam($arrPost) {
+    function lfGetSearchParam($arrPost)
+    {
         $arrSearchParam = array();
         $objFormParam = new SC_FormParam_Ex();
@@ -539,5 +554,6 @@
      * @return array フォームパラメーター配列
      */
-    function lfGetFormParam_PreEdit(&$objUpFile, &$objDownFile, $product_id) {
+    function lfGetFormParam_PreEdit(&$objUpFile, &$objDownFile, $product_id)
+    {
         $arrForm = array();
 
@@ -559,5 +575,6 @@
      * @return array フォームパラメーター配列
      */
-    function lfGetFormParam_Complete(&$objFormParam) {
+    function lfGetFormParam_Complete(&$objFormParam)
+    {
         $arrForm = $objFormParam->getHashArray();
         $arrForm['category_id'] = unserialize($arrForm['category_id']);
@@ -576,5 +593,6 @@
      * @return array 表示用フォームパラメーター配列
      */
-    function lfSetViewParam_InputPage(&$objUpFile, &$objDownFile, &$arrForm) {
+    function lfSetViewParam_InputPage(&$objUpFile, &$objDownFile, &$arrForm)
+    {
         // カテゴリマスターデータ取得
         $objDb = new SC_Helper_DB_Ex();
@@ -618,5 +636,6 @@
      * @return array 表示用フォームパラメーター配列
      */
-    function lfSetViewParam_ConfirmPage(&$objUpFile, &$objDownFile, &$arrForm) {
+    function lfSetViewParam_ConfirmPage(&$objUpFile, &$objDownFile, &$arrForm)
+    {
         // カテゴリ表示用
         $arrForm['arrCategoryId'] = $arrForm['category_id'];
@@ -638,5 +657,6 @@
      * @return void
      */
-    function lfSetScaleImage(&$objUpFile, $image_key) {
+    function lfSetScaleImage(&$objUpFile, $image_key)
+    {
         $subno = str_replace('sub_large_image', '', $image_key);
         switch ($image_key) {
@@ -663,5 +683,6 @@
      * @return void
      */
-    function lfCopyProductImageFiles(&$objUpFile) {
+    function lfCopyProductImageFiles(&$objUpFile)
+    {
         $arrKey = $objUpFile->keyname;
         $arrSaveFile = $objUpFile->save_file;
@@ -681,5 +702,6 @@
      * @return void
      */
-    function lfMakeScaleImage(&$objUpFile, $from_key, $to_key, $forced = false) {
+    function lfMakeScaleImage(&$objUpFile, $from_key, $to_key, $forced = false)
+    {
         $arrImageKey = array_flip($objUpFile->keyname);
         $from_path = '';
@@ -719,5 +741,6 @@
      * @return void
      */
-    function lfDeleteTempFile(&$objUpFile, $image_key) {
+    function lfDeleteTempFile(&$objUpFile, $image_key)
+    {
         // TODO: SC_UploadFile::deleteFileの画像削除条件見直し要
         $arrTempFile = $objUpFile->temp_file;
@@ -752,5 +775,6 @@
      * @return void
      */
-    function lfSaveUploadFiles(&$objUpFile, &$objDownFile, $product_id) {
+    function lfSaveUploadFiles(&$objUpFile, &$objDownFile, $product_id)
+    {
         // TODO: SC_UploadFile::moveTempFileの画像削除条件見直し要
         $objImage = new SC_Image_Ex($objUpFile->temp_dir);
@@ -786,5 +810,6 @@
      * @return boolean
      */
-    function lfHasSameProductImage($product_id, $arrImageKey, $image_file_name) {
+    function lfHasSameProductImage($product_id, $arrImageKey, $image_file_name)
+    {
         if (!SC_Utils_Ex::sfIsInt($product_id)) return false;
         if (!$arrImageKey) return false;
@@ -819,5 +844,6 @@
      * @return array 商品データ配列
      */
-    function lfGetProductData_FromDB($product_id) {
+    function lfGetProductData_FromDB($product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrProduct = array();
@@ -882,5 +908,6 @@
      * @return array 関連商品データ配列
      */
-    function lfGetRecommendProductsData_FromDB($product_id) {
+    function lfGetRecommendProductsData_FromDB($product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrRecommendProducts = array();
@@ -909,5 +936,6 @@
      * @return array 関連商品データ配列
      */
-    function lfGetRecommendProducts(&$arrForm) {
+    function lfGetRecommendProducts(&$arrForm)
+    {
         $arrRecommend = array();
 
@@ -936,5 +964,6 @@
      * @return array カテゴリマスターデータ配列
      */
-    function lfGetCategoryList_Edit() {
+    function lfGetCategoryList_Edit()
+    {
         $objDb = new SC_Helper_DB_Ex();
         $arrCategoryList = array();
@@ -955,5 +984,6 @@
      * @return string ページonload用JavaScript
      */
-    function lfSetOnloadJavaScript_InputPage($anchor_hash = '') {
+    function lfSetOnloadJavaScript_InputPage($anchor_hash = '')
+    {
         return "fnCheckStockLimit('" . DISABLED_RGB . "'); fnMoveSelect('category_id_unselect', 'category_id');" . $anchor_hash;
     }
@@ -967,5 +997,6 @@
      * @return integer 登録商品ID
      */
-    function lfRegistProduct(&$objUpFile, &$objDownFile, $arrList) {
+    function lfRegistProduct(&$objUpFile, &$objDownFile, $arrList)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objDb = new SC_Helper_DB_Ex();
@@ -1115,5 +1146,6 @@
      * @return void
      */
-    function lfInsertDummyProductClass($arrList) {
+    function lfInsertDummyProductClass($arrList)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objDb = new SC_Helper_DB_Ex();
@@ -1148,5 +1180,6 @@
      * @return void
      */
-    function lfUpdateProductClass($arrList) {
+    function lfUpdateProductClass($arrList)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $sqlval = array();
@@ -1167,5 +1200,6 @@
      * @return void
      */
-    function lfInsertRecommendProducts(&$objQuery, $arrList, $product_id) {
+    function lfInsertRecommendProducts(&$objQuery, $arrList, $product_id)
+    {
         // 一旦関連商品をすべて削除する
         $objQuery->delete('dtb_recommend_products', 'product_id = ?', array($product_id));
@@ -1199,5 +1233,6 @@
      * @return boolean エラーフラグ
      */
-    function lfCopyProductClass($arrList, &$objQuery) {
+    function lfCopyProductClass($arrList, &$objQuery)
+    {
         // 複製元のdtb_products_classを取得（規格なしのため、1件のみの取得）
         $col = '*';
@@ -1249,5 +1284,6 @@
      * @return string
      */
-    function lfGetAddSuffix($to_key) {
+    function lfGetAddSuffix($to_key)
+    {
         if ( IMAGE_RENAME === true) return;
 
@@ -1276,5 +1312,6 @@
      * @return boolean true: サブ情報あり, false: サブ情報なし
      */
-    function hasSubProductData($arrSubProductData) {
+    function hasSubProductData($arrSubProductData)
+    {
         $has_subproduct_data = false;
 
@@ -1302,5 +1339,6 @@
      * @return <type>
      */
-    function getAnchorHash($anchor_key) {
+    function getAnchorHash($anchor_key)
+    {
         if ($anchor_key != '') {
             return "location.hash='#" . htmlspecialchars($anchor_key) . "'";
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ProductSelect extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_ProductSelect extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/product_select.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -98,5 +102,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -108,5 +113,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('カテゴリ', 'search_category_id', STEXT_LEN, 'n');
         $objFormParam->addParam('商品名', 'search_name', STEXT_LEN, 'KVa');
@@ -115,5 +121,6 @@
 
     /* 商品検索結果取得 */
-    function lfGetProducts(&$objDb) {
+    function lfGetProducts(&$objDb)
+    {
         $where = 'del_flg = 0';
         $arrWhereVal = array();
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSV.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSV.php	(revision 22537)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSV.php	(revision 22567)
@@ -34,5 +34,6 @@
  * FIXME 同一商品IDで商品規格違いを登録できない。(更新は可能)
  */
-class LC_Page_Admin_Products_UploadCSV extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_UploadCSV extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -60,5 +61,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/upload_csv.tpl';
@@ -86,5 +88,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -96,5 +99,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->objDb = new SC_Helper_DB_Ex();
@@ -144,5 +148,6 @@
      * @return void
      */
-    function addRowResult($line_count, $message) {
+    function addRowResult($line_count, $message)
+    {
         $this->arrRowResult[] = $line_count . '行目：' . $message;
     }
@@ -155,5 +160,6 @@
      * @return void
      */
-    function addRowErr($line_count, $message) {
+    function addRowErr($line_count, $message)
+    {
         $this->arrRowErr[] = $line_count . '行目：' . $message;
     }
@@ -167,5 +173,6 @@
      * @return boolean errFlag. 読み込みに失敗した場合true
      */
-    function lfReadCSVFile(&$objFormParam, &$fp, $objQuery = null) {
+    function lfReadCSVFile(&$objFormParam, &$fp, $objQuery = null)
+    {
         $dry_run = ($objQuery===null) ? true : false;
         // 登録対象の列数
@@ -235,5 +242,6 @@
      * @return void
      */
-    function doUploadCsv(&$objFormParam, &$objUpFile) {
+    function doUploadCsv(&$objFormParam, &$objUpFile)
+    {
         // ファイルアップロードのチェック
         $this->arrErr['csv_file'] = $objUpFile->makeTempFile('csv_file');
@@ -296,5 +304,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -305,5 +314,6 @@
      * @return void
      */
-    function lfInitFile(&$objUpFile) {
+    function lfInitFile(&$objUpFile)
+    {
         $objUpFile->addFile('CSVファイル', 'csv_file', array('csv'), CSV_SIZE, true, 0, 0, false);
     }
@@ -315,5 +325,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam, &$arrCSVFrame) {
+    function lfInitParam(&$objFormParam, &$arrCSVFrame)
+    {
         // 固有の初期値調整
         $arrCSVFrame = $this->lfSetParamDefaultValue($arrCSVFrame);
@@ -360,5 +371,6 @@
      * @return void
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力データを渡す。
         $arrRet =  $objFormParam->getHashArray();
@@ -381,5 +393,6 @@
      * @return void
      */
-    function lfInitTableInfo() {
+    function lfInitTableInfo()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $this->arrProductColumn = $objQuery->listTableFields('dtb_products');
@@ -396,5 +409,6 @@
      * @return void
      */
-    function lfRegistProduct($objQuery, $line = '', &$objFormParam) {
+    function lfRegistProduct($objQuery, $line = '', &$objFormParam)
+    {
         $objProduct = new SC_Product_Ex();
         // 登録データ対象取得
@@ -466,5 +480,6 @@
      * @return void
      */
-    function lfRegistProductClass($objQuery, $arrList, $product_id, $product_class_id) {
+    function lfRegistProductClass($objQuery, $arrList, $product_id, $product_class_id)
+    {
         $objProduct = new SC_Product_Ex();
 
@@ -517,5 +532,6 @@
      * @return void
      */
-    function lfRegistReccomendProducts($objQuery, $arrList, $product_id) {
+    function lfRegistReccomendProducts($objQuery, $arrList, $product_id)
+    {
         $objQuery->delete('dtb_recommend_products', 'product_id = ?', array($product_id));
         for ($i = 1; $i <= RECOMMEND_PRODUCT_MAX; $i++) {
@@ -545,5 +561,6 @@
      * @return array $arrCSVFrame CSV構造配列
      */
-    function lfSetParamDefaultValue(&$arrCSVFrame) {
+    function lfSetParamDefaultValue(&$arrCSVFrame)
+    {
         foreach ($arrCSVFrame as $key => $val) {
             switch ($val['col']) {
@@ -575,5 +592,6 @@
      * @return $sqlval 登録情報配列
      */
-    function lfSetProductDefaultData(&$sqlval) {
+    function lfSetProductDefaultData(&$sqlval)
+    {
         //新規登録時のみ設定する項目
         if ($sqlval['product_id'] == '') {
@@ -599,5 +617,6 @@
      * @return $sqlval 登録情報配列
      */
-    function lfSetProductClassDefaultData(&$sqlval, $upload_flg) {
+    function lfSetProductClassDefaultData(&$sqlval, $upload_flg)
+    {
         //新規登録時のみ設定する項目
         if ($sqlval['product_class_id'] == '') {
@@ -650,5 +669,6 @@
      * @return array エラー配列
      */
-    function lfCheckErrorDetail($item, $arrErr) {
+    function lfCheckErrorDetail($item, $arrErr)
+    {
         // 規格IDの存在チェック
         // FIXME 規格分類ID自体のが有効かを主眼においたチェックをすべきと感じる。
@@ -776,5 +796,6 @@
      * @return string $time DB保存用の時間文字列
      */
-    function lfGetDbFormatTimeWithLine($line_no = '') {
+    function lfGetDbFormatTimeWithLine($line_no = '')
+    {
         $time = date('Y-m-d H:i:s');
         // 秒以下を生成
@@ -795,5 +816,6 @@
      * @return boolean true:有効なデータがある false:有効ではない
      */
-    function lfIsArrayRecordMulti($arr, $keyname, $item, $delimiter = ',') {
+    function lfIsArrayRecordMulti($arr, $keyname, $item, $delimiter = ',')
+    {
         if (array_search($keyname, $this->arrFormKeyList) === FALSE) {
             return true;
@@ -826,5 +848,6 @@
      * @return boolean true:有効なデータがある false:有効ではない
      */
-    function lfIsDbRecordMulti($table, $tblkey, $keyname, $item, $delimiter = ',') {
+    function lfIsDbRecordMulti($table, $tblkey, $keyname, $item, $delimiter = ',')
+    {
         if (array_search($keyname, $this->arrFormKeyList) === FALSE) {
             return true;
@@ -857,5 +880,6 @@
      * @return boolean true:有効なデータがある false:有効ではない
      */
-    function lfIsDbRecord($table, $keyname, $item) {
+    function lfIsDbRecord($table, $keyname, $item)
+    {
         if (array_search($keyname, $this->arrFormKeyList) !== FALSE  //入力対象である
             && $item[$keyname] != ''   // 空ではない
@@ -875,5 +899,6 @@
      * @return boolean true:有効なデータがある false:有効ではない
      */
-    function lfIsArrayRecord($arr, $keyname, $item) {
+    function lfIsArrayRecord($arr, $keyname, $item)
+    {
         if (array_search($keyname, $this->arrFormKeyList) !== FALSE //入力対象である
             && $item[$keyname] != '' // 空ではない
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Review.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Review.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Review.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Review extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_Review extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/review.tpl';
@@ -76,5 +78,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -86,5 +89,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -135,5 +139,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -145,5 +150,6 @@
      * @return void
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力データを渡す。
         $arrRet =  $objFormParam->getHashArray();
@@ -175,5 +181,6 @@
      * @return void
      */
-    function lfDeleteReview($review_id) {
+    function lfDeleteReview($review_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $sqlval['del_flg'] = 1;
@@ -187,5 +194,6 @@
      * @return array hidden情報
      */
-    function lfSetHidden($arrForm) {
+    function lfSetHidden($arrForm)
+    {
         $arrHidden = array();
         foreach ($arrForm AS $key=>$val) {
@@ -213,5 +221,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('投稿者名', 'search_reviewer_name', STEXT_LEN, 'KVas', array('MAX_LENGTH_CHECK'),'',false);
         $objFormParam->addParam('投稿者URL', 'search_reviewer_url', STEXT_LEN, 'KVas', array('MAX_LENGTH_CHECK'),'',false);
@@ -238,5 +247,6 @@
      * @return void
      */
-    function lfDoOutputCsv($where, $arrWhereVal) {
+    function lfDoOutputCsv($where, $arrWhereVal)
+    {
         $objCSV = new SC_Helper_CSV_Ex();
         if ($where != '') {
@@ -252,5 +262,6 @@
      * @return array WHERE文、判定値
      */
-    function lfGetWhere($arrForm) {
+    function lfGetWhere($arrForm)
+    {
         //削除されていない商品を検索
         $where = 'A.del_flg = 0 AND B.del_flg = 0';
@@ -344,5 +355,6 @@
      * @return array レビュー一覧
      */
-    function lfGetReview($arrForm, $where, $arrWhereVal) {
+    function lfGetReview($arrForm, $where, $arrWhereVal)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ClassCategory.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ClassCategory.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ClassCategory.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_Admin_Products_ClassCategory.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Admin_Products_ClassCategory extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_ClassCategory extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/classcategory.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -142,5 +146,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -152,5 +157,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('規格ID', 'class_id', INT_LEN, 'n', array('NUM_CHECK'));
         $objFormParam->addParam('規格分類名', 'name', STEXT_LEN, 'KVa', array('EXIST_CHECK' ,'SPTAB_CHECK' ,'MAX_LENGTH_CHECK'));
@@ -164,5 +170,6 @@
      * @return array 規格分類情報
      */
-    function lfGetClassCat($class_id) {
+    function lfGetClassCat($class_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -179,5 +186,6 @@
      * @return string 規格名
      */
-    function lfGetClassName($class_id) {
+    function lfGetClassName($class_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -193,5 +201,6 @@
      * @return string 規格分類名
      */
-    function lfGetClassCatName($classcategory_id) {
+    function lfGetClassCatName($classcategory_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'classcategory_id = ?';
@@ -206,5 +215,6 @@
      * @return integer 更新件数
      */
-    function lfInsertClass($arrForm) {
+    function lfInsertClass($arrForm)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->begin();
@@ -234,5 +244,6 @@
      * @return integer 更新件数
      */
-    function lfUpdateClass($arrForm) {
+    function lfUpdateClass($arrForm)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // UPDATEする値を作成する。
@@ -251,5 +262,6 @@
      * @return array エラー配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrForm = $objFormParam->getHashArray();
@@ -277,5 +289,6 @@
      * @return boolean 新規商品追加の場合 true
      */
-    function lfCheckInsert($classcategory_id) {
+    function lfCheckInsert($classcategory_id)
+    {
         //classcategory_id のあるなしで新規規格分類化かどうかを判定
         if (empty($classcategory_id)) {
@@ -293,5 +306,6 @@
      * @return void
      */
-    function lfDeleteClassCat($class_id, $classcategory_id) {
+    function lfDeleteClassCat($class_id, $classcategory_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $where = 'class_id = ' . SC_Utils_Ex::sfQuoteSmart($class_id);
@@ -305,5 +319,6 @@
      * @return void
      */
-    function lfUpRank($class_id, $classcategory_id) {
+    function lfUpRank($class_id, $classcategory_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $where = 'class_id = ' . SC_Utils_Ex::sfQuoteSmart($class_id);
@@ -317,5 +332,6 @@
      * @return void
      */
-    function lfDownRank($class_id, $classcategory_id) {
+    function lfDownRank($class_id, $classcategory_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $where = 'class_id = ' . SC_Utils_Ex::sfQuoteSmart($class_id);
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Class.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Class.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Class.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Class extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_Class extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/class.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -139,5 +143,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -149,5 +154,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('規格名', 'name', STEXT_LEN, 'KVa', array('EXIST_CHECK' ,'SPTAB_CHECK' ,'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('規格ID', 'class_id', INT_LEN, 'n', array('NUM_CHECK'));
@@ -159,5 +165,6 @@
      * @return array 規格情報
      */
-    function lfGetClass() {
+    function lfGetClass()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -174,5 +181,6 @@
      * @return string 規格名
      */
-    function lfGetClassName($class_id) {
+    function lfGetClassName($class_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'class_id = ?';
@@ -187,5 +195,6 @@
      * @return integer 更新件数
      */
-    function lfInsertClass($arrForm) {
+    function lfInsertClass($arrForm)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // INSERTする値を作成する。
@@ -207,5 +216,6 @@
      * @return integer 更新件数
      */
-    function lfUpdateClass($arrForm) {
+    function lfUpdateClass($arrForm)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // UPDATEする値を作成する。
@@ -225,5 +235,6 @@
      * @return integer 削除件数
      */
-    function lfDeleteClass($class_id) {
+    function lfDeleteClass($class_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -241,5 +252,6 @@
      * @return array エラー配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrForm = $objFormParam->getHashArray();
@@ -267,5 +279,6 @@
      * @return boolean 新規商品追加の場合 true
      */
-    function lfCheckInsert($arrForm) {
+    function lfCheckInsert($arrForm)
+    {
         //class_id のあるなしで新規商品かどうかを判定
         if (empty($arrForm['class_id'])) {
@@ -281,5 +294,6 @@
      * @return void
      */
-    function lfUpRank($class_id) {
+    function lfUpRank($class_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objDb->sfRankUp('dtb_class', 'class_id', $class_id);
@@ -291,5 +305,6 @@
      * @return void
      */
-    function lfDownRank($class_id) {
+    function lfDownRank($class_id)
+    {
         $objDb = new SC_Helper_DB_Ex();
         $objDb->sfRankDown('dtb_class', 'class_id', $class_id);
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php	(revision 22298)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ProductClass extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Products_ProductClass extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/product_class.tpl';
@@ -60,5 +62,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -70,5 +73,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // 商品マスターの検索条件パラメーターを初期化
@@ -165,5 +169,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -175,5 +180,6 @@
      * @return void
      */
-    function initParam(&$objFormParam) {
+    function initParam(&$objFormParam)
+    {
         // 商品マスター検索パラメーター引き継ぎ
         $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -225,5 +231,6 @@
      * @param integer $product_id 登録を行う商品ID
      */
-    function registerProductClass($arrList, $product_id, $total) {
+    function registerProductClass($arrList, $product_id, $total)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objDb = new SC_Helper_DB_Ex();
@@ -308,5 +315,6 @@
      * @return array エラーの配列
      */
-    function lfCheckSelectClass() {
+    function lfCheckSelectClass()
+    {
         $objErr = new SC_CheckError_Ex();
         $objErr->doFunc(array('規格1', 'class_id1'), array('EXIST_CHECK'));
@@ -322,5 +330,6 @@
      * @return array エラー結果の配列
      */
-    function lfCheckProductsClass(&$objFormParam) {
+    function lfCheckProductsClass(&$objFormParam)
+    {
         $arrValues = $objFormParam->getHashArray();
         $arrErr = $objFormParam->checkError();
@@ -395,5 +404,6 @@
      * @return void
      */
-    function doDisp(&$objFormParam) {
+    function doDisp(&$objFormParam)
+    {
         $product_id = $objFormParam->getValue('product_id');
         $class_id1 = $objFormParam->getValue('class_id1');
@@ -431,5 +441,6 @@
      * @return void
      */
-    function initDispParam(&$objFormParam) {
+    function initDispParam(&$objFormParam)
+    {
         // 登録チェックボックス初期化(すべてチェックを外す)
         $objFormParam->setValue('check', '');
@@ -449,5 +460,6 @@
      * @param bool $usepostValue
      */
-    function doPreEdit(&$objFormParam) {
+    function doPreEdit(&$objFormParam)
+    {
         $product_id = $objFormParam->getValue('product_id');
         $objProduct = new SC_Product_Ex();
@@ -526,5 +538,6 @@
      * @return void
      */
-    function doDelete($product_id) {
+    function doDelete($product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -563,5 +576,6 @@
      * @return void
      */
-    function doFileUpload(&$objFormParam) {
+    function doFileUpload(&$objFormParam)
+    {
         $index   = $objFormParam->getValue('upload_index');
         $arrDownRealFiles = $objFormParam->getValue('down_realfilename');
@@ -625,5 +639,6 @@
      * @return void
      */
-    function doFileDelete(&$objFormParam) {
+    function doFileDelete(&$objFormParam)
+    {
         $objImage = new SC_Image_Ex(DOWN_TEMP_REALDIR);
         $arrRealFileName = $objFormParam->getValue('down_realfilename');
@@ -640,5 +655,6 @@
      * @return void
      */
-    function doUploadComplete(&$objFormParam) {
+    function doUploadComplete(&$objFormParam)
+    {
         $objImage = new SC_Image_Ex(DOWN_TEMP_REALDIR);
         $arrRealFileName = $objFormParam->getValue('down_realfilename');
@@ -657,5 +673,6 @@
      * @return array 規格と規格分類の配列
      */
-    function getAllClassCategory($class_id1, $class_id2 = null) {
+    function getAllClassCategory($class_id1, $class_id2 = null)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -697,5 +714,6 @@
      * @return string 商品名の文字列
      */
-    function getProductName($product_id) {
+    function getProductName($product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         return $objQuery->get('name', 'dtb_products', 'product_id = ?', array($product_id));
@@ -708,5 +726,6 @@
      * @return array 規格分類の登録された, すべての規格
      */
-    function getAllClass() {
+    function getAllClass()
+    {
         $arrClass = SC_Helper_DB_Ex::sfGetIDValueList('dtb_class', 'class_id', 'name');
 
@@ -733,5 +752,6 @@
      * @return array 商品規格の配列
      */
-    function getProductsClass($product_id) {
+    function getProductsClass($product_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'product_code, price01, price02, stock, stock_unlimited, sale_limit, deliv_fee, point_rate';
@@ -751,5 +771,6 @@
      * @return void
      */
-    function fillCheckboxesValue($key, $size) {
+    function fillCheckboxesValue($key, $size)
+    {
         if (empty($_POST[$key])) {
             $_POST[$key] = array_pad(array(), $size, '');
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ReviewEdit.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ReviewEdit.php	(revision 22374)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ReviewEdit.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ReviewEdit extends LC_Page_Admin_Products_Review {
+class LC_Page_Admin_Products_ReviewEdit extends LC_Page_Admin_Products_Review 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'products/review_edit.tpl';
@@ -62,5 +64,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -72,5 +75,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター情報の初期化
@@ -109,5 +113,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -119,5 +124,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         // 検索条件のパラメーターを初期化
         parent::lfInitParam($objFormParam);
@@ -142,5 +148,6 @@
      * @return array レビュー情報
      */
-    function lfGetReviewData($review_id) {
+    function lfGetReviewData($review_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $select='review_id, A.product_id, reviewer_name, sex, recommend_level, ';
@@ -162,5 +169,6 @@
      * @return void
      */
-    function lfRegistReviewData($review_id, &$objFormParam) {
+    function lfRegistReviewData($review_id, &$objFormParam)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrValues = $objFormParam->getDbArray();
Index: branches/version-2_12-dev/data/class/pages/admin/total/LC_Page_Admin_Total.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/total/LC_Page_Admin_Total.php	(revision 22239)
+++ branches/version-2_12-dev/data/class/pages/admin/total/LC_Page_Admin_Total.php	(revision 22567)
@@ -31,5 +31,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Total extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Total extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -41,5 +42,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         // GDライブラリのインストール判定
@@ -91,5 +93,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -101,5 +104,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         if (isset($_GET['draw_image']) && $_GET['draw_image'] != '') {
@@ -170,10 +174,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     /* デフォルト値の取得 */
-    function lfGetDateDefault() {
+    function lfGetDateDefault()
+    {
         $year = date('Y');
         $month = date('m');
@@ -202,5 +208,6 @@
 
     /* パラメーター情報の初期化 */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         // デフォルト値の取得
         $arrList = $this->lfGetDateDefault();
@@ -225,5 +232,6 @@
 
     /* 入力内容のチェック */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
 
         $objFormParam->convParam();
@@ -251,5 +259,6 @@
 
     /* サブナビを移動しても日付が残るようにセッションに入力期間を記録する */
-    function lfSaveDateSession($session, $arrForm) {
+    function lfSaveDateSession($session, $arrForm)
+    {
 
         // session の初期化をする
@@ -266,5 +275,6 @@
 
     /* 日付の初期値 */
-    function lfGetDateInit() {
+    function lfGetDateInit()
+    {
         $search_startyear_m     = $search_startyear  = $search_endyear  = date('Y');
         $search_startmonth_m    = $search_startmonth = $search_endmonth = date('m');
@@ -275,5 +285,6 @@
 
     /* フォームで入力された日付を適切な形にする */
-    function lfSetStartEndDate(&$objFormParam) {
+    function lfSetStartEndDate(&$objFormParam)
+    {
         $arrRet = $objFormParam->getHashArray();
 
@@ -294,5 +305,6 @@
 
     /* 折れ線グラフの作成 */
-    function lfGetGraphLine($arrResults, $keyname, $type, $xtitle, $ytitle, $sdate, $edate, $xincline) {
+    function lfGetGraphLine($arrResults, $keyname, $type, $xtitle, $ytitle, $sdate, $edate, $xincline)
+    {
 
         $ret_path = '';
@@ -352,5 +364,6 @@
 
     // 円グラフの作成
-    function lfGetGraphPie($arrResults, $keyname, $type, $title = '', $sdate = '', $edate = '') {
+    function lfGetGraphPie($arrResults, $keyname, $type, $title = '', $sdate = '', $edate = '')
+    {
 
         $ret_path = '';
@@ -396,5 +409,6 @@
 
     // 棒グラフの作成
-    function lfGetGraphBar($arrResults, $keyname, $type, $xtitle, $ytitle, $sdate, $edate) {
+    function lfGetGraphBar($arrResults, $keyname, $type, $xtitle, $ytitle, $sdate, $edate)
+    {
         $ret_path = '';
 
@@ -442,5 +456,6 @@
 
     // グラフ用のPNGファイル名
-    function lfGetGraphPng($keyname) {
+    function lfGetGraphPng($keyname)
+    {
 
         if ($_POST['search_startyear_m'] != '') {
@@ -453,5 +468,6 @@
 
     // 会員、非会員集計のWHERE分の作成
-    function lfGetWhereMember($col_date, $sdate, $edate, $type, $col_member = 'customer_id') {
+    function lfGetWhereMember($col_date, $sdate, $edate, $type, $col_member = 'customer_id')
+    {
         $where = '';
         // 取得日付の指定
@@ -496,5 +512,6 @@
 
     /** 会員別集計 **/
-    function lfGetOrderMember($type, $sdate, $edate) {
+    function lfGetOrderMember($type, $sdate, $edate)
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
 
@@ -537,5 +554,6 @@
 
     /** 商品別集計 **/
-    function lfGetOrderProducts($type, $sdate, $edate) {
+    function lfGetOrderProducts($type, $sdate, $edate)
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
 
@@ -574,5 +592,6 @@
 
     /** 職業別集計 **/
-    function lfGetOrderJob($type, $sdate, $edate) {
+    function lfGetOrderJob($type, $sdate, $edate)
+    {
         $objQuery = SC_Query_Ex::getSingletonInstance();
         list($where, $arrWhereVal) = $this->lfGetWhereMember('dtb_order.create_date', $sdate, $edate, $type);
@@ -610,5 +629,6 @@
 
     /** 年代別集計 **/
-    function lfGetOrderAge($type, $sdate, $edate) {
+    function lfGetOrderAge($type, $sdate, $edate)
+    {
 
         $objQuery = SC_Query_Ex::getSingletonInstance();
@@ -648,5 +668,6 @@
     /** 期間別集計 **/
     // todo あいだの日付埋める
-    function lfGetOrderTerm($type, $sdate, $edate) {
+    function lfGetOrderTerm($type, $sdate, $edate)
+    {
         $objQuery   = SC_Query_Ex::getSingletonInstance();
 
@@ -704,5 +725,6 @@
      * 期間中の日付を埋める
      */
-    function lfAddBlankLine($arrResults, $type, $st, $ed) {
+    function lfAddBlankLine($arrResults, $type, $st, $ed)
+    {
 
         $arrDateList = $this->lfDateTimeArray($type, $st, $ed);
@@ -730,5 +752,6 @@
      *
      */
-    function lfDateTimeArray($type, $st, $ed) {
+    function lfDateTimeArray($type, $st, $ed)
+    {
         switch ($type) {
             case 'month':
@@ -771,5 +794,6 @@
      * 合計を付与する
      */
-    function lfAddTotalLine($arrResults) {
+    function lfAddTotalLine($arrResults)
+    {
         // 検索結果が0でない場合
         if (count($arrResults) > 0) {
@@ -790,5 +814,6 @@
 
     // 必要なカラムのみ抽出する(CSVデータで取得する)
-    function lfGetDataColCSV($arrData, $arrDataCol) {
+    function lfGetDataColCSV($arrData, $arrDataCol)
+    {
         $max = count($arrData);
         $csv_data = '';
@@ -806,5 +831,6 @@
     }
 
-    function lfGetCSVColum($page) {
+    function lfGetCSVColum($page)
+    {
         switch ($page) {
             // 商品別集計
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Input.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Input.php	(revision 22313)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Input.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Input extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_Input extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -61,5 +63,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -71,5 +74,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $objFormParam = new SC_FormParam_Ex();
 
@@ -182,5 +186,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -194,5 +199,6 @@
      * @return void
      */
-    function initForm(&$objFormParam, &$arrParams, $mode = '') {
+    function initForm(&$objFormParam, &$arrParams, $mode = '')
+    {
         $objFormParam->addParam('メンバーID', 'member_id', INT_LEN, 'n', array('NUM_CHECK'));
         $objFormParam->addParam('名前', 'name', STEXT_LEN, 'KV', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
@@ -222,5 +228,6 @@
      * @return array エラー情報の連想配列
      */
-    function validateData(&$objFormParam, &$arrParams, $mode) {
+    function validateData(&$objFormParam, &$arrParams, $mode)
+    {
         $arrErr = $objFormParam->checkError();
         if (isset($arrErr) && count($arrErr) > 0) return $arrErr;
@@ -270,5 +277,6 @@
      * @return array 管理者データの連想配列, 無い場合は空の配列を返す
      */
-    function getMemberData($id) {
+    function getMemberData($id)
+    {
         $table   = 'dtb_member';
         $columns = 'name,department,login_id,authority, work';
@@ -286,5 +294,6 @@
      * @return boolean 登録済みならtrue, 未登録ならfalse
      */
-    function memberDataExists($where, $val) {
+    function memberDataExists($where, $val)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -302,5 +311,6 @@
      * @return integer $clean_pageno チェック後のページの番号
      */
-    function lfCheckPageNo($pageno) {
+    function lfCheckPageNo($pageno)
+    {
 
         $clean_pageno = '';
@@ -325,5 +335,6 @@
      * @return void
      */
-    function insertMemberData($arrMemberData) {
+    function insertMemberData($arrMemberData)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -355,5 +366,6 @@
      * @return void
      */
-    function updateMemberData($member_id, $arrMemberData) {
+    function updateMemberData($member_id, $arrMemberData)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System.php	(revision 22264)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -65,5 +67,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -75,5 +78,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // ADMIN_ID以外の管理者件数を取得
@@ -102,5 +106,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -113,5 +118,6 @@
      * @return integer 件数
      */
-    function getMemberCount($where) {
+    function getMemberCount($where)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $table = 'dtb_member';
@@ -126,5 +132,6 @@
      * @return array 管理者データの連想配列
      */
-    function getMemberData($startno) {
+    function getMemberData($startno)
+    {
         $col = 'member_id,name,department,login_id,authority,rank,work';
         $from = 'dtb_member';
@@ -144,5 +151,6 @@
      * @return integer $clean_pageno チェック後のページの番号
      */
-    function lfCheckPageNo($pageno) {
+    function lfCheckPageNo($pageno)
+    {
 
         $clean_pageno = '';
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Parameter.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Parameter.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Parameter.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Parameter extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_Parameter extends LC_Page_Admin_Ex 
+{
 
     // {{{ properties
@@ -53,5 +54,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'system/parameter.tpl';
@@ -67,5 +69,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -77,5 +80,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $masterData = new SC_DB_MasterData_Ex();
@@ -119,5 +123,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -131,5 +136,6 @@
      * @return void
      */
-    function update(&$arrKeys, &$arrForm) {
+    function update(&$arrKeys, &$arrForm)
+    {
         $data = array();
         $masterData = new SC_DB_MasterData_Ex();
@@ -152,5 +158,6 @@
      * @return void
      */
-    function errorCheck(&$arrKeys, &$arrForm) {
+    function errorCheck(&$arrKeys, &$arrForm)
+    {
         $objErr = new SC_CheckError_Ex($arrForm);
         for ($i = 0; $i < count($arrKeys); $i++) {
@@ -168,5 +175,6 @@
      * @return array パラメーターのキーの配列
      */
-    function getParamKeys(&$masterData) {
+    function getParamKeys(&$masterData)
+    {
         $keys = array();
         $i = 0;
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_AdminArea.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_AdminArea.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_AdminArea.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_AdminArea extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_AdminArea extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'system/adminarea.tpl';
@@ -57,5 +59,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -67,5 +70,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         if (strpos(HTTPS_URL,'https://') !== FALSE) {
@@ -119,5 +123,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -130,5 +135,6 @@
      * @return void
      */
-    function initParam(&$objFormParam, &$arrParams) {
+    function initParam(&$objFormParam, &$arrParams)
+    {
 
         $objFormParam->addParam('ディレクトリ名', 'admin_dir', ID_MAX_LEN, 'a', array('EXIST_CHECK', 'SPTAB_CHECK', 'ALNUM_CHECK'));
@@ -147,5 +153,6 @@
      * @return void
      */
-    function lfCheckAdminArea(&$arrForm, &$arrErr) {
+    function lfCheckAdminArea(&$arrForm, &$arrErr)
+    {
         $admin_dir = trim($arrForm['admin_dir']) . '/';
 
@@ -166,5 +173,6 @@
 
     //管理機能ディレクトリのリネームと CONFIG_REALFILE の変更
-    function lfUpdateAdminData(&$arrForm) {
+    function lfUpdateAdminData(&$arrForm)
+    {
         $admin_dir = trim($arrForm['admin_dir']) . '/';
         $admin_force_ssl = 'false';
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Bkup.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Bkup.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Bkup.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Bkup extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_Bkup extends LC_Page_Admin_Ex 
+{
 
     /** リストア中にエラーが発生したか */
@@ -51,5 +52,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'system/bkup.tpl';
@@ -68,5 +70,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -78,5 +81,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex;
@@ -220,5 +224,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -231,5 +236,6 @@
      * @return void
      */
-    function initParam(&$objFormParam, &$arrParams) {
+    function initParam(&$objFormParam, &$arrParams)
+    {
 
         $objFormParam->addParam('バックアップ名', 'bkup_name', STEXT_LEN, 'a', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NO_SPTAB', 'FILE_NAME_CHECK_BY_NOUPLOAD'));
@@ -248,5 +254,6 @@
      * @return $arrErr
      */
-    function lfCheckError(&$arrForm, $mode) {
+    function lfCheckError(&$arrForm, $mode)
+    {
 
         switch ($mode) {
@@ -284,5 +291,6 @@
      * @return boolean|int 結果。true:成功 int:失敗 FIXME 本来は int ではなく、エラーメッセージを戻すべき
      */
-    function lfCreateBkupData($bkup_name, $work_dir) {
+    function lfCreateBkupData($bkup_name, $work_dir)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $csv_autoinc = '';
@@ -366,5 +374,6 @@
      * @return boolean true (true:固定 false:中断)
      */
-    function cbOutputCSV($data) {
+    function cbOutputCSV($data)
+    {
         $line = '';
         if ($this->first_line) {
@@ -387,5 +396,6 @@
      * @return string $ret
      */
-    function lfGetAutoIncrement() {
+    function lfGetAutoIncrement()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrSequences = $objQuery->listSequences();
@@ -408,5 +418,6 @@
 
     // バックアップテーブルにデータを更新する
-    function lfUpdBkupData($data) {
+    function lfUpdBkupData($data)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -422,5 +433,6 @@
      * バックアップの一覧を取得する
      */
-    function lfGetBkupData($sql_option = '', $filter_bkup_name = '') {
+    function lfGetBkupData($sql_option = '', $filter_bkup_name = '')
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -474,5 +486,6 @@
      * @return void
      */
-    function lfRestore($bkup_name, $bkup_dir, $bkup_ext, $mode) {
+    function lfRestore($bkup_name, $bkup_dir, $bkup_ext, $mode)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -526,5 +539,6 @@
      * @return void
      */
-    function lfExeInsertSQL(&$objQuery, $dir, $mode) {
+    function lfExeInsertSQL(&$objQuery, $dir, $mode)
+    {
 
         $tbl_flg = false;
@@ -595,5 +609,6 @@
      * シーケンス生成器を復元する
      */
-    function restoreSequence(&$objQuery, $csv) {
+    function restoreSequence(&$objQuery, $csv)
+    {
         // csvファイルからデータの取得
         $arrCsvData = file($csv);
@@ -614,5 +629,6 @@
 
     // 選択したバックアップをDBから削除
-    function lfDeleteBackUp(&$arrForm, $bkup_dir, $bkup_ext) {
+    function lfDeleteBackUp(&$arrForm, $bkup_dir, $bkup_ext)
+    {
 
         $objQuery =& SC_Query_Ex::getSingletonInstance();
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Log.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Log.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Log.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Log extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_Log extends LC_Page_Admin_Ex 
+{
 
     var $arrLogList = array();
@@ -41,5 +42,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'system/log.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex;
@@ -94,5 +98,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -103,5 +108,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('ファイル', 'log', null, '', array());
         $objFormParam->addParam('行数', 'line_max', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK'), 50);
@@ -113,5 +119,6 @@
      * @return array $arrLogs 取得したログ
      */
-    function getEccubeLog($log_path_base) {
+    function getEccubeLog($log_path_base)
+    {
 
         $index = 0;
@@ -160,5 +167,6 @@
      * セキュリティ面をカバーする役割もある。
      */
-    function getLogPath($log_name) {
+    function getLogPath($log_name)
+    {
         if (strlen($log_name) === 0) {
             return LOG_REALFILE;
@@ -176,5 +184,6 @@
      * @return void
      */
-    function loadLogList() {
+    function loadLogList()
+    {
         $this->arrLogList[''] = '標準ログファイル';
         $this->arrLogList['CUSTOMER'] = '会員ログイン ログファイル';
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Delete.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Delete.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Delete.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Delete extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_Delete extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex;
@@ -93,5 +97,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -104,5 +109,6 @@
      * @return void
      */
-    function initParam(&$objFormParam, &$arrParams) {
+    function initParam(&$objFormParam, &$arrParams)
+    {
 
         $objFormParam->addParam('pageno', 'pageno', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK', 'EXIST_CHECK'));
@@ -118,5 +124,6 @@
      * @return void
      */
-    function deleteMember($id) {
+    function deleteMember($id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->begin();
@@ -135,5 +142,6 @@
      * @return void|UPDATE の結果フラグ
      */
-    function renumberRank(&$objQuery, $id) {
+    function renumberRank(&$objQuery, $id)
+    {
 
         // ランクの取得
@@ -155,5 +163,6 @@
      * @return void|UPDATE の結果フラグ
      */
-    function deleteRecode(&$objQuery, $id) {
+    function deleteRecode(&$objQuery, $id)
+    {
 
         // Updateする値を作成する.
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_System.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_System.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_System.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_System extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_System extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'system/system.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -92,5 +96,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -103,5 +108,6 @@
      * @return void
      */
-    function initForm(&$objFormParam, &$arrParams) {
+    function initForm(&$objFormParam, &$arrParams)
+    {
         $objFormParam->addParam('mode', 'mode', INT_LEN, '', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->setParam($arrParams);
@@ -113,5 +119,6 @@
      * @return array システム情報
      */
-    function getSystemInfo() {
+    function getSystemInfo()
+    {
         $objDB = SC_DB_DBFactory_Ex::getInstance();
 
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Masterdata.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Masterdata.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Masterdata.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Masterdata extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_Masterdata extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'system/masterdata.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->arrMasterDataName = $this->getMasterDataNames(array('mtb_pref', 'mtb_zip', 'mtb_constants'));
@@ -104,5 +108,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -116,5 +121,6 @@
      * @return string $master_data_name 選択しているマスターデータのテーブル名
      */
-    function checkMasterDataName(&$arrParams, &$arrMasterDataName) {
+    function checkMasterDataName(&$arrParams, &$arrMasterDataName)
+    {
 
         if (in_array($arrParams['master_data_name'], $arrMasterDataName)) {
@@ -134,5 +140,6 @@
      * @return array マスターデータ名の配列
      */
-    function getMasterDataNames($ignores = array()) {
+    function getMasterDataNames($ignores = array())
+    {
         $dbFactory = SC_DB_DBFactory_Ex::getInstance();
         $arrMasterDataName = $dbFactory->findTableNames('mtb_');
@@ -158,5 +165,6 @@
      * @return void|string エラーが発生した場合はエラーメッセージを返す.
      */
-    function checkUniqueID(&$arrParams) {
+    function checkUniqueID(&$arrParams)
+    {
 
         $arrId = $arrParams['id'];
@@ -184,5 +192,6 @@
      * @return void
      */
-    function registMasterData($arrParams, &$masterData, $master_data_name) {
+    function registMasterData($arrParams, &$masterData, $master_data_name)
+    {
 
         $arrTmp = array();
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Editdb.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Editdb.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Editdb.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Editdb extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_Editdb extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'system/editdb.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -94,5 +98,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -105,5 +110,6 @@
      * @return void
      */
-    function initForm(&$objFormParam, &$arrParams) {
+    function initForm(&$objFormParam, &$arrParams)
+    {
 
         $objFormParam->addParam('モード', 'mode', INT_LEN, 'n', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK'));
@@ -116,5 +122,6 @@
     }
 
-    function lfDoChange(&$objFormParam) {
+    function lfDoChange(&$objFormParam)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrTarget = $this->lfGetTargetData($objFormParam);
@@ -141,5 +148,6 @@
     }
 
-    function lfGetTargetData(&$objFormParam) {
+    function lfGetTargetData(&$objFormParam)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $arrIndexFlag    = $objFormParam->getValue('indexflag');
@@ -184,5 +192,6 @@
      * @return void
      */
-    function lfGetIndexList() {
+    function lfGetIndexList()
+    {
         // データベースからインデックス設定一覧を取得する
         $objQuery =& SC_Query_Ex::getSingletonInstance();
Index: branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Rank.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Rank.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Rank.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Rank extends LC_Page_Admin_Ex {
+class LC_Page_Admin_System_Rank extends LC_Page_Admin_Ex 
+{
     // }}}
     // {{{ functions
@@ -41,5 +42,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -50,5 +52,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -60,5 +63,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // チェック後のデータを格納
@@ -108,10 +112,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     // ランキングを上げる。
-    function lfRunkUp($id) {
+    function lfRunkUp($id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -143,5 +149,6 @@
 
     // ランキングを下げる。
-    function lfRunkDown($id) {
+    function lfRunkDown($id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin extends LC_Page_Ex {
+class LC_Page_Admin extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         $this->template = MAIN_FRAME;
 
@@ -87,5 +89,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
     }
 
@@ -95,5 +98,6 @@
      * @return void
      */
-    function sendResponse() {
+    function sendResponse()
+    {
         $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg);
         // ローカルフックポイントを実行
@@ -120,5 +124,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -129,5 +134,6 @@
      * @deprecated 2.12.0 GC_Utils_Ex::gfPrintLog を使用すること
      */
-    function log($mess, $log_level='Info') {
+    function log($mess, $log_level='Info')
+    {
         trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
         // ログレベル=Debugの場合は、DEBUG_MODEがtrueの場合のみログ出力する
Index: branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_CSS.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_CSS.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_CSS.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_CSS extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Design_CSS extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'design/css.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objLayout = new SC_Helper_PageLayout_Ex();
@@ -142,5 +146,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -152,5 +157,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('CSSファイル名', 'css_name', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK'));
@@ -172,5 +178,6 @@
      * @return boolean 登録が成功した場合 true; 失敗した場合 false
      */
-    function doRegister($css_dir, $css_name, $old_css_name, $css_path, $css_data) {
+    function doRegister($css_dir, $css_name, $old_css_name, $css_path, $css_data)
+    {
         $objFileManager = new SC_Helper_FileManager_Ex();
 
@@ -196,5 +203,6 @@
      * @return boolean 削除が成功した場合 true; 失敗した場合 false
      */
-    function doDelete($css_path) {
+    function doDelete($css_path)
+    {
         if (!unlink($css_path)) {
             $this->arrErr['err'] = '※ CSSの削除に失敗しました<br />';
@@ -210,5 +218,6 @@
      * @return array ファイルリスト
      */
-    function getCSSList($css_dir) {
+    function getCSSList($css_dir)
+    {
         $objFileManager = new SC_Helper_FileManager_Ex();
 
@@ -231,5 +240,6 @@
      * @return array エラーメッセージの配列
      */
-    function lfCheckError(&$objFormParam, &$arrErr) {
+    function lfCheckError(&$objFormParam, &$arrErr)
+    {
         $arrParams = $objFormParam->getHashArray();
         $objErr = new SC_CheckError_Ex($arrParams);
@@ -266,5 +276,6 @@
      * @return string CSSディレクトリ
      */
-    function getCSSDir($device_type_id) {
+    function getCSSDir($device_type_id)
+    {
         return SC_Helper_PageLayout_Ex::getTemplatePath($device_type_id, true) . 'css/';
     }
@@ -275,5 +286,6 @@
      * @return boolean 
      */
-    function checkPath($str) {
+    function checkPath($str)
+    {
         // 含む場合はfalse
         if (preg_match('|\./|', $str)) {
Index: branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Header.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Header.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Header.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_Header extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Design_Header extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'design/header.tpl';
@@ -60,5 +62,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -70,5 +73,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -121,5 +125,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -131,5 +136,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('division', 'division', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK'));
@@ -144,5 +150,6 @@
      * @return array エラーメッセージの配列
      */
-    function lfCheckError(&$objFormParam, &$arrErr) {
+    function lfCheckError(&$objFormParam, &$arrErr)
+    {
         $arrParams = $objFormParam->getHashArray();
         $objErr = new SC_CheckError_Ex($arrParams);
@@ -160,5 +167,6 @@
      * @return integer|boolean 登録が成功した場合 true; 失敗した場合 false
      */
-    function doRegister(&$objFormParam) {
+    function doRegister(&$objFormParam)
+    {
         $division = $objFormParam->getValue('division');
         $contents = $objFormParam->getValue($division);
@@ -179,5 +187,6 @@
      * @return string|boolean 成功した場合, テンプレートのパス; 失敗した場合 false
      */
-    function getTemplatePath($device_type_id, $division) {
+    function getTemplatePath($device_type_id, $division)
+    {
         $tpl_path = SC_Helper_PageLayout_Ex::getTemplatePath($device_type_id) . '/' . $division . '.tpl';
         if (file_exists($tpl_path)) {
Index: branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_MainEdit.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_MainEdit.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_MainEdit.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_MainEdit extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Design_MainEdit extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'design/main_edit.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objLayout = new SC_Helper_PageLayout_Ex();
@@ -141,5 +145,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -153,5 +158,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('ページID', 'page_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -172,5 +178,6 @@
      * @return array ページデータの配列
      */
-    function getTplMainpage($device_type_id, $page_id, &$objLayout) {
+    function getTplMainpage($device_type_id, $page_id, &$objLayout)
+    {
         $arrPageData = $objLayout->getPageProperties($device_type_id, $page_id);
 
@@ -196,5 +203,6 @@
      *                         失敗した場合 false
      */
-    function doRegister(&$objFormParam, &$objLayout) {
+    function doRegister(&$objFormParam, &$objLayout)
+    {
         $filename = $objFormParam->getValue('filename');
         $arrParams['device_type_id'] = $objFormParam->getValue('device_type_id');
@@ -251,5 +259,6 @@
      * @return integer ページID
      */
-    function registerPage($arrParams, &$objLayout) {
+    function registerPage($arrParams, &$objLayout)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -295,5 +304,6 @@
      * @return array エラーメッセージの配列
      */
-    function lfCheckError(&$objFormParam, &$arrErr) {
+    function lfCheckError(&$objFormParam, &$arrErr)
+    {
         $arrParams = $objFormParam->getHashArray();
         $objErr = new SC_CheckError_Ex($arrParams);
@@ -344,5 +354,6 @@
      * @return boolean 作成に成功した場合 true
      */
-    function createPHPFile($filename) {
+    function createPHPFile($filename)
+    {
         $path = USER_REALDIR . $filename . '.php';
 
Index: branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Template.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Template.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Template.php	(revision 22567)
@@ -31,5 +31,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_Template extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Design_Template extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -41,5 +42,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'design/template.tpl';
@@ -60,5 +62,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -70,5 +73,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -138,5 +142,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -148,5 +153,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('template_code', 'template_code', STEXT_LEN, 'a', array('EXIST_CHECK', 'SPTAB_CHECK','MAX_LENGTH_CHECK', 'ALNUM_CHECK'));
@@ -162,5 +168,6 @@
      * @return void
      */
-    function doUpdateMasterData($template_code, $device_type_id) {
+    function doUpdateMasterData($template_code, $device_type_id)
+    {
         $masterData = new SC_DB_MasterData_Ex();
 
@@ -197,5 +204,6 @@
      * @return void
      */
-    function updateBloc($filepath) {
+    function updateBloc($filepath)
+    {
         $sql = file_get_contents($filepath);
         if ($sql !== false) {
@@ -219,5 +227,6 @@
      * @return boolean 成功した場合 true; 失敗した場合 false
      */
-    function doDelete($template_code, $device_type_id) {
+    function doDelete($template_code, $device_type_id)
+    {
         if ($template_code == $this->getTemplateName($device_type_id)
                 || $template_code == $this->getTemplateName($device_type_id, true)) {
@@ -267,5 +276,6 @@
      * @return boolean 成功した場合 true; 失敗した場合 false
      */
-    function doRegister($template_code, $device_type_id) {
+    function doRegister($template_code, $device_type_id)
+    {
 
         $tpl_dir = USER_TEMPLATE_REALDIR . $template_code . '/';
@@ -297,5 +307,6 @@
      * @return boolean 成功した場合 true; 失敗した場合 false
      */
-    function doDownload($template_code) {
+    function doDownload($template_code)
+    {
         $from_dir = USER_TEMPLATE_REALDIR . $template_code . '/';
         $to_dir = SMARTY_TEMPLATES_REALDIR . $template_code . '/_packages/';
@@ -318,5 +329,6 @@
      * @return array テンプレート情報の配列
      */
-    function getAllTemplates($device_type_id) {
+    function getAllTemplates($device_type_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         return $objQuery->select('*', 'dtb_templates', 'device_type_id = ?', array($device_type_id));
@@ -330,5 +342,6 @@
      * @return string テンプレート名
      */
-    function getTemplateName($device_type_id, $isDefault = false) {
+    function getTemplateName($device_type_id, $isDefault = false)
+    {
         switch ($device_type_id) {
             case DEVICE_TYPE_MOBILE:
Index: branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_UpDown.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_UpDown.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_UpDown.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_UpDown extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Design_UpDown extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'design/up_down.tpl';
@@ -61,5 +63,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -73,5 +76,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -110,5 +114,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -120,5 +125,6 @@
      * @return object SC_UploadFileのインスタンス
      */
-    function lfInitUploadFile($objForm) {
+    function lfInitUploadFile($objForm)
+    {
         $pkg_dir = SMARTY_TEMPLATES_REALDIR . $objForm->getValue('template_code');
         $objUpFile = new SC_UploadFile_Ex(TEMPLATE_TEMP_REALDIR, $pkg_dir);
@@ -133,5 +139,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('テンプレートコード', 'template_code', STEXT_LEN, 'a', array('EXIST_CHECK', 'SPTAB_CHECK','MAX_LENGTH_CHECK', 'ALNUM_CHECK'));
         $objFormParam->addParam('テンプレート名', 'template_name', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'SPTAB_CHECK','MAX_LENGTH_CHECK'));
@@ -146,5 +153,6 @@
      * @return array エラー情報を格納した連想配列, エラーが無ければ(多分)nullを返す
      */
-    function lfCheckError(&$objFormParam, &$objUpFile) {
+    function lfCheckError(&$objFormParam, &$objUpFile)
+    {
         $arrErr = $objFormParam->checkError();
         $template_code = $objFormParam->getValue('template_code');
@@ -197,5 +205,6 @@
      * @return boolean 成功した場合 true; 失敗した場合 false
      */
-    function doUpload($objFormParam, $objUpFile) {
+    function doUpload($objFormParam, $objUpFile)
+    {
         $template_code = $objFormParam->getValue('template_code');
         $template_name = $objFormParam->getValue('template_name');
Index: branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Bloc.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Bloc.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Bloc.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_Bloc extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Design_Bloc extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'design/bloc.tpl';
@@ -60,5 +62,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -70,5 +73,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -150,5 +154,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -160,5 +165,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('ブロックID', 'bloc_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -176,5 +182,6 @@
      * @return array ブロック情報の配列
      */
-    function getBlocTemplate($device_type_id, $bloc_id, &$objLayout) {
+    function getBlocTemplate($device_type_id, $bloc_id, &$objLayout)
+    {
         $arrBloc = $objLayout->getBlocs($device_type_id, 'bloc_id = ?', array($bloc_id));
         if (SC_Utils_Ex::isAbsoluteRealPath($arrBloc[0]['tpl_path'])) {
@@ -200,5 +207,6 @@
      *                         失敗した場合 false
      */
-    function doRegister(&$objFormParam, &$objLayout) {
+    function doRegister(&$objFormParam, &$objLayout)
+    {
         $arrParams = $objFormParam->getHashArray();
 
@@ -257,5 +265,6 @@
      * @return boolean 登録が成功した場合 true; 失敗した場合 false
      */
-    function doDelete(&$objFormParam, &$objLayout) {
+    function doDelete(&$objFormParam, &$objLayout)
+    {
         $arrParams = $objFormParam->getHashArray();
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -299,5 +308,6 @@
      * @return array エラーメッセージの配列
      */
-    function lfCheckError(&$objFormParam, &$arrErr, &$objLayout) {
+    function lfCheckError(&$objFormParam, &$arrErr, &$objLayout)
+    {
         $arrParams = $objFormParam->getHashArray();
         $objErr = new SC_CheckError_Ex($arrParams);
Index: branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Design extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'design/index.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objLayout = new SC_Helper_PageLayout_Ex();
@@ -148,5 +152,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -159,5 +164,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam, $bloc_cnt = 0) {
+    function lfInitParam(&$objFormParam, $bloc_cnt = 0)
+    {
         $objFormParam->addParam('ページID', 'page_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
@@ -181,5 +187,6 @@
      * @return array レイアウト情報の配列
      */
-    function getLayout($device_type_id, $page_id, &$objLayout) {
+    function getLayout($device_type_id, $page_id, &$objLayout)
+    {
         $arrResults = array();
         $i = 0;
@@ -212,5 +219,6 @@
      * @return void
      */
-    function copyBloc(&$arrDest, $arrFrom, $cnt) {
+    function copyBloc(&$arrDest, $arrFrom, $cnt)
+    {
         $arrDest[$cnt]['target_id'] = $this->arrTarget[$arrFrom['target_id']];
         $arrDest[$cnt]['bloc_id'] = $arrFrom['bloc_id'];
@@ -227,5 +235,6 @@
      * @return bool 存在する場合 true
      */
-    function existsBloc($arrBloc, $arrToBlocs) {
+    function existsBloc($arrBloc, $arrToBlocs)
+    {
         foreach ($arrToBlocs as $arrToBloc) {
             if ($arrBloc['bloc_id'] === $arrToBloc['bloc_id']) {
@@ -243,5 +252,6 @@
      * @return string プレビューを行う tpl_mainpage ファイル名
      */
-    function savePreviewData($page_id, &$objLayout) {
+    function savePreviewData($page_id, &$objLayout)
+    {
         $arrPageData = $objLayout->getPageProperties(DEVICE_TYPE_PC, $page_id);
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -258,5 +268,6 @@
      * @return void
      */
-    function placingBlocs(&$objFormParam, $is_preview = false) {
+    function placingBlocs(&$objFormParam, $is_preview = false)
+    {
         $page_id = $is_preview ? 0 : $objFormParam->getValue('page_id');
         $device_type_id = $objFormParam->getValue('device_type_id');
Index: branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_OwnersStore extends LC_Page_Admin_Ex {
+class LC_Page_Admin_OwnersStore extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'ownersstore/plugin.tpl';
@@ -56,5 +58,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         // パラメーター管理クラス
         $objFormParam = new SC_FormParam_Ex();
@@ -213,5 +217,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -224,5 +229,6 @@
      * @return void
      */
-    function initParam(&$objFormParam, $mode) {
+    function initParam(&$objFormParam, $mode)
+    {
         $objFormParam->addParam('mode', 'mode', INT_LEN, '', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('plugin_id', 'plugin_id', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -239,5 +245,6 @@
      * @return void
      */
-    function initUploadFile(&$objUpFile, $key) {
+    function initUploadFile(&$objUpFile, $key)
+    {
         $objUpFile->addFile('プラグインファイル', $key, explode(',', PLUGIN_EXTENSION), FILE_SIZE, true, 0, 0, false);
     }
@@ -250,5 +257,6 @@
      * @return array エラー情報を格納した連想配列.
      */
-    function checkUploadFile($file_key) {
+    function checkUploadFile($file_key)
+    {
         $objErr = new SC_CheckError_Ex();
         // 拡張子チェック
@@ -268,5 +276,6 @@
      * @return boolean インストール済の場合true インストールされていない場合false
      */
-    function isInstalledPlugin($plugin_code) {
+    function isInstalledPlugin($plugin_code)
+    {
         $plugin = SC_Plugin_Util_Ex::getPluginByPluginCode($plugin_code);
         if (!empty($plugin)) {
@@ -285,5 +294,6 @@
      * @return string $plugin_code プラグインコード.
      */
-    function getPluginCode($file_name) {
+    function getPluginCode($file_name)
+    {
         // 分解
         $array_ext = explode('.', $file_name);
@@ -300,5 +310,6 @@
      * @return string $plugin_dir_path プラグイン保存ディレクトリのパス.
      */
-    function getPluginDir($plugin_code) {
+    function getPluginDir($plugin_code)
+    {
         $plugin_dir_path = PLUGIN_UPLOAD_REALDIR . $plugin_code . '/';
         return $plugin_dir_path;
@@ -311,5 +322,6 @@
      * @return string $plugin_dir_path プラグイン保存ディレクトリのパス.
      */
-    function getHtmlPluginDir($plugin_code) {
+    function getHtmlPluginDir($plugin_code)
+    {
         $plugin_html_dir_path = PLUGIN_HTML_REALDIR . $plugin_code . '/';
         return $plugin_html_dir_path;
@@ -323,5 +335,6 @@
      * @return string $plugin_file_path クラスファイルのパス.
      */
-    function getPluginFilePath($plugin_code , $plugin_class) {
+    function getPluginFilePath($plugin_code , $plugin_class)
+    {
         $plugin_file_path = $this->getPluginDir($plugin_code) . $plugin_class . '.php';
         return $plugin_file_path;
@@ -335,5 +348,6 @@
      * @return array エラー情報を格納した連想配列.
      */
-    function installPlugin($archive_file_name, $key) {
+    function installPlugin($archive_file_name, $key)
+    {
         // 一時展開ディレクトリにファイルがある場合は事前に削除.
         $arrFileHash = SC_Helper_FileManager_Ex::sfGetFileList(DOWNLOADS_TEMP_PLUGIN_INSTALL_DIR);
@@ -425,5 +439,6 @@
      * @param string $plugin_html_dir_path プラグイン毎に生成されるhtmlディレクトリのパス.
      */
-    function rollBack($temp_dir, $plugin_id = '', $plugin_html_dir_path ='') {
+    function rollBack($temp_dir, $plugin_id = '', $plugin_html_dir_path ='')
+    {
         // 一時ディレクトリを削除.
         SC_Helper_FileManager_Ex::deleteFile($temp_dir, false);
@@ -444,5 +459,6 @@
      * @return array プラグイン情報の配列
      */
-    function getPluginInfo(ReflectionClass $objReflection) {
+    function getPluginInfo(ReflectionClass $objReflection)
+    {
         $arrStaticProps = $objReflection->getStaticProperties();
         $arrConstants   = $objReflection->getConstants();
@@ -482,5 +498,6 @@
      * @return array エラー情報を格納した連想配列.
      */
-    function checkPluginConstants(ReflectionClass $objReflection, $dir_path) {
+    function checkPluginConstants(ReflectionClass $objReflection, $dir_path)
+    {
         $arrErr = array();
         // プラグイン情報を取得
@@ -551,5 +568,6 @@
      * @return array エラー情報を格納した連想配列.
      */
-    function updatePlugin($target_plugin, $upload_file_name) {
+    function updatePlugin($target_plugin, $upload_file_name)
+    {
         // アップデート前に不要なファイルを消しておきます.
         SC_Helper_FileManager_Ex::deleteFile(DOWNLOADS_TEMP_PLUGIN_UPDATE_DIR, false);
@@ -599,5 +617,6 @@
      * @return array エラー情報を格納した連想配列.
      */
-    function unpackPluginFile($unpack_file_name, $unpack_dir_path, $file_key) {
+    function unpackPluginFile($unpack_file_name, $unpack_dir_path, $file_key)
+    {
         $arrErr = array();
         // 解凍ディレクトリディレクトリを作成し、一時ディレクトリからファイルを移動
@@ -630,5 +649,6 @@
      * @return array エラー情報を格納した連想配列.
      */
-    function uninstallPlugin($plugin) {
+    function uninstallPlugin($plugin)
+    {
         $arrErr = array();
         // プラグインファイルを読み込みます.
@@ -664,5 +684,6 @@
      * @return array $arrErr エラー情報を格納した連想配列.
      */
-    function enablePlugin($plugin) {
+    function enablePlugin($plugin)
+    {
         $arrErr = array();
         // クラスファイルを読み込み.
@@ -689,5 +710,6 @@
      * @return array $arrErr エラー情報を格納した連想配列.
      */
-    function disablePlugin($plugin) {
+    function disablePlugin($plugin)
+    {
         $arrErr = array();
         // クラスファイルを読み込み.
@@ -716,5 +738,6 @@
      * @return integer 更新件数
      */
-    function updatePriority($plugin_id, $priority) {
+    function updatePriority($plugin_id, $priority)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // UPDATEする値を作成する。
@@ -733,5 +756,6 @@
      * @return array エラー情報を格納した連想配列.
      */
-    function registerData($arrPluginInfo) {
+    function registerData($arrPluginInfo)
+    {
 
         // プラグイン情報をDB登録.
@@ -805,5 +829,6 @@
      * @return array $arrErr エラー情報を格納した連想配列.
      */
-    function requirePluginFile($file_path, $key) {
+    function requirePluginFile($file_path, $key)
+    {
         $arrErr = array();
         if (file_exists($file_path)) {
@@ -824,5 +849,6 @@
      *
      */
-    function execPlugin($obj, $class_name, $exec_func) {
+    function execPlugin($obj, $class_name, $exec_func)
+    {
         $arrErr = array();
         if (method_exists($class_name, $exec_func) === true) {
@@ -843,5 +869,6 @@
      * @return boolean Archive_Tar::extractModify()のエラー
      */
-    function unpackPluginArchive($path) {
+    function unpackPluginArchive($path)
+    {
         // 圧縮フラグTRUEはgzip解凍をおこなう
         $tar = new Archive_Tar($path, true);
@@ -869,5 +896,6 @@
      * @return integer 更新件数
      */
-    function updatePluginEnable($plugin_id, $enable_flg) {
+    function updatePluginEnable($plugin_id, $enable_flg)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // UPDATEする値を作成する。
@@ -887,5 +915,6 @@
      * @return array $arrErr エラー情報を格納した連想配列.
      */
-    function deletePlugin($plugin_id, $plugin_code) {
+    function deletePlugin($plugin_id, $plugin_code)
+    {
         $arrErr = array();
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -914,5 +943,6 @@
      * @return boolean
      */
-    function isContainsFile($plugin_dir, $file_name) {
+    function isContainsFile($plugin_dir, $file_name)
+    {
         if (file_exists($plugin_dir) && is_dir($plugin_dir)) {
             if ($handle = opendir($plugin_dir)) {
@@ -933,5 +963,6 @@
      * @return boolean
      */
-    function checkContainsFile($tar_obj, $file_path) {
+    function checkContainsFile($tar_obj, $file_path)
+    {
         // ファイル一覧を取得
         $arrayFile = $tar_obj->listContent();
@@ -948,5 +979,6 @@
      * @return void
      */
-    function makeDir($dir_path) {
+    function makeDir($dir_path)
+    {
         // ディレクトリ作成
         if (!file_exists($dir_path)) {
@@ -961,5 +993,6 @@
      * @return string $conflict_alert_message メッセージ
      */
-    function checkConflictPlugin($plugin_id) {
+    function checkConflictPlugin($plugin_id)
+    {
         // フックポイントを取得します.
         $hookPoints = $this->getHookPoint($plugin_id);
@@ -996,5 +1029,6 @@
      * @return boolean.
      */
-    function isError($error) {
+    function isError($error)
+    {
         if (is_array($error) && count($error) > 0) {
             return true;
@@ -1009,5 +1043,6 @@
      * @return array フックポイントの連想配列.
      */
-    function getHookPoint($plugin_id) {
+    function getHookPoint($plugin_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_OwnersStore_Settings extends LC_Page_Admin_Ex {
+class LC_Page_Admin_OwnersStore_Settings extends LC_Page_Admin_Ex 
+{
 
     /** SC_FormParamのインスタンス */
@@ -51,5 +52,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -67,5 +69,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -77,5 +80,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         switch ($this->getMode()) {
             // 入力内容をDBへ登録する
@@ -94,5 +98,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -105,5 +110,6 @@
      * @return void
      */
-    function execRegisterMode() {
+    function execRegisterMode()
+    {
         // パラメーターオブジェクトの初期化
         $this->initRegisterMode();
@@ -134,5 +140,6 @@
      * @return void
      */
-    function initRegisterMode() {
+    function initRegisterMode()
+    {
         // 前後の空白を削除
         if (isset($_POST['public_key'])) {
@@ -153,5 +160,6 @@
      * @return array エラー情報を格納した連想配列
      */
-    function validateRegistermode() {
+    function validateRegistermode()
+    {
         return $this->objForm->checkError();
     }
@@ -164,5 +172,6 @@
      * @return void
      */
-    function execDefaultMode() {
+    function execDefaultMode()
+    {
         $this->arrForm = $this->getOwnersStoreSettings();
     }
@@ -174,5 +183,6 @@
      * @return void
      */
-    function registerOwnersStoreSettings($arrSettingsData) {
+    function registerOwnersStoreSettings($arrSettingsData)
+    {
         $table = 'dtb_ownersstore_settings';
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -192,5 +202,6 @@
      * @return array
      */
-    function getOwnersStoreSettings() {
+    function getOwnersStoreSettings()
+    {
         $table   = 'dtb_ownersstore_settings';
         $colmuns = '*';
Index: branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Log.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Log.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Log.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_OwnersStore_Log extends LC_Page_Admin_Ex {
+class LC_Page_Admin_OwnersStore_Log extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -57,5 +59,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -67,5 +70,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         switch ($this->getMode()) {
             case 'detail':
@@ -91,9 +95,11 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
-    function getLogs() {
+    function getLogs()
+    {
         $sql =<<<END
 SELECT
@@ -114,5 +120,6 @@
     }
 
-    function initParam() {
+    function initParam()
+    {
         $objForm = new SC_FormParam_Ex();
         $objForm->addParam('log_id', 'log_id', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -121,5 +128,6 @@
     }
 
-    function getLogDetail($log_id) {
+    function getLogDetail($log_id)
+    {
             $sql =<<<END
 SELECT
Index: branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Module.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Module.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Module.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_OwnersStore_Module extends LC_Page_Admin_Ex {
+class LC_Page_Admin_OwnersStore_Module extends LC_Page_Admin_Ex 
+{
 
     var $tpl_subno = 'index';
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
 
@@ -58,5 +60,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -68,5 +71,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         // nothing.
     }
@@ -77,5 +81,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php	(revision 22537)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Status extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Order_Status extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/status.tpl';
@@ -60,5 +62,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -70,5 +73,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -122,5 +126,6 @@
      *  @param SC_FormParam
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('注文番号', 'order_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('変更前対応状況', 'status', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
@@ -136,5 +141,6 @@
      *  @param SC_FormParam
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力データを渡す。
         $arrRet = $objFormParam->getHashArray();
@@ -150,10 +156,12 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
 
     // 対応状況一覧の表示
-    function lfStatusDisp($status,$pageno) {
+    function lfStatusDisp($status,$pageno)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -190,5 +198,6 @@
      * 対応状況の更新
      */
-    function lfStatusMove($statusId, $arrOrderId) {
+    function lfStatusMove($statusId, $arrOrderId)
+    {
         $objPurchase = new SC_Helper_Purchase_Ex();
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -215,5 +224,6 @@
      * 受注テーブルの論理削除
      */
-    function lfDelete($arrOrderId) {
+    function lfDelete($arrOrderId)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php	(revision 22554)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Edit extends LC_Page_Admin_Order_Ex {
+class LC_Page_Admin_Order_Edit extends LC_Page_Admin_Order_Ex 
+{
 
     var $arrShippingKeys = array(
@@ -90,5 +91,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/edit.tpl';
@@ -123,5 +125,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -133,5 +136,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objPurchase = new SC_Helper_Purchase_Ex();
@@ -312,5 +316,6 @@
  * @return void
  */
-function destroy() {
+function destroy()
+{
     parent::destroy();
 }
@@ -322,5 +327,6 @@
  * @return void
  */
-function lfInitParam(&$objFormParam) {
+function lfInitParam(&$objFormParam)
+{
     // 検索条件のパラメーターを初期化
     parent::lfInitParam($objFormParam);
@@ -443,5 +449,6 @@
  * @return void
  */
-function lfInitMultipleParam(&$objFormParam) {
+function lfInitMultipleParam(&$objFormParam)
+{
     $objFormParam->addParam('商品規格ID', 'multiple_product_class_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
     $objFormParam->addParam('商品コード', 'multiple_product_code', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'), 1);
@@ -460,5 +467,6 @@
  * @return void
  */
-function setMultipleItemTo(&$objFormParam) {
+function setMultipleItemTo(&$objFormParam)
+{
     $arrMultipleKey = array('multiple_shipping_id',
             'multiple_product_class_id',
@@ -537,5 +545,6 @@
  * @return void
  */
-function setOrderToFormParam(&$objFormParam, $order_id) {
+function setOrderToFormParam(&$objFormParam, $order_id)
+{
     $objPurchase = new SC_Helper_Purchase_Ex();
 
@@ -605,5 +614,6 @@
  * @return array エラーメッセージの配列
  */
-function lfCheckError(&$objFormParam) {
+function lfCheckError(&$objFormParam)
+{
     $objProduct = new SC_Product_Ex();
 
@@ -691,5 +701,6 @@
      * エラー発生時は負数を返す。
      */
-    function doRegister($order_id, &$objPurchase, &$objFormParam, &$message, &$arrValuesBefore) {
+    function doRegister($order_id, &$objPurchase, &$objFormParam, &$message, &$arrValuesBefore)
+    {
 
         $objQuery =& SC_Query_Ex::getSingletonInstance();
@@ -826,5 +837,6 @@
      * @return void
      */
-    function doRegisterProduct(&$objFormParam) {
+    function doRegisterProduct(&$objFormParam)
+    {
         $product_class_id = $objFormParam->getValue('add_product_class_id');
         if (SC_Utils_Ex::isBlank($product_class_id)) {
@@ -844,5 +856,6 @@
      * @return void
      */
-    function doDeleteProduct($delete_no, &$objFormParam) {
+    function doDeleteProduct($delete_no, &$objFormParam)
+    {
 
         $select_shipping_id    = $objFormParam->getValue('select_shipping_id');
@@ -879,5 +892,6 @@
      * @return void
      */
-    function addShipping(&$objFormParam) {
+    function addShipping(&$objFormParam)
+    {
         $objFormParam->setValue('shipping_quantity',
                                 $objFormParam->getValue('shipping_quantity') + 1);
@@ -894,5 +908,6 @@
      * @return void
      */
-    function setCustomerTo($customer_id, &$objFormParam) {
+    function setCustomerTo($customer_id, &$objFormParam)
+    {
         $arrCustomer = SC_Helper_Customer_Ex::sfGetCustomerDataFromId($customer_id);
         foreach ($arrCustomer as $key => $val) {
@@ -911,5 +926,6 @@
      * @return アンカーキーの文字列
      */
-    function getAnchorKey(&$objFormParam) {
+    function getAnchorKey(&$objFormParam)
+    {
         $ancor_key = $objFormParam->getValue('anchor_key');
         if (!SC_Utils_Ex::isBlank($ancor_key)) {
@@ -926,5 +942,6 @@
      * @return void
      */
-    function shipmentAddProduct(&$objFormParam, $add_product_class_id){
+    function shipmentAddProduct(&$objFormParam, $add_product_class_id)
+    {
 
         //複数配送に商品情報追加
@@ -969,5 +986,6 @@
      * @return void
      */
-    function shipmentEditProduct(&$objFormParam, $edit_product_class_id, $change_no){
+    function shipmentEditProduct(&$objFormParam, $edit_product_class_id, $change_no)
+    {
         $arrPreProductClassIds = $objFormParam->getValue('product_class_id');
         $select_shipping_id    = $objFormParam->getValue('select_shipping_id');
@@ -1023,5 +1041,6 @@
      * @return array 配送データ
      */
-    function getShipmentProducts(&$objFormParam){
+    function getShipmentProducts(&$objFormParam)
+    {
         $arrShipmentProducts['shipment_product_class_id']    = $objFormParam->getValue('shipment_product_class_id');
         $arrShipmentProducts['shipment_product_code']        = $objFormParam->getValue('shipment_product_code');
@@ -1044,5 +1063,6 @@
      * @return void
      */
-    function changeShipmentProducts(&$arrShipmentProducts, $arrProductInfo, $shipping_id, $no){
+    function changeShipmentProducts(&$arrShipmentProducts, $arrProductInfo, $shipping_id, $no)
+    {
         $arrShipmentProducts['shipment_product_class_id'][$shipping_id][$no]    = $arrProductInfo['product_class_id'];
         $arrShipmentProducts['shipment_product_code'][$shipping_id][$no]        = $arrProductInfo['product_code'];
@@ -1060,5 +1080,6 @@
      * @return void
      */
-    function setProductsQuantity(&$objFormParam){
+    function setProductsQuantity(&$objFormParam)
+    {
         $arrShipmentsItems = $objFormParam->getSwapArray(array('shipment_product_class_id','shipment_quantity'));
         foreach ($arrShipmentsItems as $arritems) {
@@ -1085,5 +1106,6 @@
      * @return void
      */
-    function checkDeleteProducts(&$objFormParam, $arrProductClassIds, $delete_product_class_id, $arrDeleteKeys){
+    function checkDeleteProducts(&$objFormParam, $arrProductClassIds, $delete_product_class_id, $arrDeleteKeys)
+    {
         foreach ($arrProductClassIds as $relation_index => $product_class_id) {
             //product_class_idの重複はないので、１つ削除したら完了
@@ -1112,5 +1134,6 @@
      * @return void
      */
-    function deleteShipment(&$objFormParam, $arrShipmentDeletKeys, $delete_shipping_id, $delete_no){
+    function deleteShipment(&$objFormParam, $arrShipmentDeletKeys, $delete_shipping_id, $delete_no)
+    {
             foreach ($arrShipmentDeletKeys as $delete_key) {
                 $arrShipments = $objFormParam->getValue($delete_key);
@@ -1137,5 +1160,6 @@
      * @return array  $arrAddProducts           更新データ
      */
-    function checkInsertOrderProducts(&$objFormParam, $arrProductClassIds, $insert_product_class_id, $arrAddProductInfo){
+    function checkInsertOrderProducts(&$objFormParam, $arrProductClassIds, $insert_product_class_id, $arrAddProductInfo)
+    {
         if(!in_array($insert_product_class_id, $arrProductClassIds)){
             $arrAddProductInfo['product_name'] = ($arrAddProductInfo['product_name'])? $arrAddProductInfo['product_name']:$arrAddProductInfo['name'];
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php	(revision 22524)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Pdf extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Order_Pdf extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/pdf_input.tpl';
@@ -65,5 +67,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -75,5 +78,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -116,5 +120,6 @@
      * PDF作成フォームのデフォルト値の生成
      */
-    function createFromValues($order_id,$pdf_order_id) {
+    function createFromValues($order_id,$pdf_order_id)
+    {
         // ここが$arrFormの初登場ということを明示するため宣言する。
         $arrForm = array();
@@ -150,5 +155,6 @@
      * @param SC_FormParam $objFormParam
      */
-    function createPdf(&$objFormParam) {
+    function createPdf(&$objFormParam)
+    {
 
         $arrErr = $this->lfCheckError($objFormParam);
@@ -176,5 +182,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -184,5 +191,6 @@
      *  @param SC_FormParam
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('注文番号', 'order_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('注文番号', 'pdf_order_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
@@ -207,5 +215,6 @@
      */
 
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力データを渡す。
         $arrParams = $objFormParam->getHashArray();
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Multiple.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Multiple.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Multiple.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Multiple extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Order_Multiple extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/multiple.tpl';
@@ -57,5 +59,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -67,5 +70,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->setTemplate($this->tpl_mainpage);
@@ -78,5 +82,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_MailView.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_MailView.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_MailView.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_MailView extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Order_MailView extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/mail_view.tpl';
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $send_id = $_GET['send_id'];
@@ -81,5 +85,6 @@
      * @param int $send_id
      */
-    function getMailHistory($send_id) {
+    function getMailHistory($send_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'subject, mail_body';
@@ -94,5 +99,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php	(revision 22554)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id: LC_Page_Admin_Order_Disp.php 20767 2011-03-22 10:07:32Z nanasess $
  */
-class LC_Page_Admin_Order_Disp extends LC_Page_Admin_Order_Ex {
+class LC_Page_Admin_Order_Disp extends LC_Page_Admin_Order_Ex 
+{
 
     var $arrShippingKeys = array(
@@ -75,5 +76,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/disp.tpl';
@@ -100,5 +102,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -110,5 +113,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objPurchase = new SC_Helper_Purchase_Ex();
@@ -137,5 +141,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -147,5 +152,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         // 検索条件のパラメータを初期化
         parent::lfInitParam($objFormParam);
@@ -259,5 +265,6 @@
      * @return void
      */
-    function setOrderToFormParam(&$objFormParam, $order_id) {
+    function setOrderToFormParam(&$objFormParam, $order_id)
+    {
         $objPurchase = new SC_Helper_Purchase_Ex();
 
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order.php	(revision 22537)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Order extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/index.tpl';
@@ -81,5 +83,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -91,5 +94,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objFormParam = new SC_FormParam_Ex();
@@ -182,5 +186,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -192,5 +197,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('注文番号1', 'search_order_id1', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('注文番号2', 'search_order_id2', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
@@ -239,5 +245,6 @@
      * @return void
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objErr = new SC_CheckError_Ex($objFormParam->getHashArray());
         $objErr->arrErr = $objFormParam->checkError();
@@ -277,5 +284,6 @@
      * @return void
      */
-    function buildQuery($key, &$where, &$arrValues, &$objFormParam) {
+    function buildQuery($key, &$where, &$arrValues, &$objFormParam)
+    {
         $dbFactory = SC_DB_DBFactory_Ex::getInstance();
         switch ($key) {
@@ -411,5 +419,6 @@
      * @return void
      */
-    function doDelete($where, $arrParam = array()) {
+    function doDelete($where, $arrParam = array())
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $sqlval['del_flg']     = 1;
@@ -429,5 +438,6 @@
      * @return void
      */
-    function doOutputCSV($where, $arrVal, $order) {
+    function doOutputCSV($where, $arrVal, $order)
+    {
         if ($where != '') {
             $where = " WHERE $where ";
@@ -445,5 +455,6 @@
      * @return integer 検索結果の行数
      */
-    function getNumberOfLines($where, $arrValues) {
+    function getNumberOfLines($where, $arrValues)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         return $objQuery->count('dtb_order', $where, $arrValues);
@@ -460,5 +471,6 @@
      * @return array 受注の検索結果
      */
-    function findOrders($where, $arrValues, $limit, $offset, $order) {
+    function findOrders($where, $arrValues, $limit, $offset, $order)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         if ($limit != 0) {
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_ProductSelect.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_ProductSelect.php	(revision 22493)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_ProductSelect.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_ProductSelect extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Order_ProductSelect extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/product_select.tpl';
@@ -59,5 +61,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -69,5 +72,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -102,5 +106,6 @@
                 $this->tpl_javascript .= $this->getTplJavascript($objProduct);
                 $js_fnOnLoad = $this->getFnOnload($this->arrProducts);
-                $this->tpl_javascript .= 'function fnOnLoad(){' . $js_fnOnLoad . '}';
+                $this->tpl_javascript .= 'function fnOnLoad()
+                {' . $js_fnOnLoad . '}';
                 $this->tpl_onload .= 'fnOnLoad();';
                 // 規格1クラス名
@@ -133,5 +138,6 @@
      * @param SC_Product $objProduct
      */
-    function getProductList($arrProductId, &$objProduct) {
+    function getProductList($arrProductId, &$objProduct)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -147,5 +153,6 @@
      * @param array $arrProducts
      */
-    function getFnOnload($arrProducts) {
+    function getFnOnload($arrProducts)
+    {
         foreach ($arrProducts as $arrProduct) {
             $js_fnOnLoad .= "fnSetClassCategories(document.product_form{$arrProduct['product_id']});";
@@ -158,5 +165,6 @@
      * @param SC_Product $objProduct
      */
-    function getTplJavascript(&$objProduct) {
+    function getTplJavascript(&$objProduct)
+    {
         return 'productsClassCategories = ' . SC_Utils_Ex::jsonEncode($objProduct->classCategories) . '; ';
     }
@@ -167,5 +175,6 @@
      * @param SC_Product $objProduct
      */
-    function getProducts($whereAndBind,&$objProduct, $page_max, $startno) {
+    function getProducts($whereAndBind,&$objProduct, $page_max, $startno)
+    {
         $where = $whereAndBind['where'];
         $bind = $whereAndBind['bind'];
@@ -187,5 +196,6 @@
      * @param SC_Product $objProduct
      */
-    function getLineCount($whereAndBind,&$objProduct) {
+    function getLineCount($whereAndBind,&$objProduct)
+    {
         $where = $whereAndBind['where'];
         $bind = $whereAndBind['bind'];
@@ -203,5 +213,6 @@
      * @param SC_FormParam $objFormParam
      */
-    function createWhere(&$objFormParam,&$objDb) {
+    function createWhere(&$objFormParam,&$objDb)
+    {
         $arrForm = $objFormParam->getHashArray();
         $where = 'alldtl.del_flg = 0';
@@ -243,5 +254,6 @@
      * @param unknown_type $globalParams
      */
-    function getNo($globalParams) {
+    function getNo($globalParams)
+    {
         foreach ($globalParams as $params) {
             if (isset($params['no']) && $params['no']!= '') {
@@ -256,5 +268,6 @@
      * @param unknown_type $globalParams
      */
-    function getShippingId($globalParams) {
+    function getShippingId($globalParams)
+    {
         foreach ($globalParams as $params) {
             if (isset($params['shipping_id']) && $params['shipping_id']!= '') {
@@ -271,5 +284,6 @@
      * @param $productList
      */
-    function sortProducts($arrProduct_id,$productList) {
+    function sortProducts($arrProduct_id,$productList)
+    {
         $products  = array();
         foreach ($productList as $item) {
@@ -287,5 +301,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -295,5 +310,6 @@
      * @param SC_FormParam $objFormParam
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('オーダーID', 'order_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam('商品名', 'search_name', STEXT_LEN, 'KVa', array('MAX_LENGTH_CHECK'));
Index: branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php	(revision 22231)
+++ branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Mail extends LC_Page_Admin_Order_Ex {
+class LC_Page_Admin_Order_Mail extends LC_Page_Admin_Order_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'order/mail.tpl';
@@ -60,5 +62,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -70,5 +73,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $post = $_POST;
         //一括送信用の処理
@@ -153,5 +157,6 @@
      * @var int order_id
      */
-    function getMailHistory($order_id) {
+    function getMailHistory($order_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'send_date, subject, template_id, send_id';
@@ -166,5 +171,6 @@
      * @param SC_FormParam $objFormParam
      */
-    function doSend(&$objFormParam) {
+    function doSend(&$objFormParam)
+    {
         $arrErr = $objFormParam->checkerror();
 
@@ -191,5 +197,6 @@
      * @param SC_FormParam $objFormParam
      */
-    function confirm(&$objFormParam) {
+    function confirm(&$objFormParam)
+    {
         $arrErr = $objFormParam->checkerror();
         // メールの送信
@@ -218,5 +225,6 @@
      * @param SC_FormParam $objFormParam
      */
-    function changeData(&$objFormParam) {
+    function changeData(&$objFormParam)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -254,5 +262,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -262,5 +271,6 @@
      * @param SC_FormParam $objFormParam
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         // 検索条件のパラメーターを初期化
         parent::lfInitParam($objFormParam);
Index: branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_Recommend.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_Recommend.php	(revision 22559)
+++ branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_Recommend.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_Recommend extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Contents_Recommend extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'contents/recommend.tpl';
@@ -58,5 +60,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -68,5 +71,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         $objFormParam = new SC_FormParam_Ex();
         $this->lfInitParam($objFormParam);
@@ -143,5 +147,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -151,5 +156,6 @@
      * @param Object $objFormParam
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('カテゴリID', 'category_id', INT_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -163,5 +169,6 @@
      * @return Array エラー内容
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objErr = new SC_CheckError_Ex($objFormParam->getHashArray());
         $objErr->arrErr = $objFormParam->checkError();
@@ -173,5 +180,6 @@
      * @return Array $arrReturnProducts データベースに登録されているおすすめ商品の配列
      */
-    function getRecommendProducts() {
+    function getRecommendProducts()
+    {
         $objQuery = $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'dtb_products.name,dtb_products.main_list_image,dtb_best_products.*,dtb_products.status';
@@ -194,5 +202,6 @@
      * @param Integer $member_id 登録した管理者を示すID
      */
-    function insertRecommendProduct($arrPost,$member_id) {
+    function insertRecommendProduct($arrPost,$member_id)
+    {
         $objQuery = $objQuery =& SC_Query_Ex::getSingletonInstance();
         // 古いおすすめ商品のデータを削除する。
@@ -215,5 +224,6 @@
      * @param Array $arrPost POSTの値を格納した配列
      */
-    function deleteProduct($arrPost) {
+    function deleteProduct($arrPost)
+    {
         $objQuery = $objQuery =& SC_Query_Ex::getSingletonInstance();
         $table = 'dtb_best_products';
@@ -228,5 +238,6 @@
      * @return Array $arrProduct 商品のデータを格納した配列
      */
-    function getProduct($product_id) {
+    function getProduct($product_id)
+    {
         $objQuery = $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'product_id,main_list_image,name';
@@ -243,5 +254,6 @@
      * @param Array $arrItems フロントに表示される商品の情報を格納した配列
      */
-    function setProducts($arrPost,$arrItems) {
+    function setProducts($arrPost,$arrItems)
+    {
         $arrProduct = $this->getProduct($arrPost['product_id']);
         if (count($arrProduct) > 0) {
Index: branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileManager.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileManager.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileManager.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_FileManager extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Contents_FileManager extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'contents/file_manager.tpl';
@@ -57,5 +59,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -67,5 +70,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // フォーム操作クラス
@@ -205,5 +209,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -215,5 +220,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         // 共通定義
         $this->lfInitParamCommon($objFormParam);
@@ -226,5 +232,6 @@
      * @return void
      */
-    function lfInitParamModeMove(&$objFormParam) {
+    function lfInitParamModeMove(&$objFormParam)
+    {
         // 共通定義
         $this->lfInitParamCommon($objFormParam);
@@ -238,5 +245,6 @@
      * @return void
      */
-    function lfInitParamModeView(&$objFormParam) {
+    function lfInitParamModeView(&$objFormParam)
+    {
         // 共通定義
         $this->lfInitParamCommon($objFormParam);
@@ -250,5 +258,6 @@
      * @return void
      */
-    function lfInitParamModeCreate(&$objFormParam) {
+    function lfInitParamModeCreate(&$objFormParam)
+    {
         // 共通定義
         $this->lfInitParamCommon($objFormParam);
@@ -263,5 +272,6 @@
      * @return void
      */
-    function lfInitParamCommon(&$objFormParam) {
+    function lfInitParamCommon(&$objFormParam)
+    {
         $objFormParam->addParam('ルートディレクトリ', 'top_dir', MTEXT_LEN, 'a', array());
         $objFormParam->addParam('現在の階層ディレクトリ', 'now_dir', MTEXT_LEN, 'a', array());
@@ -277,5 +287,6 @@
      * @return void
      */
-    function lfInitFile(&$objUpFile) {
+    function lfInitFile(&$objUpFile)
+    {
         $objUpFile->addFile('ファイル', 'upload_file', array(), FILE_SIZE, true, 0, 0, false);
     }
@@ -287,5 +298,6 @@
      * @return array $setParam テンプレートに渡す値
      */
-    function createSetParam($arrVal) {
+    function createSetParam($arrVal)
+    {
         $setParam = $arrVal;
         // Windowsの場合は, ディレクトリの区切り文字を\から/に変換する
@@ -305,5 +317,6 @@
      * @return void
      */
-    function setDispParam($key, $val) {
+    function setDispParam($key, $val)
+    {
         $this->$key = $val;
     }
@@ -316,5 +329,6 @@
      * @return boolean ディレクトリ作成できたかどうか
      */
-    function tryCreateDir($objFileManager, $objFormParam) {
+    function tryCreateDir($objFileManager, $objFormParam)
+    {
         $create_dir_flg = false;
         $create_dir = rtrim($objFormParam->getValue('now_dir'), '/');
@@ -332,5 +346,6 @@
      * @return boolean ファイル表示するかどうか
      */
-    function tryView(&$objFormParam) {
+    function tryView(&$objFormParam)
+    {
         $view_flg = false;
         $now_dir = $this->lfCheckSelectDir($objFormParam, dirname($objFormParam->getValue('select_file')));
@@ -348,5 +363,6 @@
      * @return void
      */
-    function setParentDir($objFormParam) {
+    function setParentDir($objFormParam)
+    {
         $parent_dir = $this->lfGetParentDir($objFormParam->getValue('now_dir'));
         $this->setDispParam('tpl_parent_dir', $parent_dir);
@@ -359,5 +375,6 @@
      * @return void
      */
-    function setDispPath($objFormParam) {
+    function setDispPath($objFormParam)
+    {
         $tpl_now_dir = '';
         // Windows 環境で DIRECTORY_SEPARATOR が JavaScript に渡るとエスケープ文字と勘違いするので置換
@@ -375,5 +392,6 @@
      * @return void
      */
-    function setDispError($key, $value) {
+    function setDispError($key, $value)
+    {
         // 既にエラーがある場合は、処理しない
         if (SC_Utils_Ex::isBlank($this->arrErr[$key])) {
@@ -388,5 +406,6 @@
      * @return void
      */
-    function setTplOnLoad($tpl_onload) {
+    function setTplOnLoad($tpl_onload)
+    {
         $this->tpl_onload .= $tpl_onload;
     }
@@ -399,5 +418,6 @@
      * @return string $select_dir 選択ディレクトリ
      */
-    function lfCheckSelectDir($objFormParam, $dir) {
+    function lfCheckSelectDir($objFormParam, $dir)
+    {
         $select_dir = '';
         $top_dir = $objFormParam->getValue('top_dir');
@@ -424,5 +444,6 @@
      * @return string $parent_dir 親ディレクトリ
      */
-    function lfGetParentDir($dir) {
+    function lfGetParentDir($dir)
+    {
         $parent_dir = '';
         $dir = rtrim($dir, '/');
@@ -443,5 +464,6 @@
      * @return void
      */
-    function setDispTree($objFileManager, $objFormParam) {
+    function setDispTree($objFileManager, $objFormParam)
+    {
         $tpl_onload = '';
         // ツリーを表示する divタグid, ツリー配列変数名, 現在ディレクトリ, 選択ツリーhidden名, ツリー状態hidden名, mode hidden名
@@ -475,5 +497,6 @@
      * @return void
      */
-    function setIsTopDir($objFormParam) {
+    function setIsTopDir($objFormParam)
+    {
         // トップディレクトリか調査
         $is_top_dir = false;
Index: branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileView.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileView.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileView.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_FileView extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Contents_FileView extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -61,5 +64,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         switch ($this->getMode()) {
@@ -89,5 +93,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -99,5 +104,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('ファイル名', 'file', MTEXT_LEN, 'a', array('EXIST_CHECK'));
     }
@@ -109,5 +115,6 @@
      * @return boolen $file_check_flg エラーチェックの結果
      */
-    function checkErrorDispFile($objFormParam) {
+    function checkErrorDispFile($objFormParam)
+    {
         $file_check_flg = false;
 
@@ -127,5 +134,6 @@
      * @return void
      */
-    function execFileView($objFormParam) {
+    function execFileView($objFormParam)
+    {
         $file = $objFormParam->getValue('file');
 
Index: branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_CSV.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_CSV.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_CSV.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_CSV extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Contents_CSV extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'contents/csv.tpl';
@@ -61,5 +63,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -71,5 +74,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -117,5 +121,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('編集種別', 'tpl_subno_csv', STEXT_LEN, 'a', array('ALNUM_CHECK', 'MAX_LENGTH_CHECK'), 'product');
         $objFormParam->addParam('出力設定リスト', 'output_list', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK', 'EXIST_CHECK'));
@@ -131,5 +136,6 @@
      * @return array SwapArrayしたカラム設定
      */
-    function lfGetCSVColumn($csv_id, $csv_status_flg = '', $order ='rank, no') {
+    function lfGetCSVColumn($csv_id, $csv_status_flg = '', $order ='rank, no')
+    {
         $objCSV = new SC_Helper_CSV_Ex();
         if (SC_Utils_Ex::sfIsInt($csv_id)) {
@@ -152,5 +158,6 @@
      * @return array 選択済みカラム列情報
      */
-    function lfGetSelected($csv_id) {
+    function lfGetSelected($csv_id)
+    {
         $arrData = $this->lfGetCSVColumn($csv_id, CSV_COLUMN_STATUS_FLG_ENABLE);
         if (!isset($arrData['no'])) {
@@ -166,5 +173,6 @@
      * @return array 選択済みカラム列情報
      */
-    function lfGetOptions($csv_id) {
+    function lfGetOptions($csv_id)
+    {
         $arrData = $this->lfGetCSVColumn($csv_id);
         if (!isset($arrData['no'])) {
@@ -181,5 +189,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -191,5 +200,6 @@
      * @return integer CSV_ID
      */
-    function lfGetCsvId($subno_csv) {
+    function lfGetCsvId($subno_csv)
+    {
         $objCSV = new SC_Helper_CSV_Ex();
         $arrKey = array_keys($objCSV->arrSubnavi,$subno_csv);
@@ -209,5 +219,6 @@
      * @return boolean 成功:true
      */
-    function lfSetDefaultCsvOutput($csv_id) {
+    function lfSetDefaultCsvOutput($csv_id)
+    {
         $arrData = $this->lfGetCSVColumn($csv_id, '', $order = 'no');
         if (!isset($arrData['no'])) {
@@ -224,5 +235,6 @@
      * @return boolean 成功:true
      */
-    function lfUpdCsvOutput($csv_id, $arrData = array()) {
+    function lfUpdCsvOutput($csv_id, $arrData = array())
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // ひとまず、全部使用しないで更新する
Index: branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_CsvSql.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_CsvSql.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_CsvSql.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_CsvSql extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Contents_CsvSql extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'contents/csv_sql.tpl';
@@ -57,5 +59,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -67,5 +70,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
         // パラメーター管理クラス
         $objFormParam = new SC_FormParam_Ex();
@@ -142,5 +146,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('SQL ID', 'sql_id', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK'));
         $objFormParam->addParam('CSV出力対象SQL ID', 'csv_output_id', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK'), '', false);
@@ -156,5 +161,6 @@
      * @return array エラー配列
      */
-    function lfCheckConfirmError(&$objFormParam) {
+    function lfCheckConfirmError(&$objFormParam)
+    {
         // パラメーターの基本チェック
         $arrErr = $objFormParam->checkError();
@@ -183,5 +189,6 @@
      * @return array エラー配列
      */
-    function lfCheckPreviewError(&$objFormParam) {
+    function lfCheckPreviewError(&$objFormParam)
+    {
         // パラメーターの基本チェック
         $arrErr = $objFormParam->checkError();
@@ -202,5 +209,6 @@
      * @return array エラー配列
      */
-    function lfCheckDeleteError(&$objFormParam) {
+    function lfCheckDeleteError(&$objFormParam)
+    {
         // パラメーターの基本チェック
         $arrErr = $objFormParam->checkError();
@@ -220,5 +228,6 @@
      * @return array エラー配列
      */
-    function lfCheckOutputError(&$objFormParam) {
+    function lfCheckOutputError(&$objFormParam)
+    {
         // パラメーターの基本チェック
         $arrErr = $objFormParam->checkError();
@@ -237,5 +246,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -246,5 +256,6 @@
      * @return array テーブル名一覧
      */
-    function lfGetTableList() {
+    function lfGetTableList()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         // 実テーブル上のカラム設定を見に行く仕様に変更 ref #476
@@ -270,5 +281,6 @@
      * @return array カラム一覧の配列
      */
-    function lfGetColList($table) {
+    function lfGetColList($table)
+    {
         if (SC_Utils_Ex::isBlank($table)) {
             return array();
@@ -288,5 +300,6 @@
      * @return array 取得結果の配列
      */
-    function lfGetSqlList($where = '' , $arrVal = array()) {
+    function lfGetSqlList($where = '' , $arrVal = array())
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $table = 'dtb_csv_sql';
@@ -301,5 +314,6 @@
      * @return string エラー内容
      */
-    function lfCheckSQL($sql) {
+    function lfCheckSQL($sql)
+    {
         // FIXME: 意図的に new SC_Query しています。 force_runをtrueにする必要があるので.本当はqueryの引数で制御したい。ref SC_Query
         $objQuery = new SC_Query_Ex('', true);
@@ -319,5 +333,6 @@
      * @return mixed 表示用パラメーター
      */
-    function lfGetSqlData(&$objFormParam) {
+    function lfGetSqlData(&$objFormParam)
+    {
         // 編集中データがある場合
         if (!SC_Utils_Ex::isBlank($objFormParam->getValue('sql_name'))
@@ -340,5 +355,6 @@
      * @return void
      */
-    function lfDoCsvOutput($sql_id) {
+    function lfDoCsvOutput($sql_id)
+    {
         $arrData = $this->lfGetSqlList('sql_id = ?', array($sql_id));
         $sql = 'SELECT ' . $arrData[0]['csv_sql'] . ' ';
@@ -371,5 +387,6 @@
      * @return integer $sql_id SQL_IDを返す
      */
-    function lfUpdData($sql_id, $arrSqlVal) {
+    function lfUpdData($sql_id, $arrSqlVal)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $table = 'dtb_csv_sql';
@@ -395,5 +412,6 @@
      * @return boolean 実行結果 true：成功
      */
-    function lfDelData($sql_id) {
+    function lfDelData($sql_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $table = 'dtb_csv_sql';
@@ -414,5 +432,6 @@
      * @return array 不許可ワード配列
      */
-    function lfGetSqlDenyList() {
+    function lfGetSqlDenyList()
+    {
         $arrList = array(';'
             ,'CREATE\s'
Index: branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_RecommendSearch.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_RecommendSearch.php	(revision 22559)
+++ branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_RecommendSearch.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_RecommendSearch extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Contents_RecommendSearch extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainno = 'contents';
@@ -55,5 +57,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -65,5 +68,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -113,5 +117,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -121,5 +126,6 @@
      * @param Object $objFormParam
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('商品ID', 'search_name', LTEXT_LEN, 'KVa', array('MAX_LENGTH_CHECK'));
         $objFormParam->addParam('商品ID', 'search_category_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK','NUM_CHECK'));
@@ -134,5 +140,6 @@
      * @return Array エラー内容
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objErr = new SC_CheckError_Ex($objFormParam->getHashArray());
         $objErr->arrErr = $objFormParam->checkError();
@@ -146,5 +153,6 @@
      * @param SC_FormParam $objFormParam
      */
-    function createWhere(&$objFormParam,&$objDb) {
+    function createWhere(&$objFormParam,&$objDb)
+    {
         $arrForm = $objFormParam->getHashArray();
         $where = 'alldtl.del_flg = 0';
@@ -191,5 +199,6 @@
      * @param SC_Product $objProduct
      */
-    function getLineCount($whereAndBind,&$objProduct) {
+    function getLineCount($whereAndBind,&$objProduct)
+    {
         $where = $whereAndBind['where'];
         $bind = $whereAndBind['bind'];
@@ -206,5 +215,6 @@
      * @param SC_Product $objProduct
      */
-    function getProducts($whereAndBind,&$objProduct, $page_max, $startno) {
+    function getProducts($whereAndBind,&$objProduct, $page_max, $startno)
+    {
         $where = $whereAndBind['where'];
         $bind = $whereAndBind['bind'];
@@ -223,5 +233,6 @@
      * @param SC_Product $objProduct
      */
-    function getProductList($arrProductId, &$objProduct) {
+    function getProductList($arrProductId, &$objProduct)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
 
Index: branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents.php	(revision 22526)
+++ branches/version-2_12-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Contents extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'contents/index.tpl';
@@ -66,5 +68,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -76,5 +79,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -161,5 +165,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -170,5 +175,6 @@
      * @return Array エラー内容
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         $objErr = new SC_CheckError_Ex($objFormParam->getHashArray());
         $objErr->arrErr = $objFormParam->checkError();
@@ -181,5 +187,6 @@
      * @param Object $objFormParam
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('news_id', 'news_id');
         $objFormParam->addParam('日付(年)', 'year', INT_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -198,5 +205,6 @@
      * @param Integer $member_id 登録した管理者のID
      */
-    function lfNewsInsert($arrPost,$member_id) {
+    function lfNewsInsert($arrPost,$member_id)
+    {
         $objQuery = $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -221,5 +229,6 @@
     }
 
-    function lfNewsUpdate($arrPost,$member_id) {
+    function lfNewsUpdate($arrPost,$member_id)
+    {
         $objQuery = $objQuery =& SC_Query_Ex::getSingletonInstance();
 
@@ -243,5 +252,6 @@
      * @return string 登録日を示す文字列
      */
-    function getRegistDate($arrPost) {
+    function getRegistDate($arrPost)
+    {
         $registDate = $arrPost['year'] .'/'. $arrPost['month'] .'/'. $arrPost['day'];
         return $registDate;
@@ -253,5 +263,6 @@
      * @return int
      */
-    function checkLinkMethod($link_method) {
+    function checkLinkMethod($link_method)
+    {
         if (strlen($link_method) == 0) {
             $link_method = 1;
@@ -264,5 +275,6 @@
      * @param Integer news_id ニュースID
      */
-    function getNews($news_id = '') {
+    function getNews($news_id = '')
+    {
         $objQuery = $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = '*, cast(news_date as date) as cast_news_date';
@@ -284,5 +296,6 @@
      * @param Integer $news_id
      */
-    function getRankByNewsId($news_id) {
+    function getRankByNewsId($news_id)
+    {
         $objQuery = $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'rank';
@@ -299,5 +312,6 @@
      * @param Integer $rank
      */
-    function computeRankForDelete($news_id,$rank) {
+    function computeRankForDelete($news_id,$rank)
+    {
         SC_Helper_DB_Ex::sfDeleteRankRecord('dtb_news', 'news_id', $news_id);
     }
@@ -307,5 +321,6 @@
      * @param String $news_date
      */
-    function splitNewsDate($news_date) {
+    function splitNewsDate($news_date)
+    {
         return explode('-', $news_date);
     }
@@ -315,5 +330,6 @@
      * @return Intger $max ランクの最大値の値
      */
-    function getRankMax() {
+    function getRankMax()
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $col = 'MAX(rank) as max';
@@ -329,5 +345,6 @@
      * @param Integer $news_id
      */
-    function getPostRank($news_id) {
+    function getPostRank($news_id)
+    {
         if (strlen($news_id) > 0 && is_numeric($news_id) == true) {
             $key = 'pos-' . $news_id;
Index: branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Index.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Index.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/admin/LC_Page_Admin_Index.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Index extends LC_Page_Admin_Ex {
+class LC_Page_Admin_Index extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_mainpage = 'login.tpl';
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -63,5 +66,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -72,5 +76,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // パラメーター管理クラス
@@ -110,5 +115,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
         $objFormParam->addParam('ID', 'login_id', ID_MAX_LEN, '', array('EXIST_CHECK', 'ALNUM_CHECK' ,'MAX_LENGTH_CHECK'));
         $objFormParam->addParam('PASSWORD', 'password', ID_MAX_LEN, '', array('EXIST_CHECK', 'ALNUM_CHECK', 'MAX_LENGTH_CHECK'));
@@ -123,5 +129,6 @@
      * @return array $arrErr エラー配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 書式チェック
         $arrErr = $objFormParam->checkError();
@@ -144,5 +151,6 @@
      * @return boolean ログイン情報が有効な場合 true
      */
-    function lfIsLoginMember($login_id, $pass) {
+    function lfIsLoginMember($login_id, $pass)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         //パスワード、saltの取得
@@ -167,5 +175,6 @@
      * @return void
      */
-    function lfDoLogin($login_id) {
+    function lfDoLogin($login_id)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         //メンバー情報取得
@@ -190,5 +199,6 @@
      * @return string $sid 設定したセッションのセッションID
      */
-    function lfSetLoginSession($member_id, $login_id, $authority, $login_name, $last_login) {
+    function lfSetLoginSession($member_id, $login_id, $authority, $login_name, $last_login)
+    {
         $objSess = new SC_Session_Ex();
         // 認証済みの設定
@@ -217,5 +227,6 @@
      * @return void
      */
-    function lfSetLoginData($sid, $member_id, $login_id, $authority, $last_login) {
+    function lfSetLoginData($sid, $member_id, $login_id, $authority, $last_login)
+    {
         // ログイン記録ログ出力
         $str_log = "login: user=$login_id($member_id) auth=$authority "
@@ -240,5 +251,6 @@
      * @return void
      */
-    function lfSetIncorrectData($error_login_id) {
+    function lfSetIncorrectData($error_login_id)
+    {
         GC_Utils_Ex::gfPrintLog($error_login_id . ' password incorrect.');
     }
Index: branches/version-2_12-dev/data/class/pages/cart/LC_Page_Cart.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/cart/LC_Page_Cart.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/cart/LC_Page_Cart.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Cart extends LC_Page_Ex {
+class LC_Page_Cart extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -53,5 +54,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = '現在のカゴの中';
@@ -66,5 +68,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -77,5 +80,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objCartSess = new SC_CartSession_Ex();
@@ -191,5 +195,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -200,5 +205,6 @@
      * @return object
      */
-    function lfInitParam($arrRequest) {
+    function lfInitParam($arrRequest)
+    {
         $objFormParam = new SC_FormParam_Ex();
         $objFormParam->addParam('カートキー', 'cartKey', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK'));
@@ -220,5 +226,6 @@
      * @return
      */
-    function lfUpdateOrderTempid($pre_uniqid,$uniqid) {
+    function lfUpdateOrderTempid($pre_uniqid,$uniqid)
+    {
         $sqlval['order_temp_id'] = $uniqid;
         $where = 'order_temp_id = ?';
@@ -236,5 +243,6 @@
      * @return void
      */
-    function lfGetCartPrevUrl(&$session,$referer) {
+    function lfGetCartPrevUrl(&$session,$referer)
+    {
         if (!preg_match('/cart/', $referer)) {
             if (!empty($session['cart_referer_url'])) {
@@ -260,5 +268,6 @@
      * @return void
      */
-    function lfSetCurrentCart(&$objSiteSess, &$objCartSess, $cartKey) {
+    function lfSetCurrentCart(&$objSiteSess, &$objCartSess, $cartKey)
+    {
         // 正常に登録されたことを記録しておく
         $objSiteSess->setRegistFlag();
Index: branches/version-2_12-dev/data/class/pages/error/LC_Page_Error_SystemError.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/error/LC_Page_Error_SystemError.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/error/LC_Page_Error_SystemError.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Error_SystemError extends LC_Page_Error {
+class LC_Page_Error_SystemError extends LC_Page_Error 
+{
 
     /** PEAR_Error */
@@ -52,5 +53,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = 'システムエラー';
@@ -62,5 +64,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -72,5 +75,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->tpl_error = 'システムエラーが発生しました。<br />大変お手数ですが、サイト管理者までご連絡ください。';
@@ -94,5 +98,6 @@
      * @return void
      */
-    function sendResponse() {
+    function sendResponse()
+    {
         $this->adminPage = GC_Utils_Ex::isAdminFunction();
 
@@ -113,5 +118,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -120,5 +126,6 @@
      * トランザクショントークンに関して処理しないようにオーバーライド
      */
-    function doValidToken() {
+    function doValidToken()
+    {
     }
 
@@ -126,5 +133,6 @@
      * トランザクショントークンに関して処理しないようにオーバーライド
      */
-    function setTokenTo() {
+    function setTokenTo()
+    {
     }
 
@@ -134,5 +142,6 @@
      * @return string
      */
-    function sfGetErrMsg() {
+    function sfGetErrMsg()
+    {
         $errmsg = '';
         $errmsg .= $this->lfGetErrMsgHead();
@@ -166,5 +175,6 @@
      * @return string
      */
-    function lfGetErrMsgHead() {
+    function lfGetErrMsgHead()
+    {
         $errmsg = '';
         $errmsg .= GC_Utils_Ex::getUrl() . "\n";
@@ -182,5 +192,6 @@
      * @return void
      */
-    function addDebugMsg($debugMsg) {
+    function addDebugMsg($debugMsg)
+    {
         $this->arrDebugMsg[] = rtrim($debugMsg, "\n");
     }
Index: branches/version-2_12-dev/data/class/pages/error/LC_Page_Error.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/error/LC_Page_Error.php	(revision 22487)
+++ branches/version-2_12-dev/data/class/pages/error/LC_Page_Error.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_Error.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Error extends LC_Page_Ex {
+class LC_Page_Error extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -61,5 +62,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         $this->tpl_mainpage = 'error.tpl';
         $this->tpl_title = 'エラー';
@@ -80,5 +82,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -91,5 +94,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         switch ($this->type) {
@@ -177,5 +181,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -184,5 +189,6 @@
      * エラーページではトランザクショントークンの自動検証は行わない
      */
-    function doValidToken() {
+    function doValidToken()
+    {
         // queit.
     }
Index: branches/version-2_12-dev/data/class/pages/error/LC_Page_Error_DispError.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/error/LC_Page_Error_DispError.php	(revision 22487)
+++ branches/version-2_12-dev/data/class/pages/error/LC_Page_Error_DispError.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Error_DispError extends LC_Page_Admin_Ex {
+class LC_Page_Error_DispError extends LC_Page_Admin_Ex 
+{
 
     // }}}
@@ -45,5 +46,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         $this->template = LOGIN_FRAME;
         $this->tpl_mainpage = 'login_error.tpl';
@@ -65,5 +67,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         $this->action();
         $this->sendResponse();
@@ -75,5 +78,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         switch ($this->type) {
@@ -103,5 +107,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -110,5 +115,6 @@
      * エラーページではトランザクショントークンの自動検証は行わない
      */
-    function doValidToken() {
+    function doValidToken()
+    {
         // queit.
     }
Index: branches/version-2_12-dev/data/class/pages/contact/LC_Page_Contact_Complete.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/contact/LC_Page_Contact_Complete.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/contact/LC_Page_Contact_Complete.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Contact_Complete extends LC_Page_Ex {
+class LC_Page_Contact_Complete extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = 'お問い合わせ(完了ページ)';
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         // do nothing...
@@ -76,5 +80,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/contact/LC_Page_Contact.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/contact/LC_Page_Contact.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/contact/LC_Page_Contact.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Contact extends LC_Page_Ex {
+class LC_Page_Contact extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) {
@@ -66,5 +68,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -77,5 +80,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $objDb = new SC_Helper_DB_Ex();
@@ -140,5 +144,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -153,5 +158,6 @@
      * @return void
      */
-    function lfInitParam(&$objFormParam) {
+    function lfInitParam(&$objFormParam)
+    {
 
         $objFormParam->addParam('お名前(姓)', 'name01', STEXT_LEN, 'KVa', array('EXIST_CHECK','SPTAB_CHECK','MAX_LENGTH_CHECK'));
@@ -178,5 +184,6 @@
      * @return array 入力チェック結果の配列
      */
-    function lfCheckError(&$objFormParam) {
+    function lfCheckError(&$objFormParam)
+    {
         // 入力データを渡す。
         $arrForm =  $objFormParam->getHashArray();
@@ -192,5 +199,6 @@
      * @return void
      */
-    function lfSendMail(&$objPage) {
+    function lfSendMail(&$objPage)
+    {
         $CONF = SC_Helper_DB_Ex::sfGetBasisData();
         $objPage->tpl_shopname = $CONF['shop_name'];
Index: branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Kiyaku.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Kiyaku.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Kiyaku.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Kiyaku extends LC_Page_Ex {
+class LC_Page_Guide_Kiyaku extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->lfGetKiyaku(intval($_GET['page']), $this);
@@ -74,5 +78,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -85,5 +90,6 @@
      * @return void
      */
-    function lfGetKiyaku($index, &$objPage) {
+    function lfGetKiyaku($index, &$objPage)
+    {
         $objQuery =& SC_Query_Ex::getSingletonInstance();
         $objQuery->setOrder('rank DESC');
Index: branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Privacy.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Privacy.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Privacy.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Privacy extends LC_Page_Ex {
+class LC_Page_Guide_Privacy extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -72,5 +76,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Guide extends LC_Page_Ex {
+class LC_Page_Guide extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -72,5 +76,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Usage.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Usage.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Usage.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Usage extends LC_Page_Ex {
+class LC_Page_Guide_Usage extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -72,5 +76,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Charge.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Charge.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Charge.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Charge extends LC_Page_Ex {
+class LC_Page_Guide_Charge extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -51,5 +53,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -62,5 +65,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -72,5 +76,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_About.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_About.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_About.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_About extends LC_Page_Ex {
+class LC_Page_Guide_About extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     $masterData = new SC_DB_MasterData_Ex();
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -74,5 +78,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/abouts/LC_Page_Abouts.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/abouts/LC_Page_Abouts.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/abouts/LC_Page_Abouts.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_Abouts.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Abouts extends LC_Page_Ex {
+class LC_Page_Abouts extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_page_category = 'abouts';
@@ -55,5 +57,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -66,5 +69,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         $this->objSiteInfo->data = SC_Helper_DB_Ex::sfGetBasisData();
@@ -81,5 +85,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id$
  */
-class LC_Page_Regist extends LC_Page_Ex {
+class LC_Page_Regist extends LC_Page_Ex 
+{
 
     // {{{ properties
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -64,5 +67,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
         switch ($this->getMode()) {
@@ -92,5 +96,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
@@ -103,5 +108,6 @@
      * @return string $arrRegist['secret_key'] 本登録ID
      */
-    function lfRegistData($array) {
+    function lfRegistData($array)
+    {
         $objQuery                   = SC_Query_Ex::getSingletonInstance();
         $arrRegist['secret_key']    = SC_Helper_Customer_Ex::sfGetUniqSecretKey(); //本登録ID発行
@@ -123,5 +129,6 @@
      * @return array エラーの配列
      */
-    function lfCheckError($array) {
+    function lfCheckError($array)
+    {
         $objErr     = new SC_CheckError_Ex($array);
 
@@ -145,5 +152,6 @@
      * @return void
      */
-    function lfSendRegistMail($registSecretKey) {
+    function lfSendRegistMail($registSecretKey)
+    {
         $objQuery       = SC_Query_Ex::getSingletonInstance();
         $objCustomer    = new SC_Customer_Ex();
Index: branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist_Complete.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist_Complete.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist_Complete.php	(revision 22567)
@@ -32,5 +32,6 @@
  * @version $Id:LC_Page_Regist_Complete.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Regist_Complete extends LC_Page_Ex {
+class LC_Page_Regist_Complete extends LC_Page_Ex 
+{
 
     // }}}
@@ -42,5 +43,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
         $this->tpl_title = '会員登録(完了ページ)';
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
         $this->action();
@@ -63,5 +66,6 @@
      * @return void
      */
-    function action() {
+    function action()
+    {
 
 
@@ -73,5 +77,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class/graph/SC_Graph_Bar.php
===================================================================
--- branches/version-2_12-dev/data/class/graph/SC_Graph_Bar.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/graph/SC_Graph_Bar.php	(revision 22567)
@@ -23,5 +23,6 @@
 
 // 棒グラフ生成クラス
-class SC_Graph_Bar extends SC_Graph_Line_Ex{
+class SC_Graph_Bar extends SC_Graph_Line_Ex
+{
     // コンストラクタ
     function __construct(
@@ -32,5 +33,6 @@
 
     // グラフの描画
-    function drawGraph() {
+    function drawGraph()
+    {
         $this->drawYLine();
         $this->drawXLine(true);
@@ -51,5 +53,6 @@
 
     // 棒グラフの描画
-    function drawBar($line_no) {
+    function drawBar($line_no)
+    {
         $arrPointList = $this->arrPointList[$line_no];
         // データ数を数える
@@ -80,5 +83,6 @@
 
     // ラベルを描画する
-    function drawLabel($line_no) {
+    function drawLabel($line_no)
+    {
         $arrData = $this->arrDataList[$line_no];
         $arrPointList = $this->arrPointList[$line_no];
Index: branches/version-2_12-dev/data/class/graph/SC_Graph_Line.php
===================================================================
--- branches/version-2_12-dev/data/class/graph/SC_Graph_Line.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/graph/SC_Graph_Line.php	(revision 22567)
@@ -23,5 +23,6 @@
 
 // 折れ線グラフ生成クラス
-class SC_Graph_Line extends SC_Graph_Base_Ex{
+class SC_Graph_Line extends SC_Graph_Base_Ex
+{
     var $area_width;
     var $area_height;
@@ -55,10 +56,12 @@
 
     // X軸ラベルの角度セット
-    function setXLabelAngle($Angle) {
+    function setXLabelAngle($Angle)
+    {
         $this->XLabelAngle = $Angle;
     }
 
     // Y軸タイトル
-    function drawYTitle() {
+    function drawYTitle()
+    {
         // Y軸にタイトルを入れる
         if ($this->YTitle != '') {
@@ -71,5 +74,6 @@
 
     // X軸タイトル
-    function drawXTitle() {
+    function drawXTitle()
+    {
         // Y軸にタイトルを入れる
         if ($this->XTitle != '') {
@@ -82,5 +86,6 @@
 
     // Y軸の描画
-    function drawYLine() {
+    function drawYLine()
+    {
         imageline($this->image, $this->left, $this->top, $this->left, $this->top + $this->area_height, $this->flame_color);
         // 目盛り幅を求める(中間点は自動)
@@ -107,5 +112,6 @@
 
     // X軸の描画
-    function drawXLine($bar = false) {
+    function drawXLine($bar = false)
+    {
         imageline($this->image, $this->left, $this->top + $this->area_height, $this->left + $this->area_width, $this->top + $this->area_height, $this->flame_color);
         $arrPointList = $this->arrPointList[0];
@@ -150,10 +156,12 @@
 
     // グリッド表示
-    function setYGridOn($ygrid_on) {
+    function setYGridOn($ygrid_on)
+    {
         $this->ygrid_on = $ygrid_on;
     }
 
     // ポイントの描画
-    function setMark($line_no, $left, $top, $size = LINE_MARK_SIZE) {
+    function setMark($line_no, $left, $top, $size = LINE_MARK_SIZE)
+    {
         // 偶数に変換しておく
         $size += $size % 2;
@@ -170,5 +178,6 @@
 
     // Y軸目盛りに値を入れる
-    function setYScale() {
+    function setYScale()
+    {
         // 1目盛りの値
         $number = intval($this->graph_max / LINE_Y_SCALE);
@@ -186,5 +195,6 @@
 
     //
-    function setMax($arrData) {
+    function setMax($arrData)
+    {
         // データの最大値を取得する。
         $data_max = max($arrData);
@@ -202,5 +212,6 @@
 
     // グラフの描画
-    function drawGraph() {
+    function drawGraph()
+    {
         // グラフ背景を描画
         $this->drawYLine();
@@ -227,5 +238,6 @@
 
     // ラインを描画する
-    function drawLine($line_no) {
+    function drawLine($line_no)
+    {
         $arrPointList = $this->arrPointList[$line_no];
 
@@ -243,5 +255,6 @@
 
     // マークを描画する
-    function drawMark($line_no) {
+    function drawMark($line_no)
+    {
         $arrPointList = $this->arrPointList[$line_no];
         $count = count($arrPointList);
@@ -254,5 +267,6 @@
 
     // ラベルを描画する
-    function drawLabel($line_no) {
+    function drawLabel($line_no)
+    {
         $arrData = $this->arrDataList[$line_no];
         $arrPointList = $this->arrPointList[$line_no];
@@ -269,5 +283,6 @@
 
     // データをセットする
-    function setData($arrData) {
+    function setData($arrData)
+    {
         $this->arrDataList[$this->line_max] = array_values((array)$arrData);
         $this->setMax($this->arrDataList[$this->line_max]);
@@ -290,15 +305,18 @@
 
     // X軸ラベルをセットする
-    function setXLabel($arrXLabel) {
+    function setXLabel($arrXLabel)
+    {
         $this->arrXLabel = array_values((array)$arrXLabel);
     }
 
     // X軸タイトルをセットする
-    function setXTitle($title) {
+    function setXTitle($title)
+    {
         $this->XTitle = $title;
     }
 
     // Y軸タイトルをセットする
-    function setYTitle($title) {
+    function setYTitle($title)
+    {
         $this->YTitle = $title;
     }
Index: branches/version-2_12-dev/data/class/graph/SC_Graph_Base.php
===================================================================
--- branches/version-2_12-dev/data/class/graph/SC_Graph_Base.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/graph/SC_Graph_Base.php	(revision 22567)
@@ -131,5 +131,6 @@
  * @version $Id$
  */
-class SC_Graph_Base {
+class SC_Graph_Base 
+{
 
     // {{{ properties
@@ -182,5 +183,6 @@
 
     // コンストラクタ
-    function __construct($bgw, $bgh, $left, $top) {
+    function __construct($bgw, $bgh, $left, $top)
+    {
         $this->init();
         // 画像作成
@@ -211,5 +213,6 @@
 
     // リサンプル(画像を滑らかに縮小する)
-    function resampled() {
+    function resampled()
+    {
         $new_width = $this->bgw * 0.8;
         $new_height = $this->bgh * 0.8;
@@ -221,5 +224,6 @@
 
     // オブジェクトカラーの設定
-    function setColorList($arrRGB) {
+    function setColorList($arrRGB)
+    {
         $this->arrRGB = $arrRGB;
         $count = count($this->arrRGB);
@@ -235,10 +239,12 @@
 
     // 影のありなし
-    function setShadeOn($shade_on) {
+    function setShadeOn($shade_on)
+    {
         $this->shade_on = $shade_on;
     }
 
     // 画像を出力する
-    function outputGraph($header = true, $filename = '') {
+    function outputGraph($header = true, $filename = '')
+    {
         if ($header) {
             header('Content-type: image/png');
@@ -255,5 +261,6 @@
 
     // 描画時のテキスト幅を求める
-    function getTextWidth($text, $font_size) {
+    function getTextWidth($text, $font_size)
+    {
         $text_len = strlen($text);
         $ret = $font_size * $text_len * TEXT_RATE;
@@ -268,5 +275,6 @@
 
     // テキストを出力する
-    function setText($font_size, $left, $top, $text, $color = NULL, $angle = 0, $labelbg = false) {
+    function setText($font_size, $left, $top, $text, $color = NULL, $angle = 0, $labelbg = false)
+    {
         // 時計回りに角度を変更
         $angle = -$angle;
@@ -300,5 +308,6 @@
 
     // タイトルを出力する
-    function drawTitle($text, $font_size = TITLE_FONT_SIZE) {
+    function drawTitle($text, $font_size = TITLE_FONT_SIZE)
+    {
         // 出力位置の算出
         $text_width = $this->getTextWidth($text, $font_size);
@@ -309,5 +318,6 @@
 
     // ログを出力する
-    function debugPrint($text) {
+    function debugPrint($text)
+    {
         $text = mb_convert_encoding($text, 'UTF-8', CHAR_CODE);
         if (!isset($this->text_top)) {
@@ -320,5 +330,6 @@
 
     // カラーラベルを描画
-    function drawLegend($legend_max = '', $clabelbg = true) {
+    function drawLegend($legend_max = '', $clabelbg = true)
+    {
         // 凡例が登録されていなければ中止
         if (count($this->arrLegend) <= 0) {
@@ -369,5 +380,6 @@
 
     // カラーラベル背景の描画
-    function drawClabelBG($left, $top, $right, $bottom) {
+    function drawClabelBG($left, $top, $right, $bottom)
+    {
         // 影の描画
         if ($this->shade_on) {
@@ -380,5 +392,6 @@
 
     // 凡例をセットする
-    function setLegend($arrLegend) {
+    function setLegend($arrLegend)
+    {
         $this->arrLegend = array_values((array)$arrLegend);
     }
@@ -395,5 +408,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         // 凡例背景
         $this->ARR_LEGENDBG_COLOR = array(245,245,245);
@@ -437,5 +451,6 @@
      * @return array 円の中心点と直径から弧の終端座標の配列
      */
-    function lfGetArcPos($cx, $cy, $cw, $ch, $e) {
+    function lfGetArcPos($cx, $cy, $cw, $ch, $e)
+    {
         // 三角関数用の角度を求める
         $s = 90 - $e;
@@ -448,5 +463,6 @@
 
     /** 画像にテキストを描画する */
-    function lfImageText($dst_image, $text, $font_size, $left, $top, $font, $arrRGB) {
+    function lfImageText($dst_image, $text, $font_size, $left, $top, $font, $arrRGB)
+    {
         $color = ImageColorAllocate($dst_image, $arrRGB[0], $arrRGB[1], $arrRGB[2]);
         $text = mb_convert_encoding($text, 'UTF-8', CHAR_CODE);
@@ -458,5 +474,6 @@
 
     /** 表示色の取得 */
-    function lfGetImageColor($image, $array) {
+    function lfGetImageColor($image, $array)
+    {
         if (count($array) != 3) {
             return NULL;
@@ -467,5 +484,6 @@
 
     /** 影用表示色の取得 */
-    function lfGetImageDarkColor($image, $array) {
+    function lfGetImageDarkColor($image, $array)
+    {
         if (count($array) != 3) {
             return NULL;
Index: branches/version-2_12-dev/data/class/graph/SC_Graph_Pie.php
===================================================================
--- branches/version-2_12-dev/data/class/graph/SC_Graph_Pie.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/graph/SC_Graph_Pie.php	(revision 22567)
@@ -23,5 +23,6 @@
 
 // 円グラフ生成クラス
-class SC_Graph_Pie extends SC_Graph_Base_Ex{
+class SC_Graph_Pie extends SC_Graph_Base_Ex
+{
     var $cw;
     var $ch;
@@ -33,5 +34,6 @@
 
     // コンストラクタ
-    function __construct($bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = PIE_LEFT, $top = PIE_TOP) {
+    function __construct($bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = PIE_LEFT, $top = PIE_TOP)
+    {
         parent::__construct($bgw, $bgh, $left, $top);
         // サイズ設定
@@ -42,5 +44,6 @@
 
     // データを360°値に変換する
-    function getCircleData($array) {
+    function getCircleData($array)
+    {
         $total = '';
         $new_total = '';
@@ -73,5 +76,6 @@
 
     // 円の位置設定を行う
-    function setPosition($cx, $cy) {
+    function setPosition($cx, $cy)
+    {
         $this->cx = $cx;
         $this->cy = $cy;
@@ -79,5 +83,6 @@
 
     // 円のサイズ設定を行う
-    function setSize($cw, $ch, $cz = 0) {
+    function setSize($cw, $ch, $cz = 0)
+    {
         $this->cw = $cw;
         $this->ch = $ch;
@@ -86,5 +91,6 @@
 
     // 影の描画
-    function drawShade() {
+    function drawShade()
+    {
         $move = 1;
         for ($i = ($this->cy + $this->cz); $i <= ($this->cy + $this->cz + ($this->cz * PIE_SHADE_IMPACT)); $i++) {
@@ -95,10 +101,12 @@
 
     // データをセットする
-    function setData($arrData) {
+    function setData($arrData)
+    {
         $this->arrData = array_values($arrData);
     }
 
     // 円グラフを描画する
-    function drawGraph() {
+    function drawGraph()
+    {
         $x = $this->cx;
         $y = $this->cy;
@@ -198,5 +206,6 @@
 
     // 円グラフのラベルを描画する
-    function drawLabel($arrRad) {
+    function drawLabel($arrRad)
+    {
         $rd_max = count($arrRad);
         $start = 0;
Index: branches/version-2_12-dev/data/class/SC_Initial.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Initial.php	(revision 22206)
+++ branches/version-2_12-dev/data/class/SC_Initial.php	(revision 22567)
@@ -28,5 +28,6 @@
  * @version $Id$
  */
-class SC_Initial {
+class SC_Initial 
+{
 
     // {{{ cunstructor
@@ -35,5 +36,6 @@
      * コンストラクタ.
      */
-    function __construct() {
+    function __construct()
+    {
 
         /** EC-CUBEのバージョン */
@@ -50,5 +52,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         $this->requireInitialConfig();
         $this->defineDSN();                 // requireInitialConfig メソッドより後で実行
@@ -70,5 +73,6 @@
      * @return void
      */
-    function requireInitialConfig() {
+    function requireInitialConfig()
+    {
 
         define('CONFIG_REALFILE', realpath(dirname(__FILE__)) . '/../config/config.php');
@@ -85,5 +89,6 @@
      * @deprecated 下位互換用
      */
-    function defineDSN() {
+    function defineDSN()
+    {
         if (defined('DB_TYPE') && defined('DB_USER') && defined('DB_PASSWORD')
             && defined('DB_SERVER') && defined('DB_PORT') && defined('DB_NAME')
@@ -99,5 +104,6 @@
      * @deprecated
      */
-    function setErrorReporting() {
+    function setErrorReporting()
+    {
         error_reporting(E_ALL & ~E_NOTICE);
         // PHP 5.3.0対応
@@ -115,5 +121,6 @@
      * @return void
      */
-    function phpconfigInit() {
+    function phpconfigInit()
+    {
         ini_set('html_errors', '1');
         ini_set('mbstring.http_input', CHAR_CODE);
@@ -150,5 +157,6 @@
      * @return void
      */
-    function defineDirectoryIndex() {
+    function defineDirectoryIndex()
+    {
 
         // DirectoryIndex の実ファイル名
@@ -181,5 +189,6 @@
      * @return void
      */
-    function defineParameter() {
+    function defineParameter()
+    {
 
         $errorMessage
@@ -224,5 +233,6 @@
      * @return void
      */
-    function complementParameter() {
+    function complementParameter()
+    {
     }
 
@@ -235,5 +245,6 @@
      * @return void
      */
-    function createCacheDir() {
+    function createCacheDir()
+    {
         if (defined('HTML_REALDIR')) {
             umask(0);
@@ -262,5 +273,6 @@
      * @return void
      */
-    function defineConstants() {
+    function defineConstants()
+    {
         // LC_Page_Error用
         /** 指定商品ページがない */
@@ -429,5 +441,6 @@
      * @return void
      */
-    function stripslashesDeepGpc() {
+    function stripslashesDeepGpc()
+    {
         // Strip magic quotes from request data.
         if (get_magic_quotes_gpc()
@@ -459,5 +472,6 @@
      * @return void
      */
-    function resetSuperglobalsRequest() {
+    function resetSuperglobalsRequest()
+    {
         $_REQUEST = array_merge($_GET, $_POST);
     }
@@ -470,5 +484,6 @@
      * @return void
      */
-    function defineIfNotDefined($name, $value = null) {
+    function defineIfNotDefined($name, $value = null)
+    {
         if (!defined($name)) {
             define($name, $value);
@@ -481,5 +496,6 @@
      * @return void
      */
-    function setTimezone() {
+    function setTimezone()
+    {
         date_default_timezone_set('Asia/Tokyo');
     }
Index: branches/version-2_12-dev/data/smarty_extends/block.marquee.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/block.marquee.php	(revision 21420)
+++ branches/version-2_12-dev/data/smarty_extends/block.marquee.php	(revision 22567)
@@ -8,5 +8,6 @@
  * @return string 出力
  */
-function smarty_block_marquee($params, $content, &$smarty, &$repeat) {
+function smarty_block_marquee($params, $content, &$smarty, &$repeat)
+{
     // {/marquee}の場合のみ出力する。
     if ($repeat || !isset($content)) {
Index: branches/version-2_12-dev/data/smarty_extends/function.from_to.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/function.from_to.php	(revision 21526)
+++ branches/version-2_12-dev/data/smarty_extends/function.from_to.php	(revision 22567)
@@ -31,5 +31,6 @@
  * @uses smarty_function_escape_special_chars()
  */
-function smarty_function_from_to($params, &$smarty) {
+function smarty_function_from_to($params, &$smarty)
+{
     require_once $smarty->_get_plugin_filepath('shared', 'escape_special_chars');
 
Index: branches/version-2_12-dev/data/smarty_extends/modifier.nl2br_html.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/modifier.nl2br_html.php	(revision 21420)
+++ branches/version-2_12-dev/data/smarty_extends/modifier.nl2br_html.php	(revision 22567)
@@ -19,5 +19,6 @@
  * @return string
  */
-function smarty_modifier_nl2br_html($string) {
+function smarty_modifier_nl2br_html($string)
+{
     $lines = preg_split('/(\\r\\n|\\r|\\n)/', $string);
     $keys = array_keys($lines);
Index: branches/version-2_12-dev/data/smarty_extends/modifier.script_escape.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/modifier.script_escape.php	(revision 21514)
+++ branches/version-2_12-dev/data/smarty_extends/modifier.script_escape.php	(revision 22567)
@@ -6,5 +6,6 @@
  * @return string $value マッチした場合は変換後の文字列、しない場合は入力された文字列をそのまま返す。
  */
-function smarty_modifier_script_escape($value) {
+function smarty_modifier_script_escape($value)
+{
 
     if (is_array($value)) return $value;
Index: branches/version-2_12-dev/data/smarty_extends/modifier.u.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/modifier.u.php	(revision 20116)
+++ branches/version-2_12-dev/data/smarty_extends/modifier.u.php	(revision 22567)
@@ -19,5 +19,6 @@
  * @return string
  */
-function smarty_modifier_u($string) {
+function smarty_modifier_u($string)
+{
     return htmlspecialchars(rawurlencode($string), ENT_QUOTES);
 }
Index: branches/version-2_12-dev/data/smarty_extends/function.html_checkboxes_ex.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/function.html_checkboxes_ex.php	(revision 21479)
+++ branches/version-2_12-dev/data/smarty_extends/function.html_checkboxes_ex.php	(revision 22567)
@@ -39,5 +39,6 @@
  * @uses smarty_function_escape_special_chars()
  */
-function smarty_function_html_checkboxes_ex($params, &$smarty) {
+function smarty_function_html_checkboxes_ex($params, &$smarty)
+{
     require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
 
@@ -127,5 +128,6 @@
 }
 
-function smarty_function_html_checkboxes_output_ex($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids, $tags) {
+function smarty_function_html_checkboxes_output_ex($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids, $tags)
+{
     $_output = '';
 
Index: branches/version-2_12-dev/data/smarty_extends/modifier.numeric_emoji.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/modifier.numeric_emoji.php	(revision 21420)
+++ branches/version-2_12-dev/data/smarty_extends/modifier.numeric_emoji.php	(revision 22567)
@@ -9,5 +9,6 @@
  * @return string 出力
  */
-function smarty_modifier_numeric_emoji($value) {
+function smarty_modifier_numeric_emoji($value)
+{
     // 数字絵文字 (0～9) の絵文字番号
     static $numeric_emoji_index = array('134', '125', '126', '127', '128', '129', '130', '131', '132', '133');
Index: branches/version-2_12-dev/data/smarty_extends/modifier.h.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/modifier.h.php	(revision 20116)
+++ branches/version-2_12-dev/data/smarty_extends/modifier.h.php	(revision 22567)
@@ -19,5 +19,6 @@
  * @return string
  */
-function smarty_modifier_h($string) {
+function smarty_modifier_h($string)
+{
     return htmlspecialchars($string, ENT_QUOTES);
 }
Index: branches/version-2_12-dev/data/smarty_extends/function.html_radios_ex.php
===================================================================
--- branches/version-2_12-dev/data/smarty_extends/function.html_radios_ex.php	(revision 21527)
+++ branches/version-2_12-dev/data/smarty_extends/function.html_radios_ex.php	(revision 22567)
@@ -39,5 +39,6 @@
  * @uses smarty_function_escape_special_chars()
  */
-function smarty_function_html_radios_ex($params, &$smarty) {
+function smarty_function_html_radios_ex($params, &$smarty)
+{
     require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
 
@@ -129,5 +130,6 @@
 }
 
-function smarty_function_html_radios_output_ex($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids, $tags) {
+function smarty_function_html_radios_output_ex($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids, $tags)
+{
     $_output = '';
 
Index: branches/version-2_12-dev/data/include/image_converter.inc
===================================================================
--- branches/version-2_12-dev/data/include/image_converter.inc	(revision 21441)
+++ branches/version-2_12-dev/data/include/image_converter.inc	(revision 22567)
@@ -3,5 +3,6 @@
  * 画像ファイルの変換を行う
  */
-class ImageConverter {
+class ImageConverter 
+{
     var $outputImageDir;         // 変換後の画像の保存先
     var $outputImageType;        // 変換後の画像の形式
@@ -11,5 +12,6 @@
 
     // コンストラクタ
-    function ImageConverter() {
+    function ImageConverter()
+    {
         $this->outputImageDir    = realpath(realpath(dirname(__FILE__)));
         $this->outputImageType   = 'jpg';
@@ -20,5 +22,6 @@
 
     // 変換実行
-    function execute($inputImagePath) {
+    function execute($inputImagePath)
+    {
         // 前処理
         $filestat         = @stat($inputImagePath);
@@ -161,20 +164,48 @@
 
     // Setter
-    function setOutputDir($outputDir)   { $this->outputImageDir   = $outputDir;  }
-    function setImageType($imageType)   { $this->outputImageType  = $imageType;  }
-    function setImageWidth($imageWidth) { $this->outputImageWidth = $imageWidth; }
-    function setImageHeight($imageHeight) { $this->outputImageHeight = $imageHeight; }
-    function setFileSize($fileSize)     { $this->outputFileSize   = $fileSize;   }
+    function setOutputDir($outputDir)
+    {
+        $this->outputImageDir   = $outputDir;
+    }
+    function setImageType($imageType)
+    {
+        $this->outputImageType  = $imageType;
+    }
+    function setImageWidth($imageWidth)
+    {
+        $this->outputImageWidth = $imageWidth;
+    }
+    function setImageHeight($imageHeight)
+    {
+        $this->outputImageHeight = $imageHeight;
+    }
+    function setFileSize($fileSize)
+    {
+        $this->outputFileSize   = $fileSize;
+    }
 
     // Getter
-    function getOutputDir()   { return $this->outputDir;         }
-    function getImageType()   { return $this->outputImageType;   }
-    function getImageWidth()  { return $this->outputImageWidth;  }
-    function getImageHeight() { return $this->outputImageHeight; }
+    function getOutputDir()
+    {
+        return $this->outputDir;
+    }
+    function getImageType()
+    {
+        return $this->outputImageType;
+    }
+    function getImageWidth()
+    {
+        return $this->outputImageWidth;
+    }
+    function getImageHeight()
+    {
+        return $this->outputImageHeight;
+    }
 
     /*
      * PrivateMethod
      */
-    function beforeExecute() {
+    function beforeExecute()
+    {
     }
 
@@ -186,5 +217,6 @@
      * @return array 色情報
      */
-    function getTransparentColor($image) {
+    function getTransparentColor($image)
+    {
         $max_x = imagesx($image) - 1;
         $max_y = imagesy($image) - 1;
Index: branches/version-2_12-dev/data/class_extends/SC_SendMail_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_SendMail_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_SendMail_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_SendMail_Ex extends SC_SendMail {
+class SC_SendMail_Ex extends SC_SendMail 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_CartSession_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_CartSession_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_CartSession_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_CartSession.php';
 
-class SC_CartSession_Ex extends SC_CartSession {
+class SC_CartSession_Ex extends SC_CartSession 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_CustomerList_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_CustomerList_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_CustomerList_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_CustomerList.php';
 
-class SC_CustomerList_Ex extends SC_CustomerList {
+class SC_CustomerList_Ex extends SC_CustomerList 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_SmartphoneUserAgent_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_SmartphoneUserAgent_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_SmartphoneUserAgent_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_SmartphoneUserAgent.php';
 
-class SC_SmartphoneUserAgent_Ex extends SC_SmartphoneUserAgent {
+class SC_SmartphoneUserAgent_Ex extends SC_SmartphoneUserAgent 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Response_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Response_Ex.php	(revision 20541)
+++ branches/version-2_12-dev/data/class_extends/SC_Response_Ex.php	(revision 22567)
@@ -3,4 +3,5 @@
 require_once CLASS_REALDIR . 'SC_Response.php';
 
-class SC_Response_Ex extends SC_Response{
+class SC_Response_Ex extends SC_Response
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_SelectSql_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_SelectSql_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_SelectSql_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_SelectSql.php';
 
-class SC_SelectSql_Ex extends SC_SelectSql {
+class SC_SelectSql_Ex extends SC_SelectSql 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Customer_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Customer_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Customer_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Customer.php';
 
-class SC_Customer_Ex extends SC_Customer {
+class SC_Customer_Ex extends SC_Customer 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_MobileView_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_MobileView_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_MobileView_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_MobileView.php';
 
-class SC_MobileView_Ex extends SC_MobileView {
+class SC_MobileView_Ex extends SC_MobileView 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_DB_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_DB_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_DB_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_Helper_DB_Ex extends SC_Helper_DB {
+class SC_Helper_DB_Ex extends SC_Helper_DB 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_CSV_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_CSV_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_CSV_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id:SC_Helper_DB_Ex.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_Helper_CSV_Ex extends SC_Helper_CSV {
+class SC_Helper_CSV_Ex extends SC_Helper_CSV 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Plugin_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Plugin_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Plugin_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_Helper_Plugin_Ex extends SC_Helper_Plugin {
+class SC_Helper_Plugin_Ex extends SC_Helper_Plugin 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Customer_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Customer_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Customer_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id:SC_Helper_DB_Ex.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_Helper_Customer_Ex extends SC_Helper_Customer {
+class SC_Helper_Customer_Ex extends SC_Helper_Customer 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_HandleError_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_HandleError_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_HandleError_Ex.php	(revision 22567)
@@ -30,4 +30,5 @@
  * @version $Id$
  */
-class SC_Helper_HandleError_Ex extends SC_Helper_HandleError {
+class SC_Helper_HandleError_Ex extends SC_Helper_HandleError 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Mobile_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Mobile_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Mobile_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_Helper_Mobile_Ex extends SC_Helper_Mobile {
+class SC_Helper_Mobile_Ex extends SC_Helper_Mobile 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_FileManager_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_FileManager_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_FileManager_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id:SC_Helper_DB_Ex.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_Helper_FileManager_Ex extends SC_Helper_FileManager {
+class SC_Helper_FileManager_Ex extends SC_Helper_FileManager 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_PageLayout_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_PageLayout_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_PageLayout_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_Helper_PageLayout_Ex extends SC_Helper_PageLayout {
+class SC_Helper_PageLayout_Ex extends SC_Helper_PageLayout 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Purchase_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Purchase_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Purchase_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_Helper_Purchase_Ex extends SC_Helper_Purchase {
+class SC_Helper_Purchase_Ex extends SC_Helper_Purchase 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Transform_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Transform_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Transform_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_Helper_Transform_Ex extends SC_Helper_Transform {
+class SC_Helper_Transform_Ex extends SC_Helper_Transform 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_FPDI_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_FPDI_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_FPDI_Ex.php	(revision 22567)
@@ -31,4 +31,5 @@
  * @version $Id:$
  */
-class SC_Helper_FPDI_Ex extends SC_Helper_FPDI {
+class SC_Helper_FPDI_Ex extends SC_Helper_FPDI 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Mail_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Mail_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Mail_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id:SC_Helper_DB_Ex.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class SC_Helper_Mail_Ex extends SC_Helper_Mail {
+class SC_Helper_Mail_Ex extends SC_Helper_Mail 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Session_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Session_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/helper_extends/SC_Helper_Session_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id:SC_Helper_Session_Ex.php 16741 2007-11-08 00:43:24Z adachi $
  */
-class SC_Helper_Session_Ex extends SC_Helper_Session {
+class SC_Helper_Session_Ex extends SC_Helper_Session 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Query_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Query_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Query_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Query.php';
 
-class SC_Query_Ex extends SC_Query {
+class SC_Query_Ex extends SC_Query 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_SiteSession_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_SiteSession_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_SiteSession_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_SiteSession.php';
 
-class SC_SiteSession_Ex extends SC_SiteSession {
+class SC_SiteSession_Ex extends SC_SiteSession 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_MobileImage_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_MobileImage_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_MobileImage_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_MobileImage.php';
 
-class SC_MobileImage_Ex extends SC_MobileImage {
+class SC_MobileImage_Ex extends SC_MobileImage 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_View_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_View_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_View_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_View.php';
 
-class SC_View_Ex extends SC_View {
+class SC_View_Ex extends SC_View 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_SmartphoneView_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_SmartphoneView_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_SmartphoneView_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_SmartphoneView.php';
 
-class SC_SmartphoneView_Ex extends SC_SmartphoneView {
+class SC_SmartphoneView_Ex extends SC_SmartphoneView 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Image_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Image_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Image_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Image.php';
 
-class SC_Image_Ex extends SC_Image {
+class SC_Image_Ex extends SC_Image 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_AdminView_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_AdminView_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_AdminView_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_AdminView.php';
 
-class SC_AdminView_Ex extends SC_AdminView {
+class SC_AdminView_Ex extends SC_AdminView 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Session_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Session_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Session_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Session.php';
 
-class SC_Session_Ex extends SC_Session {
+class SC_Session_Ex extends SC_Session 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_ClassAutoloader_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_ClassAutoloader_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_ClassAutoloader_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_ClassAutoloader.php';
 
-class SC_ClassAutoloader_Ex extends SC_ClassAutoloader {
+class SC_ClassAutoloader_Ex extends SC_ClassAutoloader 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_MobileUserAgent_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_MobileUserAgent_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_MobileUserAgent_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_MobileUserAgent.php';
 
-class SC_MobileUserAgent_Ex extends SC_MobileUserAgent {
+class SC_MobileUserAgent_Ex extends SC_MobileUserAgent 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_CheckError_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_CheckError_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_CheckError_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_CheckError.php';
 
-class SC_CheckError_Ex extends SC_CheckError {
+class SC_CheckError_Ex extends SC_CheckError 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_MobileEmoji_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_MobileEmoji_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_MobileEmoji_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_MobileEmoji.php';
 
-class SC_MobileEmoji_Ex extends SC_MobileEmoji {
+class SC_MobileEmoji_Ex extends SC_MobileEmoji 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Operation_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Operation_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Operation_Ex.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/SC_Api_Operation.php';
 
-class SC_Api_Operation_Ex extends SC_Api_Operation {
+class SC_Api_Operation_Ex extends SC_Api_Operation 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Utils_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Utils_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Utils_Ex.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/SC_Api_Utils.php';
 
-class SC_Api_Utils_Ex extends SC_Api_Utils {
+class SC_Api_Utils_Ex extends SC_Api_Utils 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Abstract_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Abstract_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/SC_Api_Abstract_Ex.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/SC_Api_Abstract.php';
 
-abstract class SC_Api_Abstract_Ex extends SC_Api_Abstract {
+abstract class SC_Api_Abstract_Ex extends SC_Api_Abstract 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/ItemSearch.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/ItemSearch.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/ItemSearch.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/ItemSearch.php';
 
-class API_ItemSearch_Ex extends API_ItemSearch {
+class API_ItemSearch_Ex extends API_ItemSearch 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/ItemLookup.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/ItemLookup.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/ItemLookup.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/ItemLookup.php';
 
-class API_ItemLookup_Ex extends API_ItemLookup {
+class API_ItemLookup_Ex extends API_ItemLookup 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/CartGet.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/CartGet.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/CartGet.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/CartGet.php';
 
-class API_CartGet_Ex extends API_CartGet {
+class API_CartGet_Ex extends API_CartGet 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/CartCreate.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/CartCreate.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/CartCreate.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/CartCreate.php';
 
-class API_CartCreate_Ex extends API_CartCreate {
+class API_CartCreate_Ex extends API_CartCreate 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/CartAdd_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/CartAdd_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/CartAdd_Ex.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/CartAdd.php';
 
-class API_CartAdd_Ex extends API_CartAdd {
+class API_CartAdd_Ex extends API_CartAdd 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/CartClear.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/CartClear.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/CartClear.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/CartClear.php';
 
-class API_CartClear_Ex extends API_CartClear {
+class API_CartClear_Ex extends API_CartClear 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/Default_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/Default_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/Default_Ex.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/Default.php';
 
-class API_Default_Ex extends API_Default {
+class API_Default_Ex extends API_Default 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/AddrFromZip.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/AddrFromZip.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/AddrFromZip.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/AddrFromZip.php';
 
-class API_AddrFromZip_Ex extends API_AddrFromZip {
+class API_AddrFromZip_Ex extends API_AddrFromZip 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/BrowseNodeLookup.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/BrowseNodeLookup.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/BrowseNodeLookup.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/BrowseNodeLookup.php';
 
-class API_BrowseNodeLookup_Ex extends API_BrowseNodeLookup {
+class API_BrowseNodeLookup_Ex extends API_BrowseNodeLookup 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/CartModify.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/CartModify.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/CartModify.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/CartModify.php';
 
-class API_CartModify_Ex extends API_CartModify {
+class API_CartModify_Ex extends API_CartModify 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/api_extends/operations/GetVersion_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/api_extends/operations/GetVersion_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/api_extends/operations/GetVersion_Ex.php	(revision 22567)
@@ -31,5 +31,6 @@
 require_once CLASS_REALDIR . 'api/operations/GetVersion.php';
 
-class API_GetVersion_Ex extends API_GetVersion {
+class API_GetVersion_Ex extends API_GetVersion 
+{
 
 }
Index: branches/version-2_12-dev/data/class_extends/sessionfactory_extends/SC_SessionFactory_UseRequest_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/sessionfactory_extends/SC_SessionFactory_UseRequest_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/sessionfactory_extends/SC_SessionFactory_UseRequest_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'sessionfactory/SC_SessionFactory_UseRequest.php';
 
-class SC_SessionFactory_UseRequest_Ex extends SC_SessionFactory_UseRequest {
+class SC_SessionFactory_UseRequest_Ex extends SC_SessionFactory_UseRequest 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/sessionfactory_extends/SC_SessionFactory_UseCookie_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/sessionfactory_extends/SC_SessionFactory_UseCookie_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/sessionfactory_extends/SC_SessionFactory_UseCookie_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'sessionfactory/SC_SessionFactory_UseCookie.php';
 
-class SC_SessionFactory_UseCookie_Ex extends SC_SessionFactory_UseCookie {
+class SC_SessionFactory_UseCookie_Ex extends SC_SessionFactory_UseCookie 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_SiteView_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_SiteView_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_SiteView_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_SiteView.php';
 
-class SC_SiteView_Ex extends SC_SiteView {
+class SC_SiteView_Ex extends SC_SiteView 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Ex extends LC_Page_Mypage {
+class LC_Page_Mypage_Ex extends LC_Page_Mypage 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_History_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_History_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_History_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_History_Ex extends LC_Page_Mypage_History {
+class LC_Page_Mypage_History_Ex extends LC_Page_Mypage_History 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Refusal_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Refusal_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Refusal_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Refusal_Ex extends LC_Page_Mypage_Refusal {
+class LC_Page_Mypage_Refusal_Ex extends LC_Page_Mypage_Refusal 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Delivery_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Delivery_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Delivery_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Delivery_Ex extends LC_Page_Mypage_Delivery {
+class LC_Page_Mypage_Delivery_Ex extends LC_Page_Mypage_Delivery 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_AbstractMypage_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_AbstractMypage_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_AbstractMypage_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_AbstractMypage_Ex extends LC_Page_AbstractMypage {
+class LC_Page_AbstractMypage_Ex extends LC_Page_AbstractMypage 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_HistoryDetail_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_HistoryDetail_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_HistoryDetail_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_HistoryDetail_Ex extends LC_Page_Mypage_HistoryDetail {
+class LC_Page_Mypage_HistoryDetail_Ex extends LC_Page_Mypage_HistoryDetail 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Change_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Change_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Change_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Change_Ex extends LC_Page_Mypage_Change {
+class LC_Page_Mypage_Change_Ex extends LC_Page_Mypage_Change 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_DownLoad_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_DownLoad_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_DownLoad_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id: LC_Page_Mypage_Download_Ex.php $
  */
-class LC_Page_Mypage_Download_Ex extends LC_Page_Mypage_Download {
+class LC_Page_Mypage_Download_Ex extends LC_Page_Mypage_Download 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Login_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Login_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Login_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Login_Ex extends LC_Page_Mypage_Login {
+class LC_Page_Mypage_Login_Ex extends LC_Page_Mypage_Login 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_RefusalComplete_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_RefusalComplete_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_RefusalComplete_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_RefusalComplete_Ex extends LC_Page_Mypage_RefusalComplete {
+class LC_Page_Mypage_RefusalComplete_Ex extends LC_Page_Mypage_RefusalComplete 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Order_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Order_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Order_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Order_Ex extends LC_Page_Mypage_Order {
+class LC_Page_Mypage_Order_Ex extends LC_Page_Mypage_Order 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_MailView_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_MailView_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_MailView_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_MailView_Ex extends LC_Page_Mypage_MailView {
+class LC_Page_Mypage_MailView_Ex extends LC_Page_Mypage_MailView 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_ChangeComplete_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_ChangeComplete_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_ChangeComplete_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_ChangeComplete_Ex extends LC_Page_Mypage_ChangeComplete {
+class LC_Page_Mypage_ChangeComplete_Ex extends LC_Page_Mypage_ChangeComplete 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_DeliveryAddr_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_DeliveryAddr_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_DeliveryAddr_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_DeliveryAddr_Ex extends LC_Page_Mypage_DeliveryAddr {
+class LC_Page_Mypage_DeliveryAddr_Ex extends LC_Page_Mypage_DeliveryAddr 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Favorite_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Favorite_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/mypage/LC_Page_Mypage_Favorite_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Mypage_Favorite_Ex extends LC_Page_Mypage_Favorite {
+class LC_Page_Mypage_Favorite_Ex extends LC_Page_Mypage_Favorite 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_DelivAddr_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_DelivAddr_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_DelivAddr_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_DelivAddr_Ex extends LC_Page_Shopping_DelivAddr {
+class LC_Page_Shopping_DelivAddr_Ex extends LC_Page_Shopping_DelivAddr 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Ex extends LC_Page_Shopping {
+class LC_Page_Shopping_Ex extends LC_Page_Shopping 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Deliv_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Deliv_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Deliv_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Deliv_Ex extends LC_Page_Shopping_Deliv {
+class LC_Page_Shopping_Deliv_Ex extends LC_Page_Shopping_Deliv 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_LoadPaymentModule_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_LoadPaymentModule_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_LoadPaymentModule_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_LoadPaymentModule_Ex extends LC_Page_Shopping_LoadPaymentModule {
+class LC_Page_Shopping_LoadPaymentModule_Ex extends LC_Page_Shopping_LoadPaymentModule 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Complete_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Complete_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Complete_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Complete_Ex extends LC_Page_Shopping_Complete {
+class LC_Page_Shopping_Complete_Ex extends LC_Page_Shopping_Complete 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Multiple_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Multiple_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Multiple_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Multiple_Ex extends LC_Page_Shopping_Multiple {
+class LC_Page_Shopping_Multiple_Ex extends LC_Page_Shopping_Multiple 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Confirm_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Confirm_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Confirm_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Confirm_Ex extends LC_Page_Shopping_Confirm {
+class LC_Page_Shopping_Confirm_Ex extends LC_Page_Shopping_Confirm 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Payment_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Payment_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/shopping/LC_Page_Shopping_Payment_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Shopping_Payment_Ex extends LC_Page_Shopping_Payment {
+class LC_Page_Shopping_Payment_Ex extends LC_Page_Shopping_Payment 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/unsupported/LC_Page_Unsupported_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/unsupported/LC_Page_Unsupported_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/unsupported/LC_Page_Unsupported_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Unsupported_Ex extends LC_Page_Unsupported {
+class LC_Page_Unsupported_Ex extends LC_Page_Unsupported 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'pages/admin/LC_Page_Admin.php';
 
-class LC_Page_Admin_Ex extends LC_Page_Admin {
+class LC_Page_Admin_Ex extends LC_Page_Admin 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Editdb_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Editdb_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Editdb_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Editdb_Ex extends LC_Page_Admin_System_Editdb {
+class LC_Page_Admin_System_Editdb_Ex extends LC_Page_Admin_System_Editdb 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Rank_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Rank_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Rank_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Rank_Ex extends LC_Page_Admin_System_Rank {
+class LC_Page_Admin_System_Rank_Ex extends LC_Page_Admin_System_Rank 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Input_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Input_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Input_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Input_Ex extends LC_Page_Admin_System_Input {
+class LC_Page_Admin_System_Input_Ex extends LC_Page_Admin_System_Input 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Ex extends LC_Page_Admin_System {
+class LC_Page_Admin_System_Ex extends LC_Page_Admin_System 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Parameter_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Parameter_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Parameter_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id:LC_Page_Admin_Basis_Ex.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Admin_System_Parameter_Ex extends LC_Page_Admin_System_Parameter {
+class LC_Page_Admin_System_Parameter_Ex extends LC_Page_Admin_System_Parameter 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_AdminArea_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_AdminArea_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_AdminArea_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_AdminArea_Ex extends LC_Page_Admin_System_AdminArea {
+class LC_Page_Admin_System_AdminArea_Ex extends LC_Page_Admin_System_AdminArea 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Bkup_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Bkup_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Bkup_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Bkup_Ex extends LC_Page_Admin_System_Bkup {
+class LC_Page_Admin_System_Bkup_Ex extends LC_Page_Admin_System_Bkup 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Log_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Log_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Log_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Log_Ex extends LC_Page_Admin_System_Log {
+class LC_Page_Admin_System_Log_Ex extends LC_Page_Admin_System_Log 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Delete_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Delete_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Delete_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_Delete_Ex extends LC_Page_Admin_System_Delete {
+class LC_Page_Admin_System_Delete_Ex extends LC_Page_Admin_System_Delete 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_System_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_System_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_System_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_System_System_Ex extends LC_Page_Admin_System_System {
+class LC_Page_Admin_System_System_Ex extends LC_Page_Admin_System_System 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Masterdata_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Masterdata_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Masterdata_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id:LC_Page_Admin_Basis_Ex.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Admin_System_Masterdata_Ex extends LC_Page_Admin_System_Masterdata {
+class LC_Page_Admin_System_Masterdata_Ex extends LC_Page_Admin_System_Masterdata 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_CSS_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_CSS_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_CSS_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_CSS_Ex extends LC_Page_Admin_Design_CSS {
+class LC_Page_Admin_Design_CSS_Ex extends LC_Page_Admin_Design_CSS 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Header_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Header_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Header_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_Header_Ex extends LC_Page_Admin_Design_Header {
+class LC_Page_Admin_Design_Header_Ex extends LC_Page_Admin_Design_Header 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_MainEdit_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_MainEdit_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_MainEdit_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_MainEdit_Ex extends LC_Page_Admin_Design_MainEdit {
+class LC_Page_Admin_Design_MainEdit_Ex extends LC_Page_Admin_Design_MainEdit 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Template_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Template_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Template_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_Template_Ex extends LC_Page_Admin_Design_Template {
+class LC_Page_Admin_Design_Template_Ex extends LC_Page_Admin_Design_Template 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_UpDown_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_UpDown_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_UpDown_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_UpDown_Ex extends LC_Page_Admin_Design_UpDown {
+class LC_Page_Admin_Design_UpDown_Ex extends LC_Page_Admin_Design_UpDown 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Bloc_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Bloc_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Bloc_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_Bloc_Ex extends LC_Page_Admin_Design_Bloc {
+class LC_Page_Admin_Design_Bloc_Ex extends LC_Page_Admin_Design_Bloc 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/design/LC_Page_Admin_Design_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Design_Ex extends LC_Page_Admin_Design {
+class LC_Page_Admin_Design_Ex extends LC_Page_Admin_Design 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_OwnersStore_Ex extends LC_Page_Admin_OwnersStore {
+class LC_Page_Admin_OwnersStore_Ex extends LC_Page_Admin_OwnersStore 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_OwnersStore_Settings_Ex extends LC_Page_Admin_OwnersStore_Settings {
+class LC_Page_Admin_OwnersStore_Settings_Ex extends LC_Page_Admin_OwnersStore_Settings 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Log_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Log_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Log_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_OwnersStore_Log_Ex extends LC_Page_Admin_OwnersStore_Log {
+class LC_Page_Admin_OwnersStore_Log_Ex extends LC_Page_Admin_OwnersStore_Log 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Module_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Module_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Module_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_OwnersStore_Module_Ex extends LC_Page_Admin_OwnersStore_Module {
+class LC_Page_Admin_OwnersStore_Module_Ex extends LC_Page_Admin_OwnersStore_Module 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Index_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Index_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Index_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Index_Ex extends LC_Page_Admin_Index {
+class LC_Page_Admin_Index_Ex extends LC_Page_Admin_Index 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Ex extends LC_Page_Admin_Order {
+class LC_Page_Admin_Order_Ex extends LC_Page_Admin_Order 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_ProductSelect_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_ProductSelect_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_ProductSelect_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_ProductSelect_Ex extends LC_Page_Admin_Order_ProductSelect {
+class LC_Page_Admin_Order_ProductSelect_Ex extends LC_Page_Admin_Order_ProductSelect 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Mail_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Mail_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Mail_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Mail_Ex extends LC_Page_Admin_Order_Mail {
+class LC_Page_Admin_Order_Mail_Ex extends LC_Page_Admin_Order_Mail 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Status_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Status_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Status_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Status_Ex extends LC_Page_Admin_Order_Status {
+class LC_Page_Admin_Order_Status_Ex extends LC_Page_Admin_Order_Status 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Edit_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Edit_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Edit_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Edit_Ex extends LC_Page_Admin_Order_Edit {
+class LC_Page_Admin_Order_Edit_Ex extends LC_Page_Admin_Order_Edit 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Pdf_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Pdf_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Pdf_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Pdf_Ex extends LC_Page_Admin_Order_Pdf {
+class LC_Page_Admin_Order_Pdf_Ex extends LC_Page_Admin_Order_Pdf 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Multiple_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Multiple_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Multiple_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_Multiple_Ex extends LC_Page_Admin_Order_Multiple {
+class LC_Page_Admin_Order_Multiple_Ex extends LC_Page_Admin_Order_Multiple 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_MailView_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_MailView_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_MailView_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Order_MailView_Ex extends LC_Page_Admin_Order_MailView {
+class LC_Page_Admin_Order_MailView_Ex extends LC_Page_Admin_Order_MailView 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Disp_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Disp_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Disp_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id: LC_Page_Admin_Order_Disp_Ex.php 20764 2011-03-22 06:26:40Z nanasess $
  */
-class LC_Page_Admin_Order_Disp_Ex extends LC_Page_Admin_Order_Disp {
+class LC_Page_Admin_Order_Disp_Ex extends LC_Page_Admin_Order_Disp 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Home_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Home_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Home_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Home_Ex extends LC_Page_Admin_Home {
+class LC_Page_Admin_Home_Ex extends LC_Page_Admin_Home 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Login_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Login_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Login_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Login_Ex extends LC_Page_Admin_Login {
+class LC_Page_Admin_Login_Ex extends LC_Page_Admin_Login 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Logout_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Logout_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/LC_Page_Admin_Logout_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Logout_Ex extends LC_Page_Admin_Logout {
+class LC_Page_Admin_Logout_Ex extends LC_Page_Admin_Logout 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_Recommend_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_Recommend_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_Recommend_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_Recommend_Ex extends LC_Page_Admin_Contents_Recommend {
+class LC_Page_Admin_Contents_Recommend_Ex extends LC_Page_Admin_Contents_Recommend 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_FileManager_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_FileManager_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_FileManager_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_FileManager_Ex extends LC_Page_Admin_Contents_FileManager {
+class LC_Page_Admin_Contents_FileManager_Ex extends LC_Page_Admin_Contents_FileManager 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_FileView_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_FileView_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_FileView_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_FileView_Ex extends LC_Page_Admin_Contents_FileView {
+class LC_Page_Admin_Contents_FileView_Ex extends LC_Page_Admin_Contents_FileView 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_CSV_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_CSV_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_CSV_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_CSV_Ex extends LC_Page_Admin_Contents_CSV {
+class LC_Page_Admin_Contents_CSV_Ex extends LC_Page_Admin_Contents_CSV 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_CsvSql_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_CsvSql_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_CsvSql_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_CsvSql_Ex extends LC_Page_Admin_Contents_CsvSql {
+class LC_Page_Admin_Contents_CsvSql_Ex extends LC_Page_Admin_Contents_CsvSql 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_RecommendSearch_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_RecommendSearch_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_RecommendSearch_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_RecommendSearch_Ex extends LC_Page_Admin_Contents_RecommendSearch {
+class LC_Page_Admin_Contents_RecommendSearch_Ex extends LC_Page_Admin_Contents_RecommendSearch 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Contents_Ex extends LC_Page_Admin_Contents {
+class LC_Page_Admin_Contents_Ex extends LC_Page_Admin_Contents 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Ex extends LC_Page_Admin_Basis {
+class LC_Page_Admin_Basis_Ex extends LC_Page_Admin_Basis 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Mail_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Mail_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Mail_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Mail_Ex extends LC_Page_Admin_Basis_Mail {
+class LC_Page_Admin_Basis_Mail_Ex extends LC_Page_Admin_Basis_Mail 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_DeliveryInput_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_DeliveryInput_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_DeliveryInput_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_DeliveryInput_Ex extends LC_Page_Admin_Basis_DeliveryInput {
+class LC_Page_Admin_Basis_DeliveryInput_Ex extends LC_Page_Admin_Basis_DeliveryInput 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Delivery_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Delivery_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Delivery_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Delivery_Ex extends LC_Page_Admin_Basis_Delivery {
+class LC_Page_Admin_Basis_Delivery_Ex extends LC_Page_Admin_Basis_Delivery 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Tradelaw_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Tradelaw_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Tradelaw_Ex.php	(revision 22567)
@@ -33,5 +33,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Tradelaw_Ex extends LC_Page_Admin_Basis_Tradelaw {
+class LC_Page_Admin_Basis_Tradelaw_Ex extends LC_Page_Admin_Basis_Tradelaw 
+{
 
     // }}}
@@ -43,5 +44,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -52,5 +54,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -61,5 +64,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Seo_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Seo_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Seo_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Seo_Ex extends LC_Page_Admin_Basis_Seo {
+class LC_Page_Admin_Basis_Seo_Ex extends LC_Page_Admin_Basis_Seo 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Holiday_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Holiday_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Holiday_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id:LC_Page_Admin_Basis_Ex.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Admin_Basis_Holiday_Ex extends LC_Page_Admin_Basis_Holiday {
+class LC_Page_Admin_Basis_Holiday_Ex extends LC_Page_Admin_Basis_Holiday 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Point_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Point_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Point_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Point_Ex extends LC_Page_Admin_Basis_Point {
+class LC_Page_Admin_Basis_Point_Ex extends LC_Page_Admin_Basis_Point 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_ZipInstall_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_ZipInstall_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_ZipInstall_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_ZipInstall_Ex extends LC_Page_Admin_Basis_ZipInstall {
+class LC_Page_Admin_Basis_ZipInstall_Ex extends LC_Page_Admin_Basis_ZipInstall 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Kiyaku_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Kiyaku_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Kiyaku_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Kiyaku_Ex extends LC_Page_Admin_Basis_Kiyaku {
+class LC_Page_Admin_Basis_Kiyaku_Ex extends LC_Page_Admin_Basis_Kiyaku 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_PaymentInput_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_PaymentInput_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_PaymentInput_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_PaymentInput_Ex extends LC_Page_Admin_Basis_PaymentInput {
+class LC_Page_Admin_Basis_PaymentInput_Ex extends LC_Page_Admin_Basis_PaymentInput 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Payment_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Payment_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Payment_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Basis_Payment_Ex extends LC_Page_Admin_Basis_Payment {
+class LC_Page_Admin_Basis_Payment_Ex extends LC_Page_Admin_Basis_Payment 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Edit_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Edit_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Edit_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Customer_Edit_Ex extends LC_Page_Admin_Customer_Edit {
+class LC_Page_Admin_Customer_Edit_Ex extends LC_Page_Admin_Customer_Edit 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_SearchCustomer_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_SearchCustomer_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_SearchCustomer_Ex.php	(revision 22567)
@@ -45,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -54,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -63,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Customer_Ex extends LC_Page_Admin_Customer {
+class LC_Page_Admin_Customer_Ex extends LC_Page_Admin_Customer 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Customer_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Customer_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Customer_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Customer_Customer_Ex extends LC_Page_Admin_Customer_Customer {
+class LC_Page_Admin_Customer_Customer_Ex extends LC_Page_Admin_Customer_Customer 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_TemplateInput_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_TemplateInput_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_TemplateInput_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_TemplateInput_Ex extends LC_Page_Admin_Mail_TemplateInput {
+class LC_Page_Admin_Mail_TemplateInput_Ex extends LC_Page_Admin_Mail_TemplateInput 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Template_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Template_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Template_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_Template_Ex extends LC_Page_Admin_Mail_Template {
+class LC_Page_Admin_Mail_Template_Ex extends LC_Page_Admin_Mail_Template 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Sendmail_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Sendmail_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Sendmail_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_Sendmail_Ex extends LC_Page_Admin_Mail_Sendmail {
+class LC_Page_Admin_Mail_Sendmail_Ex extends LC_Page_Admin_Mail_Sendmail 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_Ex extends LC_Page_Admin_Mail {
+class LC_Page_Admin_Mail_Ex extends LC_Page_Admin_Mail 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_History_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_History_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_History_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_History_Ex extends LC_Page_Admin_Mail_History {
+class LC_Page_Admin_Mail_History_Ex extends LC_Page_Admin_Mail_History 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Preview_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Preview_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/mail/LC_Page_Admin_Mail_Preview_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Mail_Preview_Ex extends LC_Page_Admin_Mail_Preview {
+class LC_Page_Admin_Mail_Preview_Ex extends LC_Page_Admin_Mail_Preview 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ClassCategory_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ClassCategory_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ClassCategory_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ClassCategory_Ex extends LC_Page_Admin_Products_ClassCategory {
+class LC_Page_Admin_Products_ClassCategory_Ex extends LC_Page_Admin_Products_ClassCategory 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Class_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Class_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Class_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Class_Ex extends LC_Page_Admin_Products_Class {
+class LC_Page_Admin_Products_Class_Ex extends LC_Page_Admin_Products_Class 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductClass_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductClass_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductClass_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id:LC_Page_Admin_Products_Product_Ex.php 15532 2007-08-31 14:39:46Z nanasess $
  */
-class LC_Page_Admin_Products_ProductClass_Ex extends LC_Page_Admin_Products_ProductClass {
+class LC_Page_Admin_Products_ProductClass_Ex extends LC_Page_Admin_Products_ProductClass 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ReviewEdit_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ReviewEdit_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ReviewEdit_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ReviewEdit_Ex extends LC_Page_Admin_Products_ReviewEdit {
+class LC_Page_Admin_Products_ReviewEdit_Ex extends LC_Page_Admin_Products_ReviewEdit 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductRank_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductRank_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductRank_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ProductRank_Ex extends LC_Page_Admin_Products_ProductRank {
+class LC_Page_Admin_Products_ProductRank_Ex extends LC_Page_Admin_Products_ProductRank 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Category_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Category_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Category_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Category_Ex extends LC_Page_Admin_Products_Category {
+class LC_Page_Admin_Products_Category_Ex extends LC_Page_Admin_Products_Category 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_UploadCSVCategory_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_UploadCSVCategory_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_UploadCSVCategory_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $$Id$$
  */
-class LC_Page_Admin_Products_UploadCSVCategory_Ex extends LC_Page_Admin_Products_UploadCSVCategory {
+class LC_Page_Admin_Products_UploadCSVCategory_Ex extends LC_Page_Admin_Products_UploadCSVCategory 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Maker_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Maker_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Maker_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Maker_Ex extends LC_Page_Admin_Products_Maker {
+class LC_Page_Admin_Products_Maker_Ex extends LC_Page_Admin_Products_Maker 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Ex extends LC_Page_Admin_Products {
+class LC_Page_Admin_Products_Ex extends LC_Page_Admin_Products 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductSelect_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductSelect_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_ProductSelect_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_ProductSelect_Ex extends LC_Page_Admin_Products_ProductSelect {
+class LC_Page_Admin_Products_ProductSelect_Ex extends LC_Page_Admin_Products_ProductSelect 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Product_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Product_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Product_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Product_Ex extends LC_Page_Admin_Products_Product {
+class LC_Page_Admin_Products_Product_Ex extends LC_Page_Admin_Products_Product 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_UploadCSV_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_UploadCSV_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_UploadCSV_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $$Id$$
  */
-class LC_Page_Admin_Products_UploadCSV_Ex extends LC_Page_Admin_Products_UploadCSV {
+class LC_Page_Admin_Products_UploadCSV_Ex extends LC_Page_Admin_Products_UploadCSV 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Review_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Review_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/products/LC_Page_Admin_Products_Review_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Products_Review_Ex extends LC_Page_Admin_Products_Review {
+class LC_Page_Admin_Products_Review_Ex extends LC_Page_Admin_Products_Review 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/admin/total/LC_Page_Admin_Total_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/admin/total/LC_Page_Admin_Total_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/admin/total/LC_Page_Admin_Total_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Admin_Total_Ex extends LC_Page_Admin_Total {
+class LC_Page_Admin_Total_Ex extends LC_Page_Admin_Total 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/cart/LC_Page_Cart_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/cart/LC_Page_Cart_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/cart/LC_Page_Cart_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Cart_Ex extends LC_Page_Cart {
+class LC_Page_Cart_Ex extends LC_Page_Cart 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_DispError_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_DispError_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_DispError_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Error_DispError_Ex extends LC_Page_Error_DispError {
+class LC_Page_Error_DispError_Ex extends LC_Page_Error_DispError 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_SystemError_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_SystemError_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_SystemError_Ex.php	(revision 22567)
@@ -35,5 +35,6 @@
  * @version $Id$
  */
-class LC_Page_Error_SystemError_Ex extends LC_Page_Error_SystemError {
+class LC_Page_Error_SystemError_Ex extends LC_Page_Error_SystemError 
+{
 
     // }}}
@@ -45,5 +46,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -54,5 +56,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -63,5 +66,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/error/LC_Page_Error_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Error_Ex extends LC_Page_Error {
+class LC_Page_Error_Ex extends LC_Page_Error 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/contact/LC_Page_Contact_Complete_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/contact/LC_Page_Contact_Complete_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/contact/LC_Page_Contact_Complete_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Contact_Complete_Ex extends LC_Page_Contact_Complete {
+class LC_Page_Contact_Complete_Ex extends LC_Page_Contact_Complete 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/contact/LC_Page_Contact_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/contact/LC_Page_Contact_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/contact/LC_Page_Contact_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Contact_Ex extends LC_Page_Contact {
+class LC_Page_Contact_Ex extends LC_Page_Contact 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Charge_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Charge_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Charge_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Charge_Ex extends LC_Page_Guide_Charge {
+class LC_Page_Guide_Charge_Ex extends LC_Page_Guide_Charge 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_About_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_About_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_About_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_About_Ex extends LC_Page_Guide_About {
+class LC_Page_Guide_About_Ex extends LC_Page_Guide_About 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Order_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Order_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Order_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Order_Ex extends LC_Page_Guide_Order {
+class LC_Page_Guide_Order_Ex extends LC_Page_Guide_Order 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Kiyaku_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Kiyaku_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Kiyaku_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Kiyaku_Ex extends LC_Page_Guide_Kiyaku {
+class LC_Page_Guide_Kiyaku_Ex extends LC_Page_Guide_Kiyaku 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Privacy_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Privacy_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Privacy_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Privacy_Ex extends LC_Page_Guide_Privacy {
+class LC_Page_Guide_Privacy_Ex extends LC_Page_Guide_Privacy 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Ex extends LC_Page_Guide {
+class LC_Page_Guide_Ex extends LC_Page_Guide 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Usage_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Usage_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/guide/LC_Page_Guide_Usage_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Guide_Usage_Ex extends LC_Page_Guide_Usage {
+class LC_Page_Guide_Usage_Ex extends LC_Page_Guide_Usage 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/abouts/LC_Page_Abouts_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/abouts/LC_Page_Abouts_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/abouts/LC_Page_Abouts_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Abouts_Ex extends LC_Page_Abouts {
+class LC_Page_Abouts_Ex extends LC_Page_Abouts 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Redirect_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Redirect_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Redirect_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Redirect_Ex extends LC_Page_Redirect {
+class LC_Page_Redirect_Ex extends LC_Page_Redirect 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/regist/LC_Page_Regist_Complete_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/regist/LC_Page_Regist_Complete_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/regist/LC_Page_Regist_Complete_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Regist_Complete_Ex extends LC_Page_Regist_Complete {
+class LC_Page_Regist_Complete_Ex extends LC_Page_Regist_Complete 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/regist/LC_Page_Regist_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/regist/LC_Page_Regist_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/regist/LC_Page_Regist_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Regist_Ex extends LC_Page_Regist {
+class LC_Page_Regist_Ex extends LC_Page_Regist 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Sitemap_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Sitemap_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Sitemap_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Sitemap_Ex extends LC_Page_Sitemap {
+class LC_Page_Sitemap_Ex extends LC_Page_Sitemap 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/forgot/LC_Page_Forgot_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/forgot/LC_Page_Forgot_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/forgot/LC_Page_Forgot_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Forgot_Ex extends LC_Page_Forgot {
+class LC_Page_Forgot_Ex extends LC_Page_Forgot 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_ResizeImage_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_ResizeImage_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_ResizeImage_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_ResizeImage_Ex extends LC_Page_ResizeImage {
+class LC_Page_ResizeImage_Ex extends LC_Page_ResizeImage 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Complete_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Complete_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Complete_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Entry_Complete_Ex extends LC_Page_Entry_Complete {
+class LC_Page_Entry_Complete_Ex extends LC_Page_Entry_Complete 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_New_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_New_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_New_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Entry_New_Ex extends LC_Page_Entry_New {
+class LC_Page_Entry_New_Ex extends LC_Page_Entry_New 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Kiyaku_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Kiyaku_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Kiyaku_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Entry_Kiyaku_Ex extends LC_Page_Entry_Kiyaku {
+class LC_Page_Entry_Kiyaku_Ex extends LC_Page_Entry_Kiyaku 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_EmailMobile_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_EmailMobile_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_EmailMobile_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Entry_EmailMobile_Ex extends LC_Page_Entry_EmailMobile {
+class LC_Page_Entry_EmailMobile_Ex extends LC_Page_Entry_EmailMobile 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/entry/LC_Page_Entry_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Entry_Ex extends LC_Page_Entry {
+class LC_Page_Entry_Ex extends LC_Page_Entry 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviHeader_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviHeader_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviHeader_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_NaviHeader_Ex extends LC_Page_FrontParts_Bloc_NaviHeader {
+class LC_Page_FrontParts_Bloc_NaviHeader_Ex extends LC_Page_FrontParts_Bloc_NaviHeader 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginFooter_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginFooter_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginFooter_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_LoginFooter_Ex extends LC_Page_FrontParts_Bloc_LoginFooter {
+class LC_Page_FrontParts_Bloc_LoginFooter_Ex extends LC_Page_FrontParts_Bloc_LoginFooter 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Login_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Login_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Login_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_Login_Ex extends LC_Page_FrontParts_Bloc_Login {
+class LC_Page_FrontParts_Bloc_Login_Ex extends LC_Page_FrontParts_Bloc_Login 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Calendar_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Calendar_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Calendar_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $ $
  */
-class LC_Page_FrontParts_Bloc_Calendar_Ex extends LC_Page_FrontParts_Bloc_Calendar {
+class LC_Page_FrontParts_Bloc_Calendar_Ex extends LC_Page_FrontParts_Bloc_Calendar 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Cart_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Cart_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Cart_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_Cart_Ex extends LC_Page_FrontParts_Bloc_Cart {
+class LC_Page_FrontParts_Bloc_Cart_Ex extends LC_Page_FrontParts_Bloc_Cart 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id: LC_Page_FrontParts_Bloc__Ex.php -1   $
  */
-class LC_Page_FrontParts_Bloc_Recommend_Ex extends LC_Page_FrontParts_Bloc_Recommend {
+class LC_Page_FrontParts_Bloc_Recommend_Ex extends LC_Page_FrontParts_Bloc_Recommend 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_SearchProducts_Ex extends LC_Page_FrontParts_Bloc_SearchProducts {
+class LC_Page_FrontParts_Bloc_SearchProducts_Ex extends LC_Page_FrontParts_Bloc_SearchProducts 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviFooter_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviFooter_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviFooter_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_NaviFooter_Ex extends LC_Page_FrontParts_Bloc_NaviFooter {
+class LC_Page_FrontParts_Bloc_NaviFooter_Ex extends LC_Page_FrontParts_Bloc_NaviFooter 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_News_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_News_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_News_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_News_Ex extends LC_Page_FrontParts_Bloc_News {
+class LC_Page_FrontParts_Bloc_News_Ex extends LC_Page_FrontParts_Bloc_News 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Category_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Category_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Category_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_Category_Ex extends LC_Page_FrontParts_Bloc_Category {
+class LC_Page_FrontParts_Bloc_Category_Ex extends LC_Page_FrontParts_Bloc_Category 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id: LC_Page_FrontParts_Bloc_Ex.php $
  */
-class LC_Page_FrontParts_Bloc_Ex extends LC_Page_FrontParts_Bloc {
+class LC_Page_FrontParts_Bloc_Ex extends LC_Page_FrontParts_Bloc 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginHeader_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginHeader_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginHeader_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_Bloc_LoginHeader_Ex extends LC_Page_FrontParts_Bloc_LoginHeader {
+class LC_Page_FrontParts_Bloc_LoginHeader_Ex extends LC_Page_FrontParts_Bloc_LoginHeader 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/frontparts/LC_Page_FrontParts_LoginCheck_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/frontparts/LC_Page_FrontParts_LoginCheck_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/frontparts/LC_Page_FrontParts_LoginCheck_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_FrontParts_LoginCheck_Ex extends LC_Page_FrontParts_LoginCheck {
+class LC_Page_FrontParts_LoginCheck_Ex extends LC_Page_FrontParts_LoginCheck 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Review_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Review_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Review_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Products_Review_Ex extends LC_Page_Products_Review {
+class LC_Page_Products_Review_Ex extends LC_Page_Products_Review 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Detail_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Detail_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Detail_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Products_Detail_Ex extends LC_Page_Products_Detail {
+class LC_Page_Products_Detail_Ex extends LC_Page_Products_Detail 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Search_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Search_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_Search_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Products_Search_Ex extends LC_Page_Products_Search {
+class LC_Page_Products_Search_Ex extends LC_Page_Products_Search 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_CategoryList_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_CategoryList_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_CategoryList_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Products_CategoryList_Ex extends LC_Page_Products_CategoryList {
+class LC_Page_Products_CategoryList_Ex extends LC_Page_Products_CategoryList 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_ReviewComplete_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_ReviewComplete_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_ReviewComplete_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Products_ReviewComplete_Ex extends LC_Page_Products_ReviewComplete {
+class LC_Page_Products_ReviewComplete_Ex extends LC_Page_Products_ReviewComplete 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_List_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_List_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/products/LC_Page_Products_List_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Products_List_Ex extends LC_Page_Products_List {
+class LC_Page_Products_List_Ex extends LC_Page_Products_List 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Index_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Index_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Index_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Index_Ex extends LC_Page_Index {
+class LC_Page_Index_Ex extends LC_Page_Index 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/rss/LC_Page_Rss_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/rss/LC_Page_Rss_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/rss/LC_Page_Rss_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Rss_Ex extends LC_Page_Rss {
+class LC_Page_Rss_Ex extends LC_Page_Rss 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/rss/LC_Page_Rss_Products_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/rss/LC_Page_Rss_Products_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/rss/LC_Page_Rss_Products_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Rss_Products_Ex extends LC_Page_Rss_Products {
+class LC_Page_Rss_Products_Ex extends LC_Page_Rss_Products 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Php_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Php_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Php_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Api_Php_Ex extends LC_Page_Api_Php {
+class LC_Page_Api_Php_Ex extends LC_Page_Api_Php 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Json_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Json_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Json_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Api_Json_Ex extends LC_Page_Api_Json {
+class LC_Page_Api_Json_Ex extends LC_Page_Api_Json 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Api_Ex extends LC_Page_Api {
+class LC_Page_Api_Ex extends LC_Page_Api 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Xml_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Xml_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/api/LC_Page_Api_Xml_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Api_Xml_Ex extends LC_Page_Api_Xml {
+class LC_Page_Api_Xml_Ex extends LC_Page_Api_Xml 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/order/LC_Page_Order_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/order/LC_Page_Order_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/order/LC_Page_Order_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Order_Ex extends LC_Page_Order {
+class LC_Page_Order_Ex extends LC_Page_Order 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'pages/LC_Page.php';
 
-class LC_Page_Ex extends LC_Page {
+class LC_Page_Ex extends LC_Page 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_InputZip_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_InputZip_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/LC_Page_InputZip_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_InputZip_Ex extends LC_Page_InputZip {
+class LC_Page_InputZip_Ex extends LC_Page_InputZip 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/page_extends/preview/LC_Page_Preview_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/page_extends/preview/LC_Page_Preview_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/page_extends/preview/LC_Page_Preview_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class LC_Page_Preview_Ex extends LC_Page_Preview {
+class LC_Page_Preview_Ex extends LC_Page_Preview 
+{
 
     // }}}
@@ -44,5 +45,6 @@
      * @return void
      */
-    function init() {
+    function init()
+    {
         parent::init();
     }
@@ -53,5 +55,6 @@
      * @return void
      */
-    function process() {
+    function process()
+    {
         parent::process();
     }
@@ -62,5 +65,6 @@
      * @return void
      */
-    function destroy() {
+    function destroy()
+    {
         parent::destroy();
     }
Index: branches/version-2_12-dev/data/class_extends/util_extends/SC_Utils_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/util_extends/SC_Utils_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/util_extends/SC_Utils_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_Utils_Ex extends SC_Utils {
+class SC_Utils_Ex extends SC_Utils 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/util_extends/GC_Utils_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/util_extends/GC_Utils_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/util_extends/GC_Utils_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class GC_Utils_Ex extends GC_Utils {
+class GC_Utils_Ex extends GC_Utils 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_InstallView_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_InstallView_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_InstallView_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_InstallView.php';
 
-class SC_InstallView_Ex extends SC_InstallView {
+class SC_InstallView_Ex extends SC_InstallView 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/batch_extends/SC_Batch_Update_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/batch_extends/SC_Batch_Update_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/batch_extends/SC_Batch_Update_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'util/SC_Batch_Update.php';
 
-class SC_Batch_Update_Ex extends SC_Batch_Update {
+class SC_Batch_Update_Ex extends SC_Batch_Update 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Display_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Display_Ex.php	(revision 20541)
+++ branches/version-2_12-dev/data/class_extends/SC_Display_Ex.php	(revision 22567)
@@ -3,4 +3,5 @@
 require_once CLASS_REALDIR . 'SC_Display.php';
 
-class SC_Display_Ex extends SC_Display{
+class SC_Display_Ex extends SC_Display
+{
 }
Index: branches/version-2_12-dev/data/class_extends/db_extends/SC_DB_MasterData_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/db_extends/SC_DB_MasterData_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/db_extends/SC_DB_MasterData_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_DB_MasterData_Ex extends SC_DB_MasterData {
+class SC_DB_MasterData_Ex extends SC_DB_MasterData 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/db_extends/SC_DB_DBFactory_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/db_extends/SC_DB_DBFactory_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/db_extends/SC_DB_DBFactory_Ex.php	(revision 22567)
@@ -34,5 +34,6 @@
  * @version $Id$
  */
-class SC_DB_DBFactory_Ex extends SC_DB_DBFactory {
+class SC_DB_DBFactory_Ex extends SC_DB_DBFactory 
+{
 
     // }}}
@@ -45,5 +46,6 @@
      * @return mixed DBFactory インスタンス
      */
-    function getInstance($db_type = DB_TYPE) {
+    function getInstance($db_type = DB_TYPE)
+    {
         switch ($db_type) {
             case 'mysql':
Index: branches/version-2_12-dev/data/class_extends/db_extends/dbfactory/SC_DB_DBFactory_MYSQL_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/db_extends/dbfactory/SC_DB_DBFactory_MYSQL_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/db_extends/dbfactory/SC_DB_DBFactory_MYSQL_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_DB_DBFactory_MYSQL_Ex extends SC_DB_DBFactory_MYSQL {
+class SC_DB_DBFactory_MYSQL_Ex extends SC_DB_DBFactory_MYSQL 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/db_extends/dbfactory/SC_DB_DBFactory_PGSQL_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/db_extends/dbfactory/SC_DB_DBFactory_PGSQL_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/db_extends/dbfactory/SC_DB_DBFactory_PGSQL_Ex.php	(revision 22567)
@@ -34,4 +34,5 @@
  * @version $Id$
  */
-class SC_DB_DBFactory_PGSQL_Ex extends SC_DB_DBFactory_PGSQL {
+class SC_DB_DBFactory_PGSQL_Ex extends SC_DB_DBFactory_PGSQL 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Cookie_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Cookie_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Cookie_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Cookie.php';
 
-class SC_Cookie_Ex extends SC_Cookie {
+class SC_Cookie_Ex extends SC_Cookie 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_SessionFactory_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_SessionFactory_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_SessionFactory_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_SessionFactory.php';
 
-class SC_SessionFactory_Ex extends SC_SessionFactory {
+class SC_SessionFactory_Ex extends SC_SessionFactory 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Date_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Date_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Date_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Date.php';
 
-class SC_Date_Ex extends SC_Date {
+class SC_Date_Ex extends SC_Date 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Fpdf_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Fpdf_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Fpdf_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Fpdf.php';
 
-class SC_Fpdf_Ex extends SC_Fpdf {
+class SC_Fpdf_Ex extends SC_Fpdf 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Product_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Product_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Product_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Product.php';
 
-class SC_Product_Ex extends SC_Product {
+class SC_Product_Ex extends SC_Product 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/plugin_extends/SC_Plugin_Util_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/plugin_extends/SC_Plugin_Util_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/plugin_extends/SC_Plugin_Util_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'plugin/SC_Plugin_Util.php';
 
-class SC_Plugin_Util_Ex extends SC_Plugin_Util {
+class SC_Plugin_Util_Ex extends SC_Plugin_Util 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Batch_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Batch_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Batch_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_Batch.php';
 
-class SC_Batch_Ex extends SC_Batch {
+class SC_Batch_Ex extends SC_Batch 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_UploadFile_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_UploadFile_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_UploadFile_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_UploadFile.php';
 
-class SC_UploadFile_Ex extends SC_UploadFile {
+class SC_UploadFile_Ex extends SC_UploadFile 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_FormParam_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_FormParam_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_FormParam_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_FormParam.php';
 
-class SC_FormParam_Ex extends SC_FormParam {
+class SC_FormParam_Ex extends SC_FormParam 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Pie_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Pie_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Pie_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'graph/SC_Graph_Pie.php';
 
-class SC_Graph_Pie_Ex extends SC_Graph_Pie {
+class SC_Graph_Pie_Ex extends SC_Graph_Pie 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Bar_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Bar_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Bar_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'graph/SC_Graph_Bar.php';
 
-class SC_Graph_Bar_Ex extends SC_Graph_Bar {
+class SC_Graph_Bar_Ex extends SC_Graph_Bar 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Line_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Line_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Line_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'graph/SC_Graph_Line.php';
 
-class SC_Graph_Line_Ex extends SC_Graph_Line {
+class SC_Graph_Line_Ex extends SC_Graph_Line 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Base_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Base_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/graph_extends/SC_Graph_Base_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'graph/SC_Graph_Base.php';
 
-class SC_Graph_Base_Ex extends SC_Graph_Base {
+class SC_Graph_Base_Ex extends SC_Graph_Base 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_Initial_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_Initial_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_Initial_Ex.php	(revision 22567)
@@ -33,4 +33,5 @@
  * @version $Id$
  */
-class SC_Initial_Ex extends SC_Initial {
+class SC_Initial_Ex extends SC_Initial 
+{
 }
Index: branches/version-2_12-dev/data/class_extends/SC_PageNavi_Ex.php
===================================================================
--- branches/version-2_12-dev/data/class_extends/SC_PageNavi_Ex.php	(revision 22206)
+++ branches/version-2_12-dev/data/class_extends/SC_PageNavi_Ex.php	(revision 22567)
@@ -24,4 +24,5 @@
 require_once CLASS_REALDIR . 'SC_PageNavi.php';
 
-class SC_PageNavi_Ex extends SC_PageNavi {
+class SC_PageNavi_Ex extends SC_PageNavi 
+{
 }
