Changeset 22796 for branches/version-2_12-dev/data/class/pages/guide
- Timestamp:
- 2013/05/02 18:11:36 (13 years ago)
- Location:
- branches/version-2_12-dev/data/class/pages/guide
- Files:
-
- 6 edited
-
LC_Page_Guide.php (modified) (5 diffs)
-
LC_Page_Guide_About.php (modified) (5 diffs)
-
LC_Page_Guide_Charge.php (modified) (5 diffs)
-
LC_Page_Guide_Kiyaku.php (modified) (6 diffs)
-
LC_Page_Guide_Privacy.php (modified) (5 diffs)
-
LC_Page_Guide_Usage.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide.php
r22567 r22796 32 32 * @version $Id$ 33 33 */ 34 class LC_Page_Guide extends LC_Page_Ex 35 { 34 class LC_Page_Guide extends LC_Page_Ex { 36 35 37 36 // }}} … … 43 42 * @return void 44 43 */ 45 function init() 46 { 44 function init() { 47 45 parent::init(); 48 46 } … … 53 51 * @return void 54 52 */ 55 function process() 56 { 53 function process() { 57 54 parent::process(); 58 55 $this->action(); … … 65 62 * @return void 66 63 */ 67 function action() 68 { 64 function action() { 69 65 70 66 … … 76 72 * @return void 77 73 */ 78 function destroy() 79 { 74 function destroy() { 80 75 parent::destroy(); 81 76 } -
branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_About.php
r22567 r22796 32 32 * @version $Id$ 33 33 */ 34 class LC_Page_Guide_About extends LC_Page_Ex 35 { 34 class LC_Page_Guide_About extends LC_Page_Ex { 36 35 37 36 // }}} … … 43 42 * @return void 44 43 */ 45 function init() 46 { 44 function init() { 47 45 parent::init(); 48 46 $masterData = new SC_DB_MasterData_Ex(); … … 55 53 * @return void 56 54 */ 57 function process() 58 { 55 function process() { 59 56 parent::process(); 60 57 $this->action(); … … 67 64 * @return void 68 65 */ 69 function action() 70 { 66 function action() { 71 67 72 68 … … 78 74 * @return void 79 75 */ 80 function destroy() 81 { 76 function destroy() { 82 77 parent::destroy(); 83 78 } -
branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Charge.php
r22567 r22796 32 32 * @version $Id$ 33 33 */ 34 class LC_Page_Guide_Charge extends LC_Page_Ex 35 { 34 class LC_Page_Guide_Charge extends LC_Page_Ex { 36 35 37 36 // }}} … … 43 42 * @return void 44 43 */ 45 function init() 46 { 44 function init() { 47 45 parent::init(); 48 46 } … … 53 51 * @return void 54 52 */ 55 function process() 56 { 53 function process() { 57 54 parent::process(); 58 55 $this->action(); … … 65 62 * @return void 66 63 */ 67 function action() 68 { 64 function action() { 69 65 70 66 … … 76 72 * @return void 77 73 */ 78 function destroy() 79 { 74 function destroy() { 80 75 parent::destroy(); 81 76 } -
branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Kiyaku.php
r22570 r22796 32 32 * @version $Id$ 33 33 */ 34 class LC_Page_Guide_Kiyaku extends LC_Page_Ex 35 { 34 class LC_Page_Guide_Kiyaku extends LC_Page_Ex { 36 35 37 36 // }}} … … 43 42 * @return void 44 43 */ 45 function init() 46 { 44 function init() { 47 45 parent::init(); 48 46 } … … 53 51 * @return void 54 52 */ 55 function process() 56 { 53 function process() { 57 54 parent::process(); 58 55 $this->action(); … … 65 62 * @return void 66 63 */ 67 function action() 68 { 64 function action() { 69 65 70 66 $this->lfGetKiyaku(intval($_GET['page']), $this); … … 78 74 * @return void 79 75 */ 80 function destroy() 81 { 76 function destroy() { 82 77 parent::destroy(); 83 78 } … … 90 85 * @return void 91 86 */ 92 function lfGetKiyaku($index, &$objPage) 93 {94 $obj Kiyaku = new SC_Helper_Kiyaku_Ex();95 $arrKiyaku = $obj Kiyaku->getList();87 function lfGetKiyaku($index, &$objPage) { 88 $objQuery =& SC_Query_Ex::getSingletonInstance(); 89 $objQuery->setOrder('rank DESC'); 90 $arrKiyaku = $objQuery->select('kiyaku_title, kiyaku_text', 'dtb_kiyaku', 'del_flg <> 1'); 96 91 97 92 $number = count($arrKiyaku); -
branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Privacy.php
r22567 r22796 32 32 * @version $Id$ 33 33 */ 34 class LC_Page_Guide_Privacy extends LC_Page_Ex 35 { 34 class LC_Page_Guide_Privacy extends LC_Page_Ex { 36 35 37 36 // }}} … … 43 42 * @return void 44 43 */ 45 function init() 46 { 44 function init() { 47 45 parent::init(); 48 46 } … … 53 51 * @return void 54 52 */ 55 function process() 56 { 53 function process() { 57 54 parent::process(); 58 55 $this->action(); … … 65 62 * @return void 66 63 */ 67 function action() 68 { 64 function action() { 69 65 70 66 … … 76 72 * @return void 77 73 */ 78 function destroy() 79 { 74 function destroy() { 80 75 parent::destroy(); 81 76 } -
branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Usage.php
r22567 r22796 32 32 * @version $Id$ 33 33 */ 34 class LC_Page_Guide_Usage extends LC_Page_Ex 35 { 34 class LC_Page_Guide_Usage extends LC_Page_Ex { 36 35 37 36 // }}} … … 43 42 * @return void 44 43 */ 45 function init() 46 { 44 function init() { 47 45 parent::init(); 48 46 } … … 53 51 * @return void 54 52 */ 55 function process() 56 { 53 function process() { 57 54 parent::process(); 58 55 $this->action(); … … 65 62 * @return void 66 63 */ 67 function action() 68 { 64 function action() { 69 65 70 66 … … 76 72 * @return void 77 73 */ 78 function destroy() 79 { 74 function destroy() { 80 75 parent::destroy(); 81 76 }
Note: See TracChangeset
for help on using the changeset viewer.
