Menambah Link di Pesan setFlash - cakePHP 2.6.1
Sedikit catatan sebelum lalok ,
Cara menambahkan sebuah link di pesan setflash() di cakePHP
1. Buat sebuah file di app/View/Elements/pesan_links.ctp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
echo $this->Html->tag('div', | |
h($message). | |
$this->Html->link($link_Kata, $link_url, array("escape" => false)), | |
null); | |
// DIRECTORY :: /app/View/Elements/pesan_link.ctp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$this->Session->setFlash( | |
__('Silahkan Klik Link untuk Melanjutkan: ') ,'pesan_links', array( // pesan_link adalah nama file di /app/View/Elements/pesan_links.ctp | |
'link_Kata' => 'Goo Here', // Sesuai dengan yang dibuat di file pesan_links.ctp | |
'link_url' => array( // Sesuai dengan yang dibuat di file pesan_links.ctp lalu ditambah alamat linknya | |
'controller' => 'lanjutkan', | |
'action' => 'index'))); | |
// DIRECTORY :: /app/Controller/YourController.php |