統計
| ブランチ: | リビジョン:

pictcode / app / Controller / TopController.php @ 787484d2

履歴 | 表示 | アノテート | ダウンロード (4.069 KB)

1
<?php
2
/**
3
 * Static content controller.
4
 *
5
 * This file will render views from views/pages/
6
 *
7
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
8
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
9
 *
10
 * Licensed under The MIT License
11
 * For full copyright and license information, please see the LICENSE.txt
12
 * Redistributions of files must retain the above copyright notice.
13
 *
14
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
15
 * @link          http://cakephp.org CakePHP(tm) Project
16
 * @package       app.Controller
17
 * @since         CakePHP(tm) v 0.2.9
18
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
19
 */
20

    
21
App::uses('AppController', 'Controller');
22
App::uses('CakeEmail', 'Network/Email');
23

    
24
/**
25
 * Static content controller
26
 *
27
 * Override this controller by placing a copy in controllers directory of an application
28
 *
29
 * @package       app.Controller
30
 * @link http://book.cakephp.org/2.0/en/controllers/pages-controller.html
31
 */
32
class TopController extends AppController {
33

    
34
/**
35
 * This controller does not use a model
36
 *
37
 * @var array
38
 */
39
        var $name = 'top';
40
        public $uses = array('ContactValidate','Zipcode');
41
        public $layout = 'procedure';
42

    
43
        function beforeFilter(){
44
                $this->Auth->allow();
45
        }
46
/**
47
 * index
48
 */
49
        public function index() {
50
                if($this->Auth->user()){
51
                                        $this->redirect('/users/login_top');                          
52
                }
53
        }
54
/**
55
 * privacy_policy
56
 */
57
        public function privacy() {
58
        }
59
/**
60
 * terms
61
 */
62
        public function terms() {
63
        }
64
/**
65
 * about us
66
 */
67
        public function aboutus() {
68
        }
69
/**
70
 * company
71
 */
72
        public function company() {
73
        }
74
/**
75
 *        mypage 
76
 */
77
        public function mypage() {
78
        }
79
/**
80
 *        howto 
81
 */
82
        public function howto() {
83
        }
84
/**
85
 *        Withdrawal (Check)
86
 */
87
        public function withdraw_check() {
88
        }
89
/**
90
 *        Withdrawal (Complete) 
91
 */
92
        public function withdraw_comp() {
93
        }
94
/**
95
 *        Access Error 
96
 */
97
        public function error() {
98
        }
99
/**
100
 *        Address Error
101
 */
102
        public function error404() {
103
        }
104
/**
105
 * contact
106
 */
107
        public function contact() {
108
                if($this->request->is('post') || $this->request->is('put')){
109
                        $this->ContactValidate->set($this->request->data);
110
                        if($this->ContactValidate->validates()){
111
                                $this->Session->write('contact',$this->request->data);
112
                                $this->redirect(array('action'=>'contact_confirm'));
113
                        }else{
114
                        }
115
                }
116
        }
117
/**
118
 * contact_confirm
119
 */
120
        public function contact_confirm() {
121
                if($this->Session->read('contact')){
122
                        $this->set('contact',$this->Session->read('contact'));
123
                }else{
124
                        $this->redirect(array('action'=>'contact'));
125
                }
126
        }
127
/**
128
 * contact_complete
129
 */
130
        public function contact_complete() {
131
                $this->set('contact',$this->Session->read('contact'));
132
                $name = $this->Session->read('contact.ContactValidate.name');
133
                $mail = $this->Session->read('contact.ContactValidate.email');
134
                $comment = $this->Session->read('contact.ContactValidate.comment');
135
                $Email = new CakeEmail();
136
                $Email->charset('ISO-2022-JP');
137
                $Email->emailFormat('text');
138
                $Email->template('user_contact');
139
                $Email->viewVars(array('name'=>$name,'comment'=>$comment));
140
                $Email->from( MAIL_FROM );
141
                $Email->to($mail);
142
                $Email->subject('【PictCode】お問い合わせいただき、ありがとうございます。');
143
                $Email->send();
144
        }
145

    
146

    
147
/**
148
 *郵便番号から住所を自動入力する* 
149
 *
150
 * View/add.ctp
151
 */
152
        public function zipsearch() {
153
                App::import('Model','ConnectionManager');
154
        $db =ConnectionManager::getDataSource('default');
155

    
156
                //Users/zipsearch.ctpを自動で見に行くのを防止
157
                $this->autoRender = false;
158

    
159
                //リクエストがajaxメソッドで送られてきた場合
160
                       if($this->request->is('ajax')) {
161
            
162
                    //formのパラメータ取得
163
                   $post = $this->request->data['ContactValidate']['postcode'];
164
                   // var_dump($post);
165
                   // exit;
166
                        // $options = array(
167
                        // 'conditions'=>array(
168
                        //         'postcode like' => $post.'%' ,
169
                        // )
170
                // );
171
                $result = $db->query('select * from zipcodes where postcode like "'.$post.'%" limit 1');
172
       
173
                // データをjsonに変換して出力
174
                echo json_encode($result);
175

    
176
                }
177
        }
178

    
179
}