1

私は 2 つのテンプレートを持っています - /view/opinions/add.ctp - フォームを追加 - /view/opinions/list.ctp - 意見を表示します

/views/opinions/index.ctp に表示したいのですが、可能ですか?

$this -> element() でそれを行う唯一の方法はありますか? もしそうなら、 /view/elements の代わりに /view/opinions からのテンプレートを含めることはできますか?

@編集

意見Controller.php

class OpinionsController extends AppController { 
    public $helpers = array('Html', 'Form', 'Session');
    public $components = array('Session');

    var $name = 'Opinions'; 

    function index() { 
        $opinions = $this->Opinion->find('all'); 
        if(isset($this->params['requested'])) { 
             return $opinions; 
        } 
        $this->set('opinions', $opinions);       
    } 



    public function add() {
        if ($this->request->is('post')) {
            $this->Opinion->create();
            if ($this->Opinion->save($this->request->data)) {
                $this->Session->setFlash(__('saved.'));
                $this->redirect(array('action' => 'index'));
            } else {
                $this->Session->setFlash(__('Unable to add.'));
            }
        }
    }
} 

index.ctp

$this->extend('/Opinions/view');
$this->extend('/Opinions/add');

add.ctp

echo $this->Form->create('Opinion', array('type' => 'file'));
echo $this->Form->input('author_name', array('label' => 'Imię'));
echo $this->Form->input('author_signature', array('label' => 'Podpis'));
echo $this->Form->input('text', array('rows' => '5', 'cols' => '30', 'label' => 'Opinia'));
echo $this->Form->input('author_pic', array('type' => 'file', 'label' => 'Zdjęcie')); 
echo $this->Form->input('author_pic_dir', array('type' => 'hidden')); 
echo $this->Form->end('Dodaj opinię');

view.ctp `

<?php foreach ($opinions as $opinion): ?>

    <div class="opinion">
        <div class="author">
            <div class="pic"><?php echo $this->Html->image("defaultAvatar.jpg", array('alt' => $opinion['Opinion']['author_name'])); ?></div>
            <div class="signature"><b><?= $opinion['Opinion']['author_name']?></b><br><i><?= $opinion['Opinion']['author_signature']?></i></div>
        </div>
        <div class="text">
            <blockquote><p><?= $opinion['Opinion']['text']?></p></blockquote>       
        </div>
        <div class="clear"><!-- . --></div>
    </div>

    <div class="clear"><!-- . --></div>

<?php endforeach; ?>
<?php unset($post); ?>

`

4

1 に答える 1