ユーザーがユーザーとの関係を作成したいかどうかを確認するフォームと確認ページを作成しようとしています。フォームには、ID を受け取り、ユーザーを確認ページに誘導するフィールドがあります。確認ページには、確認と拒否の 2 つのボタンがあります。ユーザーが確認をクリックすると、フォームがデータベースに送信されます。ユーザーが拒否をクリックすると、フォームからのデータは破棄されます。確認ページには、追加しようとしているユーザーのユーザー名も表示されます。
追加ページ (add_admin.ctp) から ID を取得できないようです。
元の追加ページ (add_admin.ctp) から ID にアクセスして、確認ページ (confirm.ctp) で使用するにはどうすればよいですか?
public function add_admin() {
$this->set('title_for_layout', 'Send A Relationship Request');
$this->set('stylesheet_used', 'homestyle');
$this->set('image_used', 'eBOXLogoHome.png');
$this->layout='home_layout';
$account_id=$this->User->find('list', array(
'fields'=>array('account_id'),'conditions' => array(
'id' => $this->Auth->user('id'))));
if ($this->request->is('post')) {
$this->Relationship->save($this->request->data);
if ($this->Relationship->validates(array('fieldList'=>array('receiver_id','Relationship.accountExists'))))
{
$this->Relationship->save($this->request->data);
$this->Session->setFlash('The relationship has been saved');
$this->redirect(array('controller'=>'Relationships', 'action'=>'confirm'));
} else {
$this->Session->setFlash('The relationship could not be saved. Please, try again.');
}
}
$this->set('account_id', $account_id);
}
public function confirm($id){
$this->set('title_for_layout', 'Relationships');
$this->set('stylesheet_used', 'homestyle');
$this->set('image_used', 'eBOXLogoHome.png');
$this->layout='home_layout';
//$id = $this->request->data(`Relationship.receiver_id`);
//$id = $this->params('Relationship.id');
$id = $this->params['Relationship']['id'];
$compName = $this->request->data(`Account.company_name`);
$findName=$this->Account->find('list', array(
'fields'=>array('company_name'),'conditions' => array(
'id' => $id)));
debug($id);
pr($compName);
pr($findName);
$this->Relationship->unbindModel(array('hasMany'=>array('Invoice')));
if ($this->request->is('get')) {
$this->request->data = $this->Relationship->read(NULL, $id);
}
else
{
if ($this->Relationship->save($this->request->data)) {
//$this->Session->setFlash('You have successfully confirmed the relationship.');
if($this->request->data['submit'] == "type_1")
{
$this->Session->setFlash('The relationship has been confirmed');
$this->redirect( array('controller' => 'fields','action' => 'add'));
}
if($this->request->data['submit'] == "type_2")
{
$this->Session->setFlash('The relationship was denied');
$this->redirect( array('controller' => 'templates','action' => 'index'));
}
} else {
$this->Session->setFlash('Unable to update your post.');
}
}
$this->set('compName', $compName);
$this->set('findName', $findName);
$this->set('id', $id);
}
add_admin.ctp
<?php
echo $this->Form->create('Relationship', array('action'=>'add_admin'));
echo $this->Form->hidden('sender_id',array('label'=>'Enter your eBox ID: ', 'type'=>'text', 'default'=>$account_id));
echo $this->Form->input('receiver_id',array('label'=>'Receiver eBox ID: ', 'type'=>'text'));
echo "<br />";
echo $this->Form->end('Submit');
?>
確認.ctp
Do you want to create a relationship with <?php echo $findName ?>
<?php
echo $this->Form->create('Relationship', array('action'=>'confirm'));
echo $this->Form->input('id', array('type'=>'hidden'));
echo $this->Form->button('Confirm', array('name' => 'submit', 'value' => 'type_1'));
echo $this->Form->button('Deny', array('name' => 'submit', 'value' => 'type_2'));
?>