我有一个简单的模板(layout.php),我使用 Propel 作为 ORM。
当我在函数中包含样式表(到 layout.php 中)时:include_stylesheets()
我变成了 2 个 css:
/sfPropelORMPlugin/css/global.css
/sfPropelORMPlugin/css/default.css
为什么?
当我查看我的 view.yml 实际上我只有这个:
default:
http_metas:
content-type: text/html
stylesheets:
has_layout: true
layout: layout
我没有配置样式表,但我在我的 Head Tag 中看到了 Propel css!
我的generator.yml:
generator:
class: sfPropelGenerator
param:
##CONFIG##
config:
actions: ~
fields: ~
list: ~
filter: ~
form: ~
edit: ~
new: ~
这是一个错误吗?还是只是配置错误?