I'm using a helper for static pages to add a part to the title on every page. Currently I have the following code at the top of every static page:
<?php $this->set('title_for_layout', $title->output('Nyheter')); ?>
The purpose of $title->output is to append " :: MY WEB SITE NAME". This works fine, but for simplicity I would rather just call:
$title->title('Nyheter');
Başlığını ayarlamak için her sayfanın üst kısmında. Sorun yardımcısı içinde $ this-> set () diyemem ki. Böyle bir şey için bir yolu var mı ya da ben burada yanlış yolda tamamen duyuyorum?