Ghost/core/server/helpers/ghost_foot.js
Fabien O'Carroll 90c2dbcd6b Removed use of filters module
no-issue

As we're deprecating apps, filters are no longer used.

- Removed use of filters in helpers
- Removed use of filters from routing service
- Removed use of filters from rss service
- Removed use of filters in base model
2019-04-16 11:05:33 +02:00

26 lines
840 B
JavaScript

// # Ghost Foot Helper
// Usage: `{{ghost_foot}}`
//
// Outputs scripts and other assets at the bottom of a Ghost theme
var proxy = require('./proxy'),
_ = require('lodash'),
SafeString = proxy.SafeString,
settingsCache = proxy.settingsCache;
// We use the name ghost_foot to match the helper for consistency:
module.exports = function ghost_foot(options) { // eslint-disable-line camelcase
var foot = [],
globalCodeinjection = settingsCache.get('ghost_foot'),
postCodeinjection = options.data.root && options.data.root.post ? options.data.root.post.codeinjection_foot : null;
if (!_.isEmpty(globalCodeinjection)) {
foot.push(globalCodeinjection);
}
if (!_.isEmpty(postCodeinjection)) {
foot.push(postCodeinjection);
}
return new SafeString(foot.join(' ').trim());
};