aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_gui/static/app/common/header/header.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'moonv4/moon_gui/static/app/common/header/header.controller.js')
-rwxr-xr-xmoonv4/moon_gui/static/app/common/header/header.controller.js56
1 files changed, 0 insertions, 56 deletions
diff --git a/moonv4/moon_gui/static/app/common/header/header.controller.js b/moonv4/moon_gui/static/app/common/header/header.controller.js
deleted file mode 100755
index 13ef4d6f..00000000
--- a/moonv4/moon_gui/static/app/common/header/header.controller.js
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- * @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