0

我想为登录用户自定义背景图像。是否可以更改动作文件中的 bg 图像?

$bg_image = $this->getUser()->getBgImage();
/* and here function to change body background image */
???
4

1 回答 1

2

在您的布局文件 (/apps/frontend/templates/layout.php) 中,您可以更改 background-image css 属性,例如:

<body style="background-image:url ('<?php echo $sf_user->getBgImage(); ?>');">
于 2013-04-29T20:52:12.770 回答