public static function retrieveCopName()
 {
     $copLabel = Miscellaneous::retrieveOrganizationName();
     if ($copLabel == '') {
         $copLabel = null;
     }
     return $copLabel;
 }
 public function editOrganizationName($organizationName)
 {
     try {
         Miscellaneous::editOrganizationName($organizationName);
         $_SESSION['isError'] = false;
         $_SESSION['message'] = __("The organization name was successfuly changed.");
     } catch (Exception $e) {
         $_SESSION['isError'] = true;
         $_SESSION['message'] = __("An error occured when changing the organization name.");
     }
     DefaultFC::redirection('adminMisc/index');
 }