From 2b07917020c9181ff15e6096012144f4a9c201d4 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Sun, 13 Oct 2013 13:34:15 -0400 Subject: [PATCH] plugins - filter:admin.header.build allows you to add plugins to navigation in ACP --- public/templates/admin/header.tpl | 69 +++++++++++++++++++------------ src/routes/admin.js | 31 ++++++++++---- 2 files changed, 66 insertions(+), 34 deletions(-) diff --git a/public/templates/admin/header.tpl b/public/templates/admin/header.tpl index 4135e135b0..f34839359a 100644 --- a/public/templates/admin/header.tpl +++ b/public/templates/admin/header.tpl @@ -76,35 +76,52 @@ + + + diff --git a/src/routes/admin.js b/src/routes/admin.js index 0fa581018c..c0ad93387e 100644 --- a/src/routes/admin.js +++ b/src/routes/admin.js @@ -18,10 +18,17 @@ var user = require('./../user.js'), }); } - Admin.build_header = function (res) { - return templates['admin/header'].parse({ - csrf: res.locals.csrf_token, - relative_path: nconf.get('relative_path') + Admin.build_header = function (res, callback) { + var custom_header = { + 'plugins': [] + }; + + plugins.fireHook('filter:admin.header.build', custom_header, function(err, custom_header) { + callback(err, templates['admin/header'].parse({ + csrf: res.locals.csrf_token, + relative_path: nconf.get('relative_path'), + plugins: custom_header.plugins + })); }); } @@ -38,7 +45,9 @@ var user = require('./../user.js'), for (var i = 0, ii = routes.length; i < ii; i++) { (function (route) { app.get('/admin/' + route, Admin.isAdmin, function (req, res) { - res.send(Admin.build_header(res) + app.create_route('admin/' + route) + templates['admin/footer']); + Admin.build_header(res, function(err, header) { + res.send(header + app.create_route('admin/' + route) + templates['admin/footer']); + }); }); }(routes[i])); } @@ -48,7 +57,9 @@ var user = require('./../user.js'), for (var i = 0, ii = unit_tests.length; i < ii; i++) { (function (route) { app.get('/admin/testing/' + route, Admin.isAdmin, function (req, res) { - res.send(Admin.build_header(res) + app.create_route('admin/testing/' + route) + templates['admin/footer']); + Admin.build_header(res, function(err, header) { + res.send(header + app.create_route('admin/testing/' + route) + templates['admin/footer']); + }); }); }(unit_tests[i])); } @@ -57,11 +68,15 @@ var user = require('./../user.js'), app.namespace('/admin', function () { app.get('/', Admin.isAdmin, function (req, res) { - res.send(Admin.build_header(res) + app.create_route('admin/index') + templates['admin/footer']); + Admin.build_header(res, function(err, header) { + res.send(header + app.create_route('admin/index') + templates['admin/footer']); + }); }); app.get('/index', Admin.isAdmin, function (req, res) { - res.send(Admin.build_header(res) + app.create_route('admin/index') + templates['admin/footer']); + Admin.build_header(res, function(err, header) { + res.send(header + app.create_route('admin/index') + templates['admin/footer']); + }); }); });