| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 4 | * |
|---|
| 5 | * http://www.lockon.co.jp/ |
|---|
| 6 | */ |
|---|
| 7 | require_once("../require.php"); |
|---|
| 8 | |
|---|
| 9 | class LC_Page { |
|---|
| 10 | function LC_Page() { |
|---|
| 11 | $this->tpl_mainpage = 'entry/kiyaku.tpl'; |
|---|
| 12 | $this->tpl_title="¤´ÍøÍѵ¬Ìó"; |
|---|
| 13 | } |
|---|
| 14 | } |
|---|
| 15 | |
|---|
| 16 | $objPage = new LC_Page(); |
|---|
| 17 | $objView = new SC_MobileView(); |
|---|
| 18 | $objCustomer = new SC_Customer(); |
|---|
| 19 | |
|---|
| 20 | $offset = isset($_REQUEST['offset']) ? $_REQUEST['offset'] : 0; |
|---|
| 21 | $next = $offset; |
|---|
| 22 | |
|---|
| 23 | // ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ |
|---|
| 24 | $objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT); |
|---|
| 25 | |
|---|
| 26 | // µ¬ÌóÆâÍÆ¤Î¼èÆÀ |
|---|
| 27 | $objQuery = new SC_Query(); |
|---|
| 28 | $count = $objQuery->count("dtb_kiyaku", "del_flg <> 1"); |
|---|
| 29 | $objQuery->setorder("rank DESC"); |
|---|
| 30 | $objQuery->setlimitoffset(1, $offset); |
|---|
| 31 | $arrRet = $objQuery->select("kiyaku_title, kiyaku_text", "dtb_kiyaku", "del_flg <> 1"); |
|---|
| 32 | |
|---|
| 33 | if($count > $offset + 1){ |
|---|
| 34 | $next++; |
|---|
| 35 | } else { |
|---|
| 36 | $next = -1; |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | $max = count($arrRet); |
|---|
| 40 | $objPage->tpl_kiyaku_text = ""; |
|---|
| 41 | for ($i = 0; $i < $max; $i++) { |
|---|
| 42 | $objPage->tpl_kiyaku_text.=$arrRet[$i]['kiyaku_title'] . "\n\n"; |
|---|
| 43 | $objPage->tpl_kiyaku_text.=$arrRet[$i]['kiyaku_text'] . "\n\n"; |
|---|
| 44 | } |
|---|
| 45 | |
|---|
| 46 | $objView->assign("offset", $next); |
|---|
| 47 | $objView->assignobj($objPage); |
|---|
| 48 | $objView->display(SITE_FRAME); |
|---|
| 49 | //-------------------------------------------------------------------------------------------------------------------------- |
|---|
| 50 | ?> |
|---|