xrow / xrownewrelic-ls
New Relic 与 eZ Publish 集成
1.0.1
2016-07-04 14:54 UTC
Requires
This package is auto-updated.
Last update: 2024-09-16 01:59:41 UTC
README
New Relic 与 eZ Publish 集成
- 配置 config.php
- 将两个操作符添加到您的布局中。
将 {newrelic_footer()} 标签放置在 HEAD 的顶部附近,但在任何位置敏感的 META 标签之后
<head>
<meta name="XXX" content="XXX" />
<meta name="XXX" content="XXX" />
<meta name="XXX" content="XXX" />
{newrelic_header()}
</head>
放置在关闭 body 标签的末尾。
<body>
<div id="content>...</div>
{newrelic_footer()}
</body>
示例
<!DOCTYPE html>
<html>
<head>
{newrelic_header()}
</head>
<body>
{newrelic_footer()}
</body>
</html>