/**
  * Load of the hierarchy from the DataBase and save informations in two variables
  * -Var grades, array
  * -Var numberGrader, int
  *
  * @param none
  * @return nothing
  */
 private function ADMIN_loadGrades()
 {
     \application\resonance2\debug\console::FunctionTrace(__FUNCTION__);
     $table = cTABLEHIERARCHY;
     //C'est ici que l'on définit la table qui contient les règles des droits des utilisateurs
     $grades = \application\resonance2\application::SQLPDO_getAllItems($table);
     $this->grades = $grades;
     $this->numberGrades = \application\resonance2\application::SQLPDO_countrow($table);
 }