aboutsummaryrefslogtreecommitdiffstats
path: root/old/moon_gui/static/app/common/header/header.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'old/moon_gui/static/app/common/header/header.controller.js')
-rwxr-xr-xold/moon_gui/static/app/common/header/header.controller.js56
1 files changed, 56 insertions, 0 deletions
diff --git a/old/moon_gui/static/app/common/header/header.controller.js b/old/moon_gui/static/app/common/header/header.controller.js
new file mode 100755
index 00000000..13ef4d6f
--- /dev/null
+++ b/old/moon_gui/static/app/common/header/header.controller.js
@@ -0,0 +1,56 @@
+/**
+ * @author arnaud marhin<arnaud.marhin@orange.com>
+ */
+
+(function() {
+
+ 'use strict';
+
+ angular
+ .module('moon')
+ .controller('HeaderController', HeaderController);
+
+ HeaderController.$inject = ['$translate', 'menuService', 'authenticationService', 'alertService'];
+
+ function HeaderController($translate, menuService, authenticationService, alertService) {
+
+ var header = this;
+
+ /*
+ *
+ */
+
+ header.isProjectTabActive = menuService.isProjectTabActive;
+ header.isPDPTabActive = menuService.isPDPTabActive;
+ header.isLogsTabActive = menuService.isLogsTabActive;
+ header.isPolicyTabActive = menuService.isPolicyTabActive;
+ header.isModelTabActive = menuService.isModelTabActive;
+ header.changeLocale = changeLocale;
+ header.logout = logout;
+ header.currentLanguage = $translate.use();
+
+ header.getUser = authenticationService.GetUser;
+
+ /*
+ *
+ */
+
+ function changeLocale(localeKey, event) {
+
+ event.preventDefault();
+ $translate.use(localeKey);
+ $translate.preferredLanguage(localeKey);
+ header.currentLanguage = localeKey;
+
+ }
+
+ function logout(){
+
+ authenticationService.Logout();
+ $translate('moon.logout.success').then( function(translatedValue) {
+ alertService.alertSuccess(translatedValue);
+ });
+
+ }
+ }
+})(); \ No newline at end of file