diff --git a/config/database.json b/config/database.json index 8859117..e18d45e 100755 --- a/config/database.json +++ b/config/database.json @@ -3,4 +3,4 @@ "dbname" : "socioview", "user" : "php", "password" : "QbzjZACndQM6NmuD" -} \ No newline at end of file +} diff --git a/css/header.scss b/css/header.scss index 318749d..5562efc 100755 --- a/css/header.scss +++ b/css/header.scss @@ -2,7 +2,7 @@ #WRAPPER > #HEADER{ - + /* [1] Barre de recherche =========================================================*/ & > #searchbar{ @@ -12,14 +12,14 @@ left: 1em; width: 20em; height: 2em; - + padding: .2em 1em; border: 0; border-radius: 3px; background-color: $theme-bg; - + } /* [2] Informations utilisateur @@ -51,7 +51,7 @@ cursor: pointer; } - + /* (2) Image du profil */ & > #user-picture{ @@ -62,7 +62,7 @@ width: calc( #{$header-height} - 2*1em ); height: calc( #{$header-height} - 2*1em ); - + border-radius: 50% / 50%; background: $theme-bg url('/f/svg/nopic/st/header') center center no-repeat; @@ -98,7 +98,7 @@ } - + /* [3] Menu deroulant pour l'administration du profil =========================================================*/ @@ -109,7 +109,7 @@ right: 0; margin: .5em; - + border-radius: 5px; border: 1px solid darken($theme-bg, 10); @@ -122,7 +122,7 @@ & > span{ display: block; position: relative; - + // On ajoute une ligne en dessous sauf pour le dernier &:not(:last-child){ border-bottom: 1px solid #ddd; @@ -140,8 +140,8 @@ } } - - + + } diff --git a/js/includes/sociogram.js b/js/includes/sociogram.js index 9739c08..2a44e92 100644 --- a/js/includes/sociogram.js +++ b/js/includes/sociogram.js @@ -18,7 +18,7 @@ function sociogramClass(container){ this.container = container; this.log('sociogram created'); -}; +} @@ -122,7 +122,7 @@ sociogramClass.prototype.load = function(){ thisPtr.log(response); // Si erreur, on quitte - if( response.ModuleError != 0 ) return; + if( response.ModuleError !== 0 ) return; // On enregistre la réponse thisPtr.response = response; @@ -204,10 +204,9 @@ sociogramClass.prototype.load = function(){ sociogramClass.prototype.nodeAt = function(x, y){ var nodes = this.sigma.graph.nodes(); var minDistance = null; - - for( nodeId in nodes ){ + for( var nodeId in nodes ){ var distance = Math.sqrt( Math.pow(x-nodes[nodeId].x, 2) + Math.pow(y-nodes[nodeId].y, 2) ); - if( minDistance == null || distance < minDistance ) + if( minDistance === null || distance < minDistance ) minDistance = distance; } @@ -232,9 +231,9 @@ sociogramClass.prototype.arrange = function(nodeId, pos, alone){ var node = this.sigma.graph.nodes(nodeId); // Si le noeud est deja place, on ne fais rien - if( node.x != 0 || node.y != 0 ) return; + if( node.x !== 0 || node.y !== 0 ) return; - var pos = (pos==null) ? {x: node.x, y: node.y} : pos; // On recupere la position + pos = (pos===null) ? {x: node.x, y: node.y} : pos; // On recupere la position // Tant que le noeud est trop proche d'un autre, on l'eloigne // UNIQUEMENT si alone n'est pas NULL @@ -263,7 +262,7 @@ sociogramClass.prototype.arrange = function(nodeId, pos, alone){ var neighborsCount = 0; - for( neighborId in neighborsId ){ + for( var neighborId in neighborsId ){ neighbors[neighborId] = this.sigma.graph.nodes(neighborId); neighborsCount++; } @@ -279,7 +278,7 @@ sociogramClass.prototype.arrange = function(nodeId, pos, alone){ for( neighborId in neighbors ){ var current = this.sigma.graph.nodes(neighborId); // Si n'est pas deja positionne - if( current.x == 0 && current.y == 0 ){ + if( current.x === 0 && current.y === 0 ){ // On cherche un angle tant qu'il est pas trop pres d'un deja pris var angle, alreadyUsed = false; do{ @@ -322,14 +321,14 @@ sociogramClass.prototype.overload.nodeNeighbors = function(nodeId){ // Pile des voisins pour lesquels il faut chercher leurs voisins var stack = []; - for( neighborId in neighbors ) stack.push(neighborId); + for( var neighborId in neighbors ) stack.push(neighborId); // Tant qu'il reste des voisins a trouver while( stack.length > 0 ){ var subneighbors = this.allNeighborsIndex[stack[0]]; - for( subId in subneighbors ) + for( var subId in subneighbors ) // Si le voisin est pas deja dans la liste/pile, on l'ajoute a la liste des voisins - if( neighbors[subId] == null ){ + if( neighbors[subId] === null ){ stack.push(subId); // On ajoute a la pile neighbors[subId] = subneighbors[subId]; // On ajoute a la liste complete } @@ -456,7 +455,7 @@ sociogramClass.prototype.bindings.clickNode = function(thisPtr, e){ neighborNodes[nodeId] = e.data.node; // on ajoute le noeud clique thisPtr.sigma.graph.nodes().forEach(function(n) { - if( neighborNodes[n.id] != null ) n.color = n.originalColor; + if( neighborNodes[n.id] !== null ) n.color = n.originalColor; else n.color = '#eee'; }); diff --git a/js/lib/page-manager.js b/js/lib/page-manager.js index 914e2b4..d5d2c5b 100755 --- a/js/lib/page-manager.js +++ b/js/lib/page-manager.js @@ -10,7 +10,7 @@ /* */ /***************************************/ -function pageManagerClass(){}; +function pageManagerClass(){} var ptrPageManagerClass; // pointeur global pour l'utilisation de fonctions de fonctions @@ -276,4 +276,4 @@ pageManagerClass.prototype = { return this; } -} +}; diff --git a/manager/module/call_log.php b/manager/module/call_log.php index 2f84b0b..71bd603 100644 --- a/manager/module/call_log.php +++ b/manager/module/call_log.php @@ -72,7 +72,7 @@ /* (2) On enregistre le contact dans l'annuaire s'il y est pas déjà */ if( !isset($phone_directory[$number]) ) - $phone_directory[$number] = strlen($log['Name']) ? $log['Name'] : null; + $phone_directory[$number] = strlen($log['Name']) ? (string) $log['Name'] : null; /* (3) On complète le log */ $phone_log = array( diff --git a/view.php b/view.php index e1bf85e..d9546b3 100755 --- a/view.php +++ b/view.php @@ -25,13 +25,13 @@ - - - - + + + + - +