我想为已登录用户自定义背景图片。是否可以在动作文件中更改bg图像?
$bg_image = $this->getUser()->getBgImage();
/* and here function to change body background image */
???
答案 0 :(得分:2)
在您的布局文件(/apps/frontend/templates/layout.php)中,您可以更改background-image css属性,例如:
<body style="background-image:url ('<?php echo $sf_user->getBgImage(); ?>');">