added footer.build and page.load hooks

v1.18.x
Julian Lam 12 years ago
parent 2cf55dcf9f
commit a9ce8393e4

@ -113,7 +113,9 @@
], customTemplates);
templates.ready(webserver.init);
plugins.ready(function() {
templates.ready(webserver.init);
});
Notifications.init();
} else {

@ -80,7 +80,8 @@ var ajaxify = {};
hook: 'page.load',
args: {
template: tpl_url,
url: '/' + url
url: url,
uid: app.uid
}
}
});

@ -60,6 +60,7 @@
<footer id="footer" class="container footer">
{footerHTML}
<div class="copyright">Copyright &copy; 2013 <a target="_blank" href="http://www.nodebb.org">NodeBB</a> by <a target="_blank" href="https://github.com/psychobunny">psychobunny</a>, <a href="https://github.com/julianlam" target="_blank">julianlam</a>, <a href="https://github.com/barisusakli" target="_blank">barisusakli</a> from <a target="_blank" href="http://www.designcreateplay.com">designcreateplay</a></div>
</footer>

@ -284,7 +284,7 @@ var fs = require('fs'),
winston.warn("Plugin: " + file + " is corrupted or invalid. Please check plugin.json for errors.")
return next(err, null);
}
_self.isActive(config.id, function(err, active) {
if (err) next(new Error('no-active-state'));

@ -309,7 +309,11 @@ var path = require('path'),
// translate all static templates served by webserver here. ex. footer, logout
translator.translate(templates.footer.toString(), function(parsedTemplate) {
templates.footer = parsedTemplate;
plugins.fireHook('filter:footer.build', '', function(err, appendHTML) {
templates.footer = templates.footer.parse({
footerHTML: appendHTML
});
});
});
translator.translate(templates.logout.toString(), function(parsedTemplate) {
templates.logout = parsedTemplate;

Loading…
Cancel
Save