Rev | Line | |
---|
[4204] | 1 | <?php |
---|
| 2 | /** |
---|
[4933] | 3 | * @copyright 2005-2008 OpenPNE Project |
---|
[4204] | 4 | * @license http://www.php.net/license/3_01.txt PHP License 3.01 |
---|
| 5 | */ |
---|
| 6 | |
---|
| 7 | class pc_page_o_regist_ktai_address_end extends OpenPNE_Action |
---|
| 8 | { |
---|
| 9 | function isSecure() |
---|
| 10 | { |
---|
| 11 | return false; |
---|
| 12 | } |
---|
| 13 | |
---|
| 14 | function execute($requests) |
---|
| 15 | { |
---|
| 16 | //<PCKTAI |
---|
[4902] | 17 | if (IS_SLAVEPNE || !(OPENPNE_REGIST_FROM & OPENPNE_REGIST_FROM_PC)) { |
---|
[4204] | 18 | client_redirect_login(); |
---|
| 19 | } |
---|
| 20 | //> |
---|
| 21 | |
---|
| 22 | //---- inc_ テンプレート用 変数 ----// |
---|
| 23 | $this->set('inc_page_header', fetch_inc_page_header('regist')); |
---|
| 24 | |
---|
[4266] | 25 | //アフィリエイトタグ用変数 |
---|
| 26 | $aftag = str_replace(array('({$ID})', '({$DATETIME})'), |
---|
| 27 | array($requests['c_member_pre_id'], date("YmdHis")), AFFILIATE_TAG); |
---|
| 28 | $this->set('aftag', $aftag); |
---|
| 29 | |
---|
[4204] | 30 | $this->set('login_url', get_login_url()); |
---|
| 31 | return 'success'; |
---|
| 32 | } |
---|
| 33 | } |
---|
| 34 | |
---|
| 35 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.