Onlar layout.php erişilebilir böylece Symfony 1.2, nasıl actions.class.php değişkenleri oluşturabilirim?
Bu sayfa hakkında bazı bilgiler var: http://trac.symfony-project.org/wiki/Symfony11LayoutUpgrade
Size bu aşağıdaki kodu kullanarak, istenen etkiyi elde edebilirsiniz görünüyor:
$this->getResponse()->setSlot('title', 'insert your title here');
Ve sonra düzen dosyasında bu kullanın:
<title><?php echo get_slot('title') ?></title>