如何根据您访问网站的 url 在 Symfony2 中获取特定于客户端的配色方案
我们在 Symfony2 中有一个 Web 界面,供许多人使用 客户。 每个客户通过不同的 URL 进入我们的网站。 例如:
- 客户端A从clientA.our-domain.com进入
- 客户端B从clientB.our-domain.com进入
- 客户端C甚至可能从clientC.com加入,即使用他们自己选择的域而不是我们的子域
但是,无论他们使用什么 URL,他们最终都会得到相同的结果 机器:我们的网站。
现在我们对所有这些都使用相同的 CSS,无论是哪个 客户。如果我们能够设计一个样式表,我们会很高兴 每个客户都有特定于客户的配色方案。 我不想为每个客户端设置单独的网络服务器,所以我 希望动态选择样式表。
现在,在 HTTP“Host”标头中,我们可以看到客户端使用了哪个 URL, 正确的。 例如在 app.php 中可以使用它来设置一些全局变量 它定义了客户? Twig 可能会在主模板中读取这个变量并决定使用哪个变量 也许基于它使用样式表?
另外,我们应该使用 css 变量吗?如果只改变颜色,这可能比为每个客户端保留完整的样式表“克隆”更好。
总结一下:
- Symfony2 中可以使用“host”HTTP 标头来指示 Twig 使用哪个样式表吗?
- 我们应该使用CSS变量来识别方案中的颜色,还是有更好的方法?
提前致谢!
迪特尔
We have a single webinterface in Symfony2 which is used by a number of
clients.
Each client enters our site by a different URL.
For example:
- client A enters from clientA.our-domain.com
- client B enters from clientB.our-domain.com
- client C might even join from clientC.com, i.e. using their own selected domain instead of a sub-domain of ours
However, regardless of the URL they use, they end up at the same
machine: our website.
Right now we use the same CSS for all of them, regardless of which
client. We would love it if we could design a stylesheet for
each client with client-specific color schemes.
I don't want to set up a separate webserver for each client, so I'm
looking to select the stylesheet dynamically.
Now, in the HTTP 'Host' header one can see which URL the client used,
right.
Can this be used, for example in app.php, to set some global variable
which defines the client?
Twig might read this variable in the main template and decide which
stylesheet to use based on it, perhaps?
Also, should we then use css variables? This might be preferable to keeping complete stylesheet 'clones' for each client, if only the colors change.
So to sum up:
- Can the 'host' HTTP header be used in Symfony2 to indicate to Twig which stylesheet to use?
- Should we use CSS variables to identify the colors in the scheme, or is there a better way?
Thanks in advance!
Dieter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就个人而言,我更喜欢为每个站点使用特殊的 CSS 文件(包含每个站点不同的样式,例如颜色或背景图像)。例如
site-clientA.our-domain.com.css
。然后你可以使用这样的东西:
或者
Personally, I'd prefer using a special CSS file for each site (containing the styling, that's different for each site, like colors or background images). E.g.
site-clientA.our-domain.com.css
.Then you could use something like this:
Or