diff --git a/README.md b/README.md index 0e8219e5..af0a4bf7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +# La liste des document d'architecture du projet StudTraj se trouve dans docs/ ainsi que liste des prompts + # 📊 StudTraj - Student Trajectory Analysis Platform **StudTraj** est une plateforme web d'analyse des trajectoires d'apprentissage des étudiants en programmation. Elle permet aux enseignants de suivre et d'analyser les tentatives de résolution d'exercices de leurs étudiants grâce à des visualisations avancées et des analyses vectorielles. @@ -181,32 +183,8 @@ Content-Type: application/json ### Documentation technique La documentation complète du code est générée automatiquement avec phpDocumentor : -- Consultez [`docs/README_DOC.md`](docs/README_DOC.md) -- Ouvrez `docs/index.html` dans votre navigateur pour la documentation interactive - -### Statistiques du projet -- **Fichiers PHP :** 38 -- **Lignes de code :** ~4559 -- **Version PHP :** 7.4+ - ---- +- https://enzobagnis.github.io/SAE/ -## 🧪 Tests et qualité du code - -### Lancer les tests -```bash -vendor/bin/phpunit -``` - -### Vérifier le style de code -```bash -vendor/bin/phpcs -``` - -### Corriger automatiquement le style -```bash -vendor/bin/php-cs-fixer fix -``` --- @@ -241,10 +219,10 @@ Ce projet est développé dans le cadre d'une SAE (Situation d'Apprentissage et ## 👥 Auteurs - **Équipe StudTraj** -- **Ilan Stefanovitch** - **Enzo Bagnis** - **Hamza Koliaï** - **Jean-Baptiste Pibouleau** +- **William Marcus** --- diff --git a/docs/README_DOC.md b/docs/README_DOC.md deleted file mode 100644 index db2e9669..00000000 --- a/docs/README_DOC.md +++ /dev/null @@ -1,40 +0,0 @@ -# 📚 Documentation du projet SAE - -**Documentation générée automatiquement le 2025-11-05 11:07:30 UTC** - -## 📖 Structure du projet - -### Fichiers PHP principaux - -- `./models/Code2VecService.php` -- `./models/Database.php` -- `./models/Exercise.php` -- `./models/EmailService.php` -- `./models/Resource.php` -- `./models/PendingRegistration.php` -- `./models/Student.php` -- `./models/Dataset.php` -- `./models/User.php` -- `./controllers/HomeController.php` -- `./controllers/BaseController.php` -- `./sitemap.php` -- `./config/router.php` -- `./cron/cleanup.php` -- `./index.php` - -## 📊 Statistiques - -- **Nombre de fichiers PHP:** 38 -- **Lignes de code PHP:** 4559 -- **Version PHP du projet:** 7.4 -- **Version PHP pour la documentation:** 8.2 - -## 🔗 Accès à la documentation complète - -La documentation complète générée par phpDocumentor est disponible dans le dossier `docs/`. - -Ouvrez `docs/index.html` dans votre navigateur pour consulter la documentation interactive. - ---- - -_Documentation générée automatiquement par GitHub Actions - Pipeline CI/CD_ diff --git a/docs/architecture_BD/BD_01-12-2025.png b/docs/architecture_BD/BD_01-12-2025.png new file mode 100644 index 00000000..f83672ca Binary files /dev/null and b/docs/architecture_BD/BD_01-12-2025.png differ diff --git a/docs/architecture_BD/BD_09-03-2026.png b/docs/architecture_BD/BD_09-03-2026.png new file mode 100644 index 00000000..cf4a1bec Binary files /dev/null and b/docs/architecture_BD/BD_09-03-2026.png differ diff --git a/docs/architecture_BD/BD_11-03-2026.png b/docs/architecture_BD/BD_11-03-2026.png new file mode 100644 index 00000000..1ab94c99 Binary files /dev/null and b/docs/architecture_BD/BD_11-03-2026.png differ diff --git a/docs/architecture_code/Architecture-09-03-2026.png b/docs/architecture_code/Architecture-09-03-2026.png new file mode 100644 index 00000000..111c6baf Binary files /dev/null and b/docs/architecture_code/Architecture-09-03-2026.png differ diff --git a/docs/architecture_code/Architecture_13-02-2026.png b/docs/architecture_code/Architecture_13-02-2026.png new file mode 100644 index 00000000..c3a41866 Binary files /dev/null and b/docs/architecture_code/Architecture_13-02-2026.png differ diff --git a/docs/architecture_code/Architecture_16-01-2026.png b/docs/architecture_code/Architecture_16-01-2026.png new file mode 100644 index 00000000..2e346016 Binary files /dev/null and b/docs/architecture_code/Architecture_16-01-2026.png differ diff --git a/docs/classes/BaseController.html b/docs/classes/BaseController.html deleted file mode 100644 index 642762fb..00000000 --- a/docs/classes/BaseController.html +++ /dev/null @@ -1,567 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
-

SAE Project Documentation

- - - - - -
- -
-
- - - - -
-
-
    -
- -
-

- BaseController - - -
- in package - -
- - -

- -
- - -
AbstractYes
- -
- - - -

BaseController - Base controller class with common methods -All controllers should extend this class

- - - - - - - - - -

- Table of Contents - - -

- - - - - - - - - - -

- Methods - - -

-
-
- isAuthenticated() - -  : bool -
-
Check if user is authenticated
- -
- loadView() - -  : mixed -
-
Load a view file with data
- -
- redirect() - -  : mixed -
-
Redirect to a specific action
- -
- requireAuth() - -  : mixed -
-
Require authentication - redirect to login if not authenticated
- -
- - - - - - - -
-

- Methods - - -

-
-

- isAuthenticated() - - -

- - -

Check if user is authenticated

- - - protected - isAuthenticated() : bool - -
-
- - - - - - - -
-
Return values
- bool -
- -
-
-

- loadView() - - -

- - -

Load a view file with data

- - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
-
- - -
Parameters
-
-
- $viewName - : string -
-
-

Name of the view file (without .php extension)

-
- -
-
- $data - : array<string|int, mixed> - = []
-
-

Associative array of data to pass to the view

-
- -
-
- - - - - - -
-
-

- redirect() - - -

- - -

Redirect to a specific action

- - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
-
- - -
Parameters
-
-
- $action - : string -
-
-

Action name for routing

-
- -
-
- $params - : array<string|int, mixed> - = []
-
-

Additional URL parameters

-
- -
-
- - - - - - -
-
-

- requireAuth() - - -

- - -

Require authentication - redirect to login if not authenticated

- - - protected - requireAuth() : mixed - -
-
- - - - - - - - -
-
- -
-
-
-
-

-        
- -
-
- - - -
-
-
- -
- On this page - - -
- -
-
-
-
-
-

Search results

- -
-
-
    -
    -
    -
    -
    - - -
    - - - - - - - - diff --git a/docs/classes/Code2VecService.html b/docs/classes/Code2VecService.html deleted file mode 100644 index 038ff827..00000000 --- a/docs/classes/Code2VecService.html +++ /dev/null @@ -1,978 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
    -

    SAE Project Documentation

    - - - - - -
    - -
    -
    - - - - -
    -
    -
      -
    - -
    -

    - Code2VecService - - -
    - in package - -
    - - -

    - -
    - - -
    - - - -

    Service pour interagir avec code2aes2vec (Python) -Génère les vecteurs de grande dimension à partir des programmes étudiants

    - - - - - - - - - -

    - Table of Contents - - -

    - - - - - - - - - -

    - Properties - - -

    -
    -
    - $dataPath - -  : mixed -
    - -
    - $modelsPath - -  : mixed -
    - -
    - $pythonPath - -  : mixed -
    - -
    - $scriptsPath - -  : mixed -
    - -
    - -

    - Methods - - -

    -
    -
    - __construct() - -  : mixed -
    - -
    - exportDatasetToJSON() - -  : array<string|int, mixed> -
    -
    Exporte un dataset au format JSON compatible avec code2aes2vec
    - -
    - exportExercisesToJSON() - -  : mixed -
    -
    Exporte les exercices d'un dataset au format compatible code2aes2vec
    - -
    - generateAES() - -  : mixed -
    -
    Génère les AES pour toutes les tentatives d'un dataset -Met à jour la colonne aes2 dans la table attempts
    - -
    - getProcessingStatus() - -  : mixed -
    -
    Vérifie l'état du traitement
    - -
    - inferVectors() - -  : mixed -
    -
    Génère les vecteurs de grande dimension à partir des AES
    - -
    - processInBackground() - -  : mixed -
    -
    Lance le traitement complet en arrière-plan
    - -
    - importAESToDB() - -  : mixed -
    -
    Importe les AES depuis le fichier JSON vers la base de données
    - -
    - - - - - - -
    -

    - Properties - - -

    -
    -

    - $dataPath - - - - -

    - - - - - - private - mixed - $dataPath - - - - - - - - - - -
    -
    -

    - $modelsPath - - - - -

    - - - - - - private - mixed - $modelsPath - - - - - - - - - - -
    -
    -

    - $pythonPath - - - - -

    - - - - - - private - mixed - $pythonPath - - - - - - - - - - -
    -
    -

    - $scriptsPath - - - - -

    - - - - - - private - mixed - $scriptsPath - - - - - - - - - - -
    -
    - -
    -

    - Methods - - -

    -
    -

    - __construct() - - -

    - - - - - public - __construct() : mixed - -
    -
    - - - - - - - - -
    -
    -

    - exportDatasetToJSON() - - -

    - - -

    Exporte un dataset au format JSON compatible avec code2aes2vec

    - - - public - exportDatasetToJSON(int $datasetId) : array<string|int, mixed> - -
    -
    - - -
    Parameters
    -
    -
    - $datasetId - : int -
    -
    -

    ID du dataset dans la BD

    -
    - -
    -
    - - - - - -
    -
    Return values
    - array<string|int, mixed> - — -

    Résultat avec chemin du fichier exporté

    -
    - -
    - -
    -
    -

    - exportExercisesToJSON() - - -

    - - -

    Exporte les exercices d'un dataset au format compatible code2aes2vec

    - - - public - exportExercisesToJSON(mixed $datasetId) : mixed - -
    -
    - - -
    Parameters
    -
    -
    - $datasetId - : mixed -
    -
    - -
    -
    - - - - - - -
    -
    -

    - generateAES() - - -

    - - -

    Génère les AES pour toutes les tentatives d'un dataset -Met à jour la colonne aes2 dans la table attempts

    - - - public - generateAES(mixed $datasetId) : mixed - -
    -
    - - -
    Parameters
    -
    -
    - $datasetId - : mixed -
    -
    - -
    -
    - - - - - - -
    -
    -

    - getProcessingStatus() - - -

    - - -

    Vérifie l'état du traitement

    - - - public - getProcessingStatus(mixed $datasetId) : mixed - -
    -
    - - -
    Parameters
    -
    -
    - $datasetId - : mixed -
    -
    - -
    -
    - - - - - - -
    -
    -

    - inferVectors() - - -

    - - -

    Génère les vecteurs de grande dimension à partir des AES

    - - - public - inferVectors(mixed $datasetId) : mixed - -
    -
    - - -
    Parameters
    -
    -
    - $datasetId - : mixed -
    -
    - -
    -
    - - - - - - -
    -
    -

    - processInBackground() - - -

    - - -

    Lance le traitement complet en arrière-plan

    - - - public - processInBackground(mixed $datasetId) : mixed - -
    -
    - - -
    Parameters
    -
    -
    - $datasetId - : mixed -
    -
    - -
    -
    - - - - - - -
    -
    -

    - importAESToDB() - - -

    - - -

    Importe les AES depuis le fichier JSON vers la base de données

    - - - private - importAESToDB(mixed $datasetId, mixed $jsonFile) : mixed - -
    -
    - - -
    Parameters
    -
    -
    - $datasetId - : mixed -
    -
    - -
    -
    - $jsonFile - : mixed -
    -
    - -
    -
    - - - - - - -
    -
    - -
    -
    -
    -
    -
    
    -        
    - -
    -
    - - - -
    -
    -
    - -
    - On this page - - -
    - -
    -
    -
    -
    -
    -

    Search results

    - -
    -
    -
      -
      -
      -
      -
      - - -
      - - - - - - - - diff --git a/docs/classes/Controllers-Analysis-UploadController.html b/docs/classes/Controllers-Analysis-UploadController.html deleted file mode 100644 index 88530b63..00000000 --- a/docs/classes/Controllers-Analysis-UploadController.html +++ /dev/null @@ -1,761 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
      -

      SAE Project Documentation

      - - - - - -
      - -
      -
      - - - - -
      -
      - - -
      -

      - UploadController - - - extends BaseController - - -
      - in package - -
      - - -

      - -
      - - -
      - - - -

      Contrôleur pour l'upload des données de programmes étudiants

      - - - - - - - - - -

      - Table of Contents - - -

      - - - - - - - - - -

      - Properties - - -

      -
      -
      - $code2vecService - -  : mixed -
      - -
      - -

      - Methods - - -

      -
      -
      - __construct() - -  : mixed -
      - -
      - index() - -  : mixed -
      -
      Affiche la page d'upload
      - -
      - upload() - -  : mixed -
      -
      Traite l'upload du fichier JSON
      - -
      - isAuthenticated() - -  : bool -
      -
      Check if user is authenticated
      - -
      - loadView() - -  : mixed -
      -
      Load a view file with data
      - -
      - redirect() - -  : mixed -
      -
      Redirect to a specific action
      - -
      - requireAuth() - -  : mixed -
      -
      Require authentication - redirect to login if not authenticated
      - -
      - - - - - - -
      -

      - Properties - - -

      -
      -

      - $code2vecService - - - - -

      - - - - - - private - mixed - $code2vecService - - - - - - - - - - -
      -
      - -
      -

      - Methods - - -

      -
      -

      - __construct() - - -

      - - - - - public - __construct() : mixed - -
      -
      - - - - - - - - -
      -
      -

      - index() - - -

      - - -

      Affiche la page d'upload

      - - - public - index() : mixed - -
      -
      - - - - - - - - -
      -
      -

      - upload() - - -

      - - -

      Traite l'upload du fichier JSON

      - - - public - upload() : mixed - -
      -
      - - - - - - - - -
      -
      -

      - isAuthenticated() - - -

      - - -

      Check if user is authenticated

      - - - protected - isAuthenticated() : bool - -
      -
      - - - - - - - -
      -
      Return values
      - bool -
      - -
      -
      -

      - loadView() - - -

      - - -

      Load a view file with data

      - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
      -
      - - -
      Parameters
      -
      -
      - $viewName - : string -
      -
      -

      Name of the view file (without .php extension)

      -
      - -
      -
      - $data - : array<string|int, mixed> - = []
      -
      -

      Associative array of data to pass to the view

      -
      - -
      -
      - - - - - - -
      -
      -

      - redirect() - - -

      - - -

      Redirect to a specific action

      - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
      -
      - - -
      Parameters
      -
      -
      - $action - : string -
      -
      -

      Action name for routing

      -
      - -
      -
      - $params - : array<string|int, mixed> - = []
      -
      -

      Additional URL parameters

      -
      - -
      -
      - - - - - - -
      -
      -

      - requireAuth() - - -

      - - -

      Require authentication - redirect to login if not authenticated

      - - - protected - requireAuth() : mixed - -
      -
      - - - - - - - - -
      -
      - -
      -
      -
      -
      -
      
      -        
      - -
      -
      - - - -
      -
      -
      - -
      - On this page - - -
      - -
      -
      -
      -
      -
      -

      Search results

      - -
      -
      -
        -
        -
        -
        -
        - - -
        - - - - - - - - diff --git a/docs/classes/Controllers-Analysis-VectorController.html b/docs/classes/Controllers-Analysis-VectorController.html deleted file mode 100644 index 17ea5322..00000000 --- a/docs/classes/Controllers-Analysis-VectorController.html +++ /dev/null @@ -1,892 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
        -

        SAE Project Documentation

        - - - - - -
        - -
        -
        - - - - -
        -
        - - -
        -

        - VectorController - - - extends BaseController - - -
        - in package - -
        - - -

        - -
        - - -
        - - - -

        Contrôleur pour la génération et la gestion des vecteurs

        - - - - - - - - - -

        - Table of Contents - - -

        - - - - - - - - - -

        - Properties - - -

        -
        -
        - $code2vecService - -  : mixed -
        - -
        - $datasetModel - -  : mixed -
        - -
        - -

        - Methods - - -

        -
        -
        - __construct() - -  : mixed -
        - -
        - generate() - -  : mixed -
        -
        Lance la génération de vecteurs pour un dataset
        - -
        - getVectors() - -  : mixed -
        -
        Récupère les vecteurs générés
        - -
        - processing() - -  : mixed -
        -
        Page de traitement avec barre de progression
        - -
        - status() - -  : mixed -
        -
        API pour vérifier le statut du traitement (AJAX)
        - -
        - isAuthenticated() - -  : bool -
        -
        Check if user is authenticated
        - -
        - loadView() - -  : mixed -
        -
        Load a view file with data
        - -
        - redirect() - -  : mixed -
        -
        Redirect to a specific action
        - -
        - requireAuth() - -  : mixed -
        -
        Require authentication - redirect to login if not authenticated
        - -
        - - - - - - -
        -

        - Properties - - -

        -
        -

        - $code2vecService - - - - -

        - - - - - - private - mixed - $code2vecService - - - - - - - - - - -
        -
        -

        - $datasetModel - - - - -

        - - - - - - private - mixed - $datasetModel - - - - - - - - - - -
        -
        - -
        -

        - Methods - - -

        -
        -

        - __construct() - - -

        - - - - - public - __construct() : mixed - -
        -
        - - - - - - - - -
        -
        -

        - generate() - - -

        - - -

        Lance la génération de vecteurs pour un dataset

        - - - public - generate() : mixed - -
        -
        - - - - - - - - -
        -
        -

        - getVectors() - - -

        - - -

        Récupère les vecteurs générés

        - - - public - getVectors() : mixed - -
        -
        - - - - - - - - -
        -
        -

        - processing() - - -

        - - -

        Page de traitement avec barre de progression

        - - - public - processing() : mixed - -
        -
        - - - - - - - - -
        -
        -

        - status() - - -

        - - -

        API pour vérifier le statut du traitement (AJAX)

        - - - public - status() : mixed - -
        -
        - - - - - - - - -
        -
        -

        - isAuthenticated() - - -

        - - -

        Check if user is authenticated

        - - - protected - isAuthenticated() : bool - -
        -
        - - - - - - - -
        -
        Return values
        - bool -
        - -
        -
        -

        - loadView() - - -

        - - -

        Load a view file with data

        - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
        -
        - - -
        Parameters
        -
        -
        - $viewName - : string -
        -
        -

        Name of the view file (without .php extension)

        -
        - -
        -
        - $data - : array<string|int, mixed> - = []
        -
        -

        Associative array of data to pass to the view

        -
        - -
        -
        - - - - - - -
        -
        -

        - redirect() - - -

        - - -

        Redirect to a specific action

        - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
        -
        - - -
        Parameters
        -
        -
        - $action - : string -
        -
        -

        Action name for routing

        -
        - -
        -
        - $params - : array<string|int, mixed> - = []
        -
        -

        Additional URL parameters

        -
        - -
        -
        - - - - - - -
        -
        -

        - requireAuth() - - -

        - - -

        Require authentication - redirect to login if not authenticated

        - - - protected - requireAuth() : mixed - -
        -
        - - - - - - - - -
        -
        - -
        -
        -
        -
        -
        
        -        
        - -
        -
        - - - -
        -
        -
        - -
        - On this page - - -
        - -
        -
        -
        -
        -
        -

        Search results

        - -
        -
        -
          -
          -
          -
          -
          - - -
          - - - - - - - - diff --git a/docs/classes/Controllers-Analysis-VisualizationController.html b/docs/classes/Controllers-Analysis-VisualizationController.html deleted file mode 100644 index 581b4e26..00000000 --- a/docs/classes/Controllers-Analysis-VisualizationController.html +++ /dev/null @@ -1,761 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
          -

          SAE Project Documentation

          - - - - - -
          - -
          -
          - - - - -
          -
          - - -
          -

          - VisualizationController - - - extends BaseController - - -
          - in package - -
          - - -

          - -
          - - -
          - - - -

          Contrôleur pour la visualisation des données avec D3.js

          - - - - - - - - - -

          - Table of Contents - - -

          - - - - - - - - - -

          - Properties - - -

          -
          -
          - $datasetModel - -  : mixed -
          - -
          - -

          - Methods - - -

          -
          -
          - __construct() - -  : mixed -
          - -
          - getData() - -  : mixed -
          -
          API pour récupérer les données formatées pour D3.js
          - -
          - index() - -  : mixed -
          -
          Affiche la page de visualisation
          - -
          - isAuthenticated() - -  : bool -
          -
          Check if user is authenticated
          - -
          - loadView() - -  : mixed -
          -
          Load a view file with data
          - -
          - redirect() - -  : mixed -
          -
          Redirect to a specific action
          - -
          - requireAuth() - -  : mixed -
          -
          Require authentication - redirect to login if not authenticated
          - -
          - - - - - - -
          -

          - Properties - - -

          -
          -

          - $datasetModel - - - - -

          - - - - - - private - mixed - $datasetModel - - - - - - - - - - -
          -
          - -
          -

          - Methods - - -

          - -
          -

          - getData() - - -

          - - -

          API pour récupérer les données formatées pour D3.js

          - - - public - getData() : mixed - -
          -
          - - - - - - - - -
          -
          -

          - index() - - -

          - - -

          Affiche la page de visualisation

          - - - public - index() : mixed - -
          -
          - - - - - - - - -
          -
          -

          - isAuthenticated() - - -

          - - -

          Check if user is authenticated

          - - - protected - isAuthenticated() : bool - -
          -
          - - - - - - - -
          -
          Return values
          - bool -
          - -
          -
          -

          - loadView() - - -

          - - -

          Load a view file with data

          - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
          -
          - - -
          Parameters
          -
          -
          - $viewName - : string -
          -
          -

          Name of the view file (without .php extension)

          -
          - -
          -
          - $data - : array<string|int, mixed> - = []
          -
          -

          Associative array of data to pass to the view

          -
          - -
          -
          - - - - - - -
          -
          -

          - redirect() - - -

          - - -

          Redirect to a specific action

          - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
          -
          - - -
          Parameters
          -
          -
          - $action - : string -
          -
          -

          Action name for routing

          -
          - -
          -
          - $params - : array<string|int, mixed> - = []
          -
          -

          Additional URL parameters

          -
          - -
          -
          - - - - - - -
          -
          -

          - requireAuth() - - -

          - - -

          Require authentication - redirect to login if not authenticated

          - - - protected - requireAuth() : mixed - -
          -
          - - - - - - - - -
          -
          - -
          -
          -
          -
          -
          
          -        
          - -
          -
          - - - -
          -
          -
          - -
          - On this page - - -
          - -
          -
          -
          -
          -
          -

          Search results

          - -
          -
          -
            -
            -
            -
            -
            - - -
            - - - - - - - - diff --git a/docs/classes/Controllers-Auth-AuthController.html b/docs/classes/Controllers-Auth-AuthController.html deleted file mode 100644 index 81cb9533..00000000 --- a/docs/classes/Controllers-Auth-AuthController.html +++ /dev/null @@ -1,958 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
            -

            SAE Project Documentation

            - - - - - -
            - -
            -
            - - - - -
            -
            - - -
            -

            - AuthController - - -
            - in package - -
            - - -

            - -
            - - -
            - - - -

            AuthController - Authentication service with CRUD operations -Handles user registration, login, and password management

            - - - - - - - - - -

            - Table of Contents - - -

            - - - - - - - - - -

            - Properties - - -

            -
            -
            - $emailService - -  : mixed -
            - -
            - $pendingRegistrationModel - -  : mixed -
            - -
            - $userModel - -  : mixed -
            - -
            - -

            - Methods - - -

            -
            -
            - __construct() - -  : mixed -
            - -
            - createSession() - -  : mixed -
            -
            Create user session
            - -
            - login() - -  : mixed -
            -
            READ - Login user
            - -
            - register() - -  : mixed -
            -
            CREATE - Register a new user
            - -
            - requestPasswordReset() - -  : mixed -
            -
            UPDATE - Request password reset
            - -
            - resendCode() - -  : mixed -
            -
            UPDATE - Resend verification code
            - -
            - resetPassword() - -  : mixed -
            -
            UPDATE - Reset password with token
            - -
            - validateCode() - -  : mixed -
            -
            CREATE - Validate verification code and create user account
            - -
            - - - - - - -
            -

            - Properties - - -

            -
            -

            - $emailService - - - - -

            - - - - - - private - mixed - $emailService - - - - - - - - - - -
            -
            -

            - $pendingRegistrationModel - - - - -

            - - - - - - private - mixed - $pendingRegistrationModel - - - - - - - - - - -
            -
            -

            - $userModel - - - - -

            - - - - - - private - mixed - $userModel - - - - - - - - - - -
            -
            - -
            -

            - Methods - - -

            -
            -

            - __construct() - - -

            - - - - - public - __construct() : mixed - -
            -
            - - - - - - - - -
            -
            -

            - createSession() - - -

            - - -

            Create user session

            - - - public - createSession(mixed $user) : mixed - -
            -
            - - -
            Parameters
            -
            -
            - $user - : mixed -
            -
            - -
            -
            - - - - - - -
            -
            -

            - login() - - -

            - - -

            READ - Login user

            - - - public - login(mixed $email, mixed $password) : mixed - -
            -
            - - -
            Parameters
            -
            -
            - $email - : mixed -
            -
            - -
            -
            - $password - : mixed -
            -
            - -
            -
            - - - - - - -
            -
            -

            - register() - - -

            - - -

            CREATE - Register a new user

            - - - public - register(mixed $lastName, mixed $firstName, mixed $email, mixed $password) : mixed - -
            -
            - - -
            Parameters
            -
            -
            - $lastName - : mixed -
            -
            - -
            -
            - $firstName - : mixed -
            -
            - -
            -
            - $email - : mixed -
            -
            - -
            -
            - $password - : mixed -
            -
            - -
            -
            - - - - - - -
            -
            -

            - requestPasswordReset() - - -

            - - -

            UPDATE - Request password reset

            - - - public - requestPasswordReset(mixed $email) : mixed - -
            -
            - - -
            Parameters
            -
            -
            - $email - : mixed -
            -
            - -
            -
            - - - - - - -
            -
            -

            - resendCode() - - -

            - - -

            UPDATE - Resend verification code

            - - - public - resendCode(mixed $email) : mixed - -
            -
            - - -
            Parameters
            -
            -
            - $email - : mixed -
            -
            - -
            -
            - - - - - - -
            -
            -

            - resetPassword() - - -

            - - -

            UPDATE - Reset password with token

            - - - public - resetPassword(mixed $token, mixed $newPassword) : mixed - -
            -
            - - -
            Parameters
            -
            -
            - $token - : mixed -
            -
            - -
            -
            - $newPassword - : mixed -
            -
            - -
            -
            - - - - - - -
            -
            -

            - validateCode() - - -

            - - -

            CREATE - Validate verification code and create user account

            - - - public - validateCode(mixed $email, mixed $code) : mixed - -
            -
            - - -
            Parameters
            -
            -
            - $email - : mixed -
            -
            - -
            -
            - $code - : mixed -
            -
            - -
            -
            - - - - - - -
            -
            - -
            -
            -
            -
            -
            
            -        
            - -
            -
            - - - -
            -
            -
            - -
            - On this page - - -
            - -
            -
            -
            -
            -
            -

            Search results

            - -
            -
            -
              -
              -
              -
              -
              - - -
              - - - - - - - - diff --git a/docs/classes/Controllers-Auth-EmailVerificationController.html b/docs/classes/Controllers-Auth-EmailVerificationController.html deleted file mode 100644 index 8ad05243..00000000 --- a/docs/classes/Controllers-Auth-EmailVerificationController.html +++ /dev/null @@ -1,910 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
              -

              SAE Project Documentation

              - - - - - -
              - -
              -
              - - - - -
              -
              - - -
              -

              - EmailVerificationController - - - extends BaseController - - -
              - in package - -
              - - -

              - -
              - - -
              - - - -

              EmailVerificationController - Handles email verification

              - - - - - - - - - -

              - Table of Contents - - -

              - - - - - - - - - -

              - Properties - - -

              -
              -
              - $authController - -  : mixed -
              - -
              - -

              - Methods - - -

              -
              -
              - __construct() - -  : mixed -
              - -
              - index() - -  : mixed -
              -
              Show email verification page
              - -
              - resendCode() - -  : mixed -
              -
              Resend verification code
              - -
              - verify() - -  : mixed -
              -
              Verify email code
              - -
              - isAuthenticated() - -  : bool -
              -
              Check if user is authenticated
              - -
              - loadView() - -  : mixed -
              -
              Load a view file with data
              - -
              - redirect() - -  : mixed -
              -
              Redirect to a specific action
              - -
              - requireAuth() - -  : mixed -
              -
              Require authentication - redirect to login if not authenticated
              - -
              - getErrorMessage() - -  : mixed -
              -
              Get error message from error code
              - -
              - getSuccessMessage() - -  : mixed -
              -
              Get success message from success code
              - -
              - - - - - - -
              -

              - Properties - - -

              - -
              - -
              -

              - Methods - - -

              - -
              -

              - index() - - -

              - - -

              Show email verification page

              - - - public - index() : mixed - -
              -
              - - - - - - - - -
              -
              -

              - resendCode() - - -

              - - -

              Resend verification code

              - - - public - resendCode() : mixed - -
              -
              - - - - - - - - -
              - -
              -

              - isAuthenticated() - - -

              - - -

              Check if user is authenticated

              - - - protected - isAuthenticated() : bool - -
              -
              - - - - - - - -
              -
              Return values
              - bool -
              - -
              -
              -

              - loadView() - - -

              - - -

              Load a view file with data

              - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
              -
              - - -
              Parameters
              -
              -
              - $viewName - : string -
              -
              -

              Name of the view file (without .php extension)

              -
              - -
              -
              - $data - : array<string|int, mixed> - = []
              -
              -

              Associative array of data to pass to the view

              -
              - -
              -
              - - - - - - -
              -
              -

              - redirect() - - -

              - - -

              Redirect to a specific action

              - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
              -
              - - -
              Parameters
              -
              -
              - $action - : string -
              -
              -

              Action name for routing

              -
              - -
              -
              - $params - : array<string|int, mixed> - = []
              -
              -

              Additional URL parameters

              -
              - -
              -
              - - - - - - -
              -
              -

              - requireAuth() - - -

              - - -

              Require authentication - redirect to login if not authenticated

              - - - protected - requireAuth() : mixed - -
              -
              - - - - - - - - -
              -
              -

              - getErrorMessage() - - -

              - - -

              Get error message from error code

              - - - private - getErrorMessage(mixed $errorCode) : mixed - -
              -
              - - -
              Parameters
              -
              -
              - $errorCode - : mixed -
              -
              - -
              -
              - - - - - - -
              -
              -

              - getSuccessMessage() - - -

              - - -

              Get success message from success code

              - - - private - getSuccessMessage(mixed $successCode) : mixed - -
              -
              - - -
              Parameters
              -
              -
              - $successCode - : mixed -
              -
              - -
              -
              - - - - - - -
              -
              - -
              -
              -
              -
              -
              
              -        
              - -
              -
              - - - -
              -
              -
              - -
              - On this page - - -
              - -
              -
              -
              -
              -
              -

              Search results

              - -
              -
              -
                -
                -
                -
                -
                - - -
                - - - - - - - - diff --git a/docs/classes/Controllers-Auth-LoginController.html b/docs/classes/Controllers-Auth-LoginController.html deleted file mode 100644 index b2cf6361..00000000 --- a/docs/classes/Controllers-Auth-LoginController.html +++ /dev/null @@ -1,867 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                -

                SAE Project Documentation

                - - - - - -
                - -
                -
                - - - - -
                -
                - - -
                -

                - LoginController - - - extends BaseController - - -
                - in package - -
                - - -

                - -
                - - -
                - - - -

                LoginController - Handles login display and authentication

                - - - - - - - - - -

                - Table of Contents - - -

                - - - - - - - - - -

                - Properties - - -

                -
                -
                - $authController - -  : mixed -
                - -
                - -

                - Methods - - -

                -
                -
                - __construct() - -  : mixed -
                - -
                - authenticate() - -  : mixed -
                -
                Process login form
                - -
                - index() - -  : mixed -
                -
                Show login page
                - -
                - isAuthenticated() - -  : bool -
                -
                Check if user is authenticated
                - -
                - loadView() - -  : mixed -
                -
                Load a view file with data
                - -
                - redirect() - -  : mixed -
                -
                Redirect to a specific action
                - -
                - requireAuth() - -  : mixed -
                -
                Require authentication - redirect to login if not authenticated
                - -
                - getErrorMessage() - -  : mixed -
                -
                Get error message from error code
                - -
                - getSuccessMessage() - -  : mixed -
                -
                Get success message from success code
                - -
                - - - - - - -
                -

                - Properties - - -

                -
                -

                - $authController - - - - -

                - - - - - - private - mixed - $authController - - - - - - - - - - -
                -
                - -
                -

                - Methods - - -

                -
                -

                - __construct() - - -

                - - - - - public - __construct() : mixed - -
                -
                - - - - - - - - -
                -
                -

                - authenticate() - - -

                - - -

                Process login form

                - - - public - authenticate() : mixed - -
                -
                - - - - - - - - -
                -
                -

                - index() - - -

                - - -

                Show login page

                - - - public - index() : mixed - -
                -
                - - - - - - - - -
                -
                -

                - isAuthenticated() - - -

                - - -

                Check if user is authenticated

                - - - protected - isAuthenticated() : bool - -
                -
                - - - - - - - -
                -
                Return values
                - bool -
                - -
                -
                -

                - loadView() - - -

                - - -

                Load a view file with data

                - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
                -
                - - -
                Parameters
                -
                -
                - $viewName - : string -
                -
                -

                Name of the view file (without .php extension)

                -
                - -
                -
                - $data - : array<string|int, mixed> - = []
                -
                -

                Associative array of data to pass to the view

                -
                - -
                -
                - - - - - - -
                -
                -

                - redirect() - - -

                - - -

                Redirect to a specific action

                - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
                -
                - - -
                Parameters
                -
                -
                - $action - : string -
                -
                -

                Action name for routing

                -
                - -
                -
                - $params - : array<string|int, mixed> - = []
                -
                -

                Additional URL parameters

                -
                - -
                -
                - - - - - - -
                -
                -

                - requireAuth() - - -

                - - -

                Require authentication - redirect to login if not authenticated

                - - - protected - requireAuth() : mixed - -
                -
                - - - - - - - - -
                -
                -

                - getErrorMessage() - - -

                - - -

                Get error message from error code

                - - - private - getErrorMessage(mixed $errorCode) : mixed - -
                -
                - - -
                Parameters
                -
                -
                - $errorCode - : mixed -
                -
                - -
                -
                - - - - - - -
                -
                -

                - getSuccessMessage() - - -

                - - -

                Get success message from success code

                - - - private - getSuccessMessage(mixed $successCode) : mixed - -
                -
                - - -
                Parameters
                -
                -
                - $successCode - : mixed -
                -
                - -
                -
                - - - - - - -
                -
                - -
                -
                -
                -
                -
                
                -        
                - -
                -
                - - - -
                -
                -
                - -
                - On this page - - -
                - -
                -
                -
                -
                -
                -

                Search results

                - -
                -
                -
                  -
                  -
                  -
                  -
                  - - -
                  - - - - - - - - diff --git a/docs/classes/Controllers-Auth-LogoutController.html b/docs/classes/Controllers-Auth-LogoutController.html deleted file mode 100644 index 425dfa10..00000000 --- a/docs/classes/Controllers-Auth-LogoutController.html +++ /dev/null @@ -1,391 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                  -

                  SAE Project Documentation

                  - - - - - -
                  - -
                  -
                  - - - - -
                  -
                  - - -
                  -

                  - LogoutController - - -
                  - in package - -
                  - - -

                  - -
                  - - -
                  - - - -

                  LogoutController - Handles user logout

                  - - - - - - - - - -

                  - Table of Contents - - -

                  - - - - - - - - - - -

                  - Methods - - -

                  -
                  -
                  - logout() - -  : mixed -
                  -
                  Logout user and destroy session
                  - -
                  - - - - - - - -
                  -

                  - Methods - - -

                  -
                  -

                  - logout() - - -

                  - - -

                  Logout user and destroy session

                  - - - public - logout() : mixed - -
                  -
                  - - - - - - - - -
                  -
                  - -
                  -
                  -
                  -
                  -
                  
                  -        
                  - -
                  -
                  - - - -
                  -
                  -
                  - -
                  - On this page - - -
                  - -
                  -
                  -
                  -
                  -
                  -

                  Search results

                  - -
                  -
                  -
                    -
                    -
                    -
                    -
                    - - -
                    - - - - - - - - diff --git a/docs/classes/Controllers-Auth-PasswordResetController.html b/docs/classes/Controllers-Auth-PasswordResetController.html deleted file mode 100644 index 70008230..00000000 --- a/docs/classes/Controllers-Auth-PasswordResetController.html +++ /dev/null @@ -1,900 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                    -

                    SAE Project Documentation

                    - - - - - -
                    - -
                    -
                    - - - - -
                    -
                    - - -
                    -

                    - PasswordResetController - - - extends BaseController - - -
                    - in package - -
                    - - -

                    - -
                    - - -
                    - - - -

                    PasswordResetController - Handles password reset functionality

                    - - - - - - - - - -

                    - Table of Contents - - -

                    - - - - - - - - - -

                    - Properties - - -

                    -
                    -
                    - $authController - -  : mixed -
                    - -
                    - -

                    - Methods - - -

                    -
                    -
                    - __construct() - -  : mixed -
                    - -
                    - forgotPassword() - -  : mixed -
                    -
                    Show forgot password page
                    - -
                    - requestReset() - -  : mixed -
                    -
                    Request password reset
                    - -
                    - resetPassword() - -  : mixed -
                    -
                    Reset password with token
                    - -
                    - showResetForm() - -  : mixed -
                    -
                    Show reset password page with token
                    - -
                    - isAuthenticated() - -  : bool -
                    -
                    Check if user is authenticated
                    - -
                    - loadView() - -  : mixed -
                    -
                    Load a view file with data
                    - -
                    - redirect() - -  : mixed -
                    -
                    Redirect to a specific action
                    - -
                    - requireAuth() - -  : mixed -
                    -
                    Require authentication - redirect to login if not authenticated
                    - -
                    - getErrorMessage() - -  : mixed -
                    -
                    Get error message from error code
                    - -
                    - - - - - - -
                    -

                    - Properties - - -

                    -
                    -

                    - $authController - - - - -

                    - - - - - - private - mixed - $authController - - - - - - - - - - -
                    -
                    - -
                    -

                    - Methods - - -

                    - -
                    -

                    - forgotPassword() - - -

                    - - -

                    Show forgot password page

                    - - - public - forgotPassword() : mixed - -
                    -
                    - - - - - - - - -
                    -
                    -

                    - requestReset() - - -

                    - - -

                    Request password reset

                    - - - public - requestReset() : mixed - -
                    -
                    - - - - - - - - -
                    -
                    -

                    - resetPassword() - - -

                    - - -

                    Reset password with token

                    - - - public - resetPassword() : mixed - -
                    -
                    - - - - - - - - -
                    -
                    -

                    - showResetForm() - - -

                    - - -

                    Show reset password page with token

                    - - - public - showResetForm() : mixed - -
                    -
                    - - - - - - - - -
                    -
                    -

                    - isAuthenticated() - - -

                    - - -

                    Check if user is authenticated

                    - - - protected - isAuthenticated() : bool - -
                    -
                    - - - - - - - -
                    -
                    Return values
                    - bool -
                    - -
                    -
                    -

                    - loadView() - - -

                    - - -

                    Load a view file with data

                    - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
                    -
                    - - -
                    Parameters
                    -
                    -
                    - $viewName - : string -
                    -
                    -

                    Name of the view file (without .php extension)

                    -
                    - -
                    -
                    - $data - : array<string|int, mixed> - = []
                    -
                    -

                    Associative array of data to pass to the view

                    -
                    - -
                    -
                    - - - - - - -
                    -
                    -

                    - redirect() - - -

                    - - -

                    Redirect to a specific action

                    - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
                    -
                    - - -
                    Parameters
                    -
                    -
                    - $action - : string -
                    -
                    -

                    Action name for routing

                    -
                    - -
                    -
                    - $params - : array<string|int, mixed> - = []
                    -
                    -

                    Additional URL parameters

                    -
                    - -
                    -
                    - - - - - - -
                    -
                    -

                    - requireAuth() - - -

                    - - -

                    Require authentication - redirect to login if not authenticated

                    - - - protected - requireAuth() : mixed - -
                    -
                    - - - - - - - - -
                    -
                    -

                    - getErrorMessage() - - -

                    - - -

                    Get error message from error code

                    - - - private - getErrorMessage(mixed $errorCode) : mixed - -
                    -
                    - - -
                    Parameters
                    -
                    -
                    - $errorCode - : mixed -
                    -
                    - -
                    -
                    - - - - - - -
                    -
                    - -
                    -
                    -
                    -
                    -
                    
                    -        
                    - -
                    -
                    - - - -
                    -
                    -
                    - -
                    - On this page - - -
                    - -
                    -
                    -
                    -
                    -
                    -

                    Search results

                    - -
                    -
                    -
                      -
                      -
                      -
                      -
                      - - -
                      - - - - - - - - diff --git a/docs/classes/Controllers-Auth-RegisterController.html b/docs/classes/Controllers-Auth-RegisterController.html deleted file mode 100644 index 58f917b7..00000000 --- a/docs/classes/Controllers-Auth-RegisterController.html +++ /dev/null @@ -1,814 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                      -

                      SAE Project Documentation

                      - - - - - -
                      - -
                      -
                      - - - - -
                      -
                      - - -
                      -

                      - RegisterController - - - extends BaseController - - -
                      - in package - -
                      - - -

                      - -
                      - - -
                      - - - -

                      RegisterController - Handles user registration

                      - - - - - - - - - -

                      - Table of Contents - - -

                      - - - - - - - - - -

                      - Properties - - -

                      -
                      -
                      - $authController - -  : mixed -
                      - -
                      - -

                      - Methods - - -

                      -
                      -
                      - __construct() - -  : mixed -
                      - -
                      - index() - -  : mixed -
                      -
                      Show registration page
                      - -
                      - register() - -  : mixed -
                      -
                      Process registration form
                      - -
                      - isAuthenticated() - -  : bool -
                      -
                      Check if user is authenticated
                      - -
                      - loadView() - -  : mixed -
                      -
                      Load a view file with data
                      - -
                      - redirect() - -  : mixed -
                      -
                      Redirect to a specific action
                      - -
                      - requireAuth() - -  : mixed -
                      -
                      Require authentication - redirect to login if not authenticated
                      - -
                      - getErrorMessage() - -  : mixed -
                      -
                      Get error message from error code
                      - -
                      - - - - - - -
                      -

                      - Properties - - -

                      -
                      -

                      - $authController - - - - -

                      - - - - - - private - mixed - $authController - - - - - - - - - - -
                      -
                      - -
                      -

                      - Methods - - -

                      -
                      -

                      - __construct() - - -

                      - - - - - public - __construct() : mixed - -
                      -
                      - - - - - - - - -
                      -
                      -

                      - index() - - -

                      - - -

                      Show registration page

                      - - - public - index() : mixed - -
                      -
                      - - - - - - - - -
                      -
                      -

                      - register() - - -

                      - - -

                      Process registration form

                      - - - public - register() : mixed - -
                      -
                      - - - - - - - - -
                      -
                      -

                      - isAuthenticated() - - -

                      - - -

                      Check if user is authenticated

                      - - - protected - isAuthenticated() : bool - -
                      -
                      - - - - - - - -
                      -
                      Return values
                      - bool -
                      - -
                      -
                      -

                      - loadView() - - -

                      - - -

                      Load a view file with data

                      - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
                      -
                      - - -
                      Parameters
                      -
                      -
                      - $viewName - : string -
                      -
                      -

                      Name of the view file (without .php extension)

                      -
                      - -
                      -
                      - $data - : array<string|int, mixed> - = []
                      -
                      -

                      Associative array of data to pass to the view

                      -
                      - -
                      -
                      - - - - - - -
                      -
                      -

                      - redirect() - - -

                      - - -

                      Redirect to a specific action

                      - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
                      -
                      - - -
                      Parameters
                      -
                      -
                      - $action - : string -
                      -
                      -

                      Action name for routing

                      -
                      - -
                      -
                      - $params - : array<string|int, mixed> - = []
                      -
                      -

                      Additional URL parameters

                      -
                      - -
                      -
                      - - - - - - -
                      -
                      -

                      - requireAuth() - - -

                      - - -

                      Require authentication - redirect to login if not authenticated

                      - - - protected - requireAuth() : mixed - -
                      -
                      - - - - - - - - -
                      -
                      -

                      - getErrorMessage() - - -

                      - - -

                      Get error message from error code

                      - - - private - getErrorMessage(mixed $errorCode) : mixed - -
                      -
                      - - -
                      Parameters
                      -
                      -
                      - $errorCode - : mixed -
                      -
                      - -
                      -
                      - - - - - - -
                      -
                      - -
                      -
                      -
                      -
                      -
                      
                      -        
                      - -
                      -
                      - - - -
                      -
                      -
                      - -
                      - On this page - - -
                      - -
                      -
                      -
                      -
                      -
                      -

                      Search results

                      - -
                      -
                      -
                        -
                        -
                        -
                        -
                        - - -
                        - - - - - - - - diff --git a/docs/classes/Controllers-User-DashboardController.html b/docs/classes/Controllers-User-DashboardController.html deleted file mode 100644 index a85d3742..00000000 --- a/docs/classes/Controllers-User-DashboardController.html +++ /dev/null @@ -1,612 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                        -

                        SAE Project Documentation

                        - - - - - -
                        - -
                        -
                        - - - - -
                        -
                        - - -
                        -

                        - DashboardController - - - extends BaseController - - -
                        - in package - -
                        - - -

                        - -
                        - - -
                        - - - -

                        DashboardController - Handles user dashboard

                        - - - - - - - - - -

                        - Table of Contents - - -

                        - - - - - - - - - - -

                        - Methods - - -

                        -
                        -
                        - index() - -  : mixed -
                        -
                        Show dashboard page
                        - -
                        - isAuthenticated() - -  : bool -
                        -
                        Check if user is authenticated
                        - -
                        - loadView() - -  : mixed -
                        -
                        Load a view file with data
                        - -
                        - redirect() - -  : mixed -
                        -
                        Redirect to a specific action
                        - -
                        - requireAuth() - -  : mixed -
                        -
                        Require authentication - redirect to login if not authenticated
                        - -
                        - - - - - - - -
                        -

                        - Methods - - -

                        -
                        -

                        - index() - - -

                        - - -

                        Show dashboard page

                        - - - public - index() : mixed - -
                        -
                        - - - - - - - - -
                        -
                        -

                        - isAuthenticated() - - -

                        - - -

                        Check if user is authenticated

                        - - - protected - isAuthenticated() : bool - -
                        -
                        - - - - - - - -
                        -
                        Return values
                        - bool -
                        - -
                        -
                        -

                        - loadView() - - -

                        - - -

                        Load a view file with data

                        - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
                        -
                        - - -
                        Parameters
                        -
                        -
                        - $viewName - : string -
                        -
                        -

                        Name of the view file (without .php extension)

                        -
                        - -
                        -
                        - $data - : array<string|int, mixed> - = []
                        -
                        -

                        Associative array of data to pass to the view

                        -
                        - -
                        -
                        - - - - - - -
                        -
                        -

                        - redirect() - - -

                        - - -

                        Redirect to a specific action

                        - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
                        -
                        - - -
                        Parameters
                        -
                        -
                        - $action - : string -
                        -
                        -

                        Action name for routing

                        -
                        - -
                        -
                        - $params - : array<string|int, mixed> - = []
                        -
                        -

                        Additional URL parameters

                        -
                        - -
                        -
                        - - - - - - -
                        -
                        -

                        - requireAuth() - - -

                        - - -

                        Require authentication - redirect to login if not authenticated

                        - - - protected - requireAuth() : mixed - -
                        -
                        - - - - - - - - -
                        -
                        - -
                        -
                        -
                        -
                        -
                        
                        -        
                        - -
                        -
                        - - - -
                        -
                        -
                        - -
                        - On this page - - -
                        - -
                        -
                        -
                        -
                        -
                        -

                        Search results

                        - -
                        -
                        -
                          -
                          -
                          -
                          -
                          - - -
                          - - - - - - - - diff --git a/docs/classes/Controllers-User-ResourceDetailsController.html b/docs/classes/Controllers-User-ResourceDetailsController.html deleted file mode 100644 index 88baf2b2..00000000 --- a/docs/classes/Controllers-User-ResourceDetailsController.html +++ /dev/null @@ -1,613 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                          -

                          SAE Project Documentation

                          - - - - - -
                          - -
                          -
                          - - - - -
                          -
                          - - -
                          -

                          - ResourceDetailsController - - - extends BaseController - - -
                          - in package - -
                          - - -

                          - -
                          - - -
                          - - - -

                          BaseController - Base controller class with common methods -All controllers should extend this class

                          - - - - - - - - - -

                          - Table of Contents - - -

                          - - - - - - - - - - -

                          - Methods - - -

                          -
                          -
                          - index() - -  : mixed -
                          -
                          Show dashboard page
                          - -
                          - isAuthenticated() - -  : bool -
                          -
                          Check if user is authenticated
                          - -
                          - loadView() - -  : mixed -
                          -
                          Load a view file with data
                          - -
                          - redirect() - -  : mixed -
                          -
                          Redirect to a specific action
                          - -
                          - requireAuth() - -  : mixed -
                          -
                          Require authentication - redirect to login if not authenticated
                          - -
                          - - - - - - - -
                          -

                          - Methods - - -

                          - -
                          -

                          - isAuthenticated() - - -

                          - - -

                          Check if user is authenticated

                          - - - protected - isAuthenticated() : bool - -
                          -
                          - - - - - - - -
                          -
                          Return values
                          - bool -
                          - -
                          -
                          -

                          - loadView() - - -

                          - - -

                          Load a view file with data

                          - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
                          -
                          - - -
                          Parameters
                          -
                          -
                          - $viewName - : string -
                          -
                          -

                          Name of the view file (without .php extension)

                          -
                          - -
                          -
                          - $data - : array<string|int, mixed> - = []
                          -
                          -

                          Associative array of data to pass to the view

                          -
                          - -
                          -
                          - - - - - - -
                          -
                          -

                          - redirect() - - -

                          - - -

                          Redirect to a specific action

                          - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
                          -
                          - - -
                          Parameters
                          -
                          -
                          - $action - : string -
                          -
                          -

                          Action name for routing

                          -
                          - -
                          -
                          - $params - : array<string|int, mixed> - = []
                          -
                          -

                          Additional URL parameters

                          -
                          - -
                          -
                          - - - - - - -
                          -
                          -

                          - requireAuth() - - -

                          - - -

                          Require authentication - redirect to login if not authenticated

                          - - - protected - requireAuth() : mixed - -
                          -
                          - - - - - - - - -
                          -
                          - -
                          -
                          -
                          -
                          -
                          
                          -        
                          - -
                          -
                          - - - -
                          -
                          -
                          - -
                          - On this page - - -
                          - -
                          -
                          -
                          -
                          -
                          -

                          Search results

                          - -
                          -
                          -
                            -
                            -
                            -
                            -
                            - - -
                            - - - - - - - - diff --git a/docs/classes/Controllers-User-ResourceListController.html b/docs/classes/Controllers-User-ResourceListController.html deleted file mode 100644 index 4711ec07..00000000 --- a/docs/classes/Controllers-User-ResourceListController.html +++ /dev/null @@ -1,613 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                            -

                            SAE Project Documentation

                            - - - - - -
                            - -
                            -
                            - - - - -
                            -
                            - - -
                            -

                            - ResourceListController - - - extends BaseController - - -
                            - in package - -
                            - - -

                            - -
                            - - -
                            - - - -

                            BaseController - Base controller class with common methods -All controllers should extend this class

                            - - - - - - - - - -

                            - Table of Contents - - -

                            - - - - - - - - - - -

                            - Methods - - -

                            -
                            -
                            - index() - -  : mixed -
                            -
                            Show dashboard page
                            - -
                            - isAuthenticated() - -  : bool -
                            -
                            Check if user is authenticated
                            - -
                            - loadView() - -  : mixed -
                            -
                            Load a view file with data
                            - -
                            - redirect() - -  : mixed -
                            -
                            Redirect to a specific action
                            - -
                            - requireAuth() - -  : mixed -
                            -
                            Require authentication - redirect to login if not authenticated
                            - -
                            - - - - - - - -
                            -

                            - Methods - - -

                            -
                            -

                            - index() - - -

                            - - -

                            Show dashboard page

                            - - - public - index() : mixed - -
                            -
                            - - - - - - - - -
                            -
                            -

                            - isAuthenticated() - - -

                            - - -

                            Check if user is authenticated

                            - - - protected - isAuthenticated() : bool - -
                            -
                            - - - - - - - -
                            -
                            Return values
                            - bool -
                            - -
                            -
                            -

                            - loadView() - - -

                            - - -

                            Load a view file with data

                            - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
                            -
                            - - -
                            Parameters
                            -
                            -
                            - $viewName - : string -
                            -
                            -

                            Name of the view file (without .php extension)

                            -
                            - -
                            -
                            - $data - : array<string|int, mixed> - = []
                            -
                            -

                            Associative array of data to pass to the view

                            -
                            - -
                            -
                            - - - - - - -
                            -
                            -

                            - redirect() - - -

                            - - -

                            Redirect to a specific action

                            - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
                            -
                            - - -
                            Parameters
                            -
                            -
                            - $action - : string -
                            -
                            -

                            Action name for routing

                            -
                            - -
                            -
                            - $params - : array<string|int, mixed> - = []
                            -
                            -

                            Additional URL parameters

                            -
                            - -
                            -
                            - - - - - - -
                            -
                            -

                            - requireAuth() - - -

                            - - -

                            Require authentication - redirect to login if not authenticated

                            - - - protected - requireAuth() : mixed - -
                            -
                            - - - - - - - - -
                            -
                            - -
                            -
                            -
                            -
                            -
                            
                            -        
                            - -
                            -
                            - - - -
                            -
                            -
                            - -
                            - On this page - - -
                            - -
                            -
                            -
                            -
                            -
                            -

                            Search results

                            - -
                            -
                            -
                              -
                              -
                              -
                              -
                              - - -
                              - - - - - - - - diff --git a/docs/classes/Controllers-User-StudentsController.html b/docs/classes/Controllers-User-StudentsController.html deleted file mode 100644 index 19c1089b..00000000 --- a/docs/classes/Controllers-User-StudentsController.html +++ /dev/null @@ -1,761 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                              -

                              SAE Project Documentation

                              - - - - - -
                              - -
                              -
                              - - - - -
                              -
                              - - -
                              -

                              - StudentsController - - - extends BaseController - - -
                              - in package - -
                              - - -

                              - -
                              - - -
                              - - - -

                              StudentsController - Handles student data API

                              - - - - - - - - - -

                              - Table of Contents - - -

                              - - - - - - - - - -

                              - Properties - - -

                              -
                              -
                              - $studentModel - -  : mixed -
                              - -
                              - -

                              - Methods - - -

                              -
                              -
                              - __construct() - -  : mixed -
                              - -
                              - getStudent() - -  : mixed -
                              -
                              Get student details and all attempts by ID
                              - -
                              - getStudents() - -  : mixed -
                              -
                              Get paginated list of students
                              - -
                              - isAuthenticated() - -  : bool -
                              -
                              Check if user is authenticated
                              - -
                              - loadView() - -  : mixed -
                              -
                              Load a view file with data
                              - -
                              - redirect() - -  : mixed -
                              -
                              Redirect to a specific action
                              - -
                              - requireAuth() - -  : mixed -
                              -
                              Require authentication - redirect to login if not authenticated
                              - -
                              - - - - - - -
                              -

                              - Properties - - -

                              -
                              -

                              - $studentModel - - - - -

                              - - - - - - private - mixed - $studentModel - - - - - - - - - - -
                              -
                              - -
                              -

                              - Methods - - -

                              -
                              -

                              - __construct() - - -

                              - - - - - public - __construct() : mixed - -
                              -
                              - - - - - - - - -
                              -
                              -

                              - getStudent() - - -

                              - - -

                              Get student details and all attempts by ID

                              - - - public - getStudent() : mixed - -
                              -
                              - - - - - - - - -
                              -
                              -

                              - getStudents() - - -

                              - - -

                              Get paginated list of students

                              - - - public - getStudents() : mixed - -
                              -
                              - - - - - - - - -
                              -
                              -

                              - isAuthenticated() - - -

                              - - -

                              Check if user is authenticated

                              - - - protected - isAuthenticated() : bool - -
                              -
                              - - - - - - - -
                              -
                              Return values
                              - bool -
                              - -
                              -
                              -

                              - loadView() - - -

                              - - -

                              Load a view file with data

                              - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
                              -
                              - - -
                              Parameters
                              -
                              -
                              - $viewName - : string -
                              -
                              -

                              Name of the view file (without .php extension)

                              -
                              - -
                              -
                              - $data - : array<string|int, mixed> - = []
                              -
                              -

                              Associative array of data to pass to the view

                              -
                              - -
                              -
                              - - - - - - -
                              -
                              -

                              - redirect() - - -

                              - - -

                              Redirect to a specific action

                              - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
                              -
                              - - -
                              Parameters
                              -
                              -
                              - $action - : string -
                              -
                              -

                              Action name for routing

                              -
                              - -
                              -
                              - $params - : array<string|int, mixed> - = []
                              -
                              -

                              Additional URL parameters

                              -
                              - -
                              -
                              - - - - - - -
                              -
                              -

                              - requireAuth() - - -

                              - - -

                              Require authentication - redirect to login if not authenticated

                              - - - protected - requireAuth() : mixed - -
                              -
                              - - - - - - - - -
                              -
                              - -
                              -
                              -
                              -
                              -
                              
                              -        
                              - -
                              -
                              - - - -
                              -
                              -
                              - -
                              - On this page - - -
                              - -
                              -
                              -
                              -
                              -
                              -

                              Search results

                              - -
                              -
                              -
                                -
                                -
                                -
                                -
                                - - -
                                - - - - - - - - diff --git a/docs/classes/Database.html b/docs/classes/Database.html deleted file mode 100644 index 7421f8a8..00000000 --- a/docs/classes/Database.html +++ /dev/null @@ -1,398 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                -

                                SAE Project Documentation

                                - - - - - -
                                - -
                                -
                                - - - - -
                                -
                                -
                                  -
                                - -
                                -

                                - Database - - -
                                - in package - -
                                - - -

                                - -
                                - - -
                                - - - -

                                Database class - Database connection manager -Handles PDO connection with configuration from .env file

                                - - - - - - - - - -

                                - Table of Contents - - -

                                - - - - - - - - - - -

                                - Methods - - -

                                -
                                -
                                - getConnection() - -  : PDO -
                                -
                                Get PDO database connection
                                - -
                                - - - - - - - -
                                -

                                - Methods - - -

                                -
                                -

                                - getConnection() - - -

                                - - -

                                Get PDO database connection

                                - - - public - static getConnection() : PDO - -
                                -
                                - - - - - - - -
                                -
                                Return values
                                - PDO - — -

                                Database connection instance

                                -
                                - -
                                - -
                                -
                                - -
                                -
                                -
                                -
                                -
                                
                                -        
                                - -
                                -
                                - - - -
                                -
                                -
                                - -
                                - On this page - - -
                                - -
                                -
                                -
                                -
                                -
                                -

                                Search results

                                - -
                                -
                                -
                                  -
                                  -
                                  -
                                  -
                                  - - -
                                  - - - - - - - - diff --git a/docs/classes/Dataset.html b/docs/classes/Dataset.html deleted file mode 100644 index 74d1f4bf..00000000 --- a/docs/classes/Dataset.html +++ /dev/null @@ -1,672 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                  -

                                  SAE Project Documentation

                                  - - - - - -
                                  - -
                                  -
                                  - - - - -
                                  -
                                  -
                                    -
                                  - -
                                  -

                                  - Dataset - - -
                                  - in package - -
                                  - - -

                                  - -
                                  - - -
                                  - - - -

                                  Modèle pour gérer les datasets -Utilise la structure BD existante

                                  - - - - - - - - - -

                                  - Table of Contents - - -

                                  - - - - - - - - - -

                                  - Properties - - -

                                  -
                                  -
                                  - $pdo - -  : mixed -
                                  - -
                                  - -

                                  - Methods - - -

                                  -
                                  -
                                  - __construct() - -  : mixed -
                                  - -
                                  - getAttemptsWithVectors() - -  : mixed -
                                  -
                                  Récupère toutes les tentatives d'un dataset avec vecteurs
                                  - -
                                  - getById() - -  : mixed -
                                  -
                                  Récupère un dataset par son ID
                                  - -
                                  - getByTeacher() - -  : mixed -
                                  -
                                  Récupère tous les datasets d'un enseignant
                                  - -
                                  - hasAccess() - -  : mixed -
                                  -
                                  Vérifie si l'enseignant a accès au dataset
                                  - -
                                  - - - - - - -
                                  -

                                  - Properties - - -

                                  -
                                  -

                                  - $pdo - - - - -

                                  - - - - - - private - mixed - $pdo - - - - - - - - - - -
                                  -
                                  - -
                                  -

                                  - Methods - - -

                                  -
                                  -

                                  - __construct() - - -

                                  - - - - - public - __construct() : mixed - -
                                  -
                                  - - - - - - - - -
                                  -
                                  -

                                  - getAttemptsWithVectors() - - -

                                  - - -

                                  Récupère toutes les tentatives d'un dataset avec vecteurs

                                  - - - public - getAttemptsWithVectors(mixed $datasetId) : mixed - -
                                  -
                                  - - -
                                  Parameters
                                  -
                                  -
                                  - $datasetId - : mixed -
                                  -
                                  - -
                                  -
                                  - - - - - - -
                                  -
                                  -

                                  - getById() - - -

                                  - - -

                                  Récupère un dataset par son ID

                                  - - - public - getById(mixed $datasetId) : mixed - -
                                  -
                                  - - -
                                  Parameters
                                  -
                                  -
                                  - $datasetId - : mixed -
                                  -
                                  - -
                                  -
                                  - - - - - - -
                                  -
                                  -

                                  - getByTeacher() - - -

                                  - - -

                                  Récupère tous les datasets d'un enseignant

                                  - - - public - getByTeacher(mixed $teacherId) : mixed - -
                                  -
                                  - - -
                                  Parameters
                                  -
                                  -
                                  - $teacherId - : mixed -
                                  -
                                  - -
                                  -
                                  - - - - - - -
                                  -
                                  -

                                  - hasAccess() - - -

                                  - - -

                                  Vérifie si l'enseignant a accès au dataset

                                  - - - public - hasAccess(mixed $datasetId, mixed $teacherId) : mixed - -
                                  -
                                  - - -
                                  Parameters
                                  -
                                  -
                                  - $datasetId - : mixed -
                                  -
                                  - -
                                  -
                                  - $teacherId - : mixed -
                                  -
                                  - -
                                  -
                                  - - - - - - -
                                  -
                                  - -
                                  -
                                  -
                                  -
                                  -
                                  
                                  -        
                                  - -
                                  -
                                  - - - -
                                  -
                                  -
                                  - -
                                  - On this page - - -
                                  - -
                                  -
                                  -
                                  -
                                  -
                                  -

                                  Search results

                                  - -
                                  -
                                  -
                                    -
                                    -
                                    -
                                    -
                                    - - -
                                    - - - - - - - - diff --git a/docs/classes/EmailService.html b/docs/classes/EmailService.html deleted file mode 100644 index 178248fd..00000000 --- a/docs/classes/EmailService.html +++ /dev/null @@ -1,648 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                    -

                                    SAE Project Documentation

                                    - - - - - -
                                    - -
                                    -
                                    - - - - -
                                    -
                                    -
                                      -
                                    - -
                                    -

                                    - EmailService - - -
                                    - in package - -
                                    - - -

                                    - -
                                    - - -
                                    - - - -

                                    EmailService class - Email sending service -Handles email sending with PHPMailer

                                    - - - - - - - - - -

                                    - Table of Contents - - -

                                    - - - - - - - - - -

                                    - Properties - - -

                                    -
                                    -
                                    - $env - -  : mixed -
                                    - -
                                    - -

                                    - Methods - - -

                                    -
                                    -
                                    - __construct() - -  : mixed -
                                    - -
                                    - sendResetLink() - -  : bool -
                                    -
                                    Send password reset link email
                                    - -
                                    - sendVerificationCode() - -  : bool -
                                    -
                                    Send verification code email
                                    - -
                                    - configureMail() - -  : PHPMailer -
                                    -
                                    Configure PHPMailer with SMTP settings
                                    - -
                                    - - - - - - -
                                    -

                                    - Properties - - -

                                    -
                                    -

                                    - $env - - - - -

                                    - - - - - - private - mixed - $env - - - - - - - - - - -
                                    -
                                    - -
                                    -

                                    - Methods - - -

                                    -
                                    -

                                    - __construct() - - -

                                    - - - - - public - __construct() : mixed - -
                                    -
                                    - - - - - - - - -
                                    -
                                    - - - -

                                    Send password reset link email

                                    - - - public - sendResetLink(string $recipient, string $token) : bool - -
                                    -
                                    - - -
                                    Parameters
                                    -
                                    -
                                    - $recipient - : string -
                                    -
                                    -

                                    Email recipient

                                    -
                                    - -
                                    -
                                    - $token - : string -
                                    -
                                    -

                                    Reset token

                                    -
                                    - -
                                    -
                                    - - - - - -
                                    -
                                    Return values
                                    - bool - — -

                                    Success status

                                    -
                                    - -
                                    - -
                                    -
                                    -

                                    - sendVerificationCode() - - -

                                    - - -

                                    Send verification code email

                                    - - - public - sendVerificationCode(string $recipient, string $verificationCode) : bool - -
                                    -
                                    - - -
                                    Parameters
                                    -
                                    -
                                    - $recipient - : string -
                                    -
                                    -

                                    Email recipient

                                    -
                                    - -
                                    -
                                    - $verificationCode - : string -
                                    -
                                    -

                                    Verification code to send

                                    -
                                    - -
                                    -
                                    - - - - - -
                                    -
                                    Return values
                                    - bool - — -

                                    Success status

                                    -
                                    - -
                                    - -
                                    -
                                    -

                                    - configureMail() - - -

                                    - - -

                                    Configure PHPMailer with SMTP settings

                                    - - - private - configureMail() : PHPMailer - -
                                    -
                                    - - - - - - - -
                                    -
                                    Return values
                                    - PHPMailer - — -

                                    Configured PHPMailer instance

                                    -
                                    - -
                                    - -
                                    -
                                    - -
                                    -
                                    -
                                    -
                                    -
                                    
                                    -        
                                    - -
                                    -
                                    - - - -
                                    -
                                    -
                                    - -
                                    - On this page - - -
                                    - -
                                    -
                                    -
                                    -
                                    -
                                    -

                                    Search results

                                    - -
                                    -
                                    -
                                      -
                                      -
                                      -
                                      -
                                      - - -
                                      - - - - - - - - diff --git a/docs/classes/Exercise.html b/docs/classes/Exercise.html deleted file mode 100644 index febc9ab7..00000000 --- a/docs/classes/Exercise.html +++ /dev/null @@ -1,1180 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                      -

                                      SAE Project Documentation

                                      - - - - - -
                                      - -
                                      -
                                      - - - - -
                                      -
                                      -
                                        -
                                      - -
                                      -

                                      - Exercise - - -
                                      - in package - -
                                      - - -

                                      - -
                                      - - -
                                      - - - - - - - - - - - - -

                                      - Table of Contents - - -

                                      - - - - - - - - - -

                                      - Properties - - -

                                      -
                                      -
                                      - $date_creation - -  : string -
                                      - -
                                      - $description - -  : string|null -
                                      - -
                                      - $difficulte - -  : string|null -
                                      - -
                                      - $exercise_id - -  : int -
                                      - -
                                      - $exo_name - -  : string -
                                      - -
                                      - $funcname - -  : string|null -
                                      - -
                                      - $resource_id - -  : int -
                                      - -
                                      - $solution - -  : string|null -
                                      - -
                                      - $db - -  : PDO|null -
                                      - -
                                      - -

                                      - Methods - - -

                                      -
                                      -
                                      - __construct() - -  : mixed -
                                      - -
                                      - getByDataset() - -  : mixed -
                                      -
                                      Récupère tous les exercices d'un dataset
                                      - -
                                      - getById() - -  : mixed -
                                      -
                                      Récupère un exercice par son ID
                                      - -
                                      - getExerciseById() - -  : Exercise|null -
                                      - -
                                      - getExercisesByResourceId() - -  : array<string|int, mixed> -
                                      - -
                                      - getTestCases() - -  : mixed -
                                      -
                                      Récupère les test cases d'un exercice
                                      - -
                                      - hydrate() - -  : self -
                                      - -
                                      - - - - - - -
                                      -

                                      - Properties - - -

                                      -
                                      -

                                      - $date_creation - - - - -

                                      - - - - - - public - string - $date_creation - - - - - - - - - - -
                                      -
                                      -

                                      - $description - - - - -

                                      - - - - - - public - string|null - $description - - - - - - - - - - -
                                      -
                                      -

                                      - $difficulte - - - - -

                                      - - - - - - public - string|null - $difficulte - - - - - - - - - - -
                                      -
                                      -

                                      - $exercise_id - - - - -

                                      - - - - - - public - int - $exercise_id - - - - - - - - - - -
                                      -
                                      -

                                      - $hash - - - - -

                                      - - - - - - public - string - $exo_name - - - - - - - - - - -
                                      -
                                      -

                                      - $funcname - - - - -

                                      - - - - - - public - string|null - $funcname - - - - - - - - - - -
                                      -
                                      -

                                      - $resource_id - - - - -

                                      - - - - - - public - int - $resource_id - - - - - - - - - - -
                                      -
                                      -

                                      - $solution - - - - -

                                      - - - - - - public - string|null - $solution - - - - - - - - - - -
                                      -
                                      -

                                      - $db - - - - -

                                      - - - - - - private - PDO|null - $db - - - - - - - - - - -
                                      -
                                      - -
                                      -

                                      - Methods - - -

                                      -
                                      -

                                      - __construct() - - -

                                      - - - - - public - __construct([PDO $db = null ]) : mixed - -
                                      -
                                      - - -
                                      Parameters
                                      -
                                      -
                                      - $db - : PDO - = null
                                      -
                                      - -
                                      -
                                      - - - - - - -
                                      -
                                      -

                                      - getByDataset() - - -

                                      - - -

                                      Récupère tous les exercices d'un dataset

                                      - - - public - getByDataset(mixed $datasetId, PDO $db) : mixed - -
                                      -
                                      - - -
                                      Parameters
                                      -
                                      -
                                      - $datasetId - : mixed -
                                      -
                                      - -
                                      -
                                      - $db - : PDO -
                                      -
                                      - -
                                      -
                                      - - - - - - -
                                      -
                                      -

                                      - getById() - - -

                                      - - -

                                      Récupère un exercice par son ID

                                      - - - public - getById(mixed $exerciseId, PDO $db) : mixed - -
                                      -
                                      - - -
                                      Parameters
                                      -
                                      -
                                      - $exerciseId - : mixed -
                                      -
                                      - -
                                      -
                                      - $db - : PDO -
                                      -
                                      - -
                                      -
                                      - - - - - - -
                                      -
                                      -

                                      - getExerciseById() - - -

                                      - - - - - public - static getExerciseById(PDO $db, int $exerciseId) : Exercise|null - -
                                      -
                                      - - -
                                      Parameters
                                      -
                                      -
                                      - $db - : PDO -
                                      -
                                      - -
                                      -
                                      - $exerciseId - : int -
                                      -
                                      - -
                                      -
                                      - - - - - -
                                      -
                                      Return values
                                      - Exercise|null -
                                      - -
                                      -
                                      -

                                      - getExercisesByResourceId() - - -

                                      - - - - - public - static getExercisesByResourceId(PDO $db, int $resourceId) : array<string|int, mixed> - -
                                      -
                                      - - -
                                      Parameters
                                      -
                                      -
                                      - $db - : PDO -
                                      -
                                      - -
                                      -
                                      - $resourceId - : int -
                                      -
                                      - -
                                      -
                                      - - - - - -
                                      -
                                      Return values
                                      - array<string|int, mixed> -
                                      - -
                                      -
                                      -

                                      - getTestCases() - - -

                                      - - -

                                      Récupère les test cases d'un exercice

                                      - - - public - getTestCases(mixed $exerciseId, PDO $db) : mixed - -
                                      -
                                      - - -
                                      Parameters
                                      -
                                      -
                                      - $exerciseId - : mixed -
                                      -
                                      - -
                                      -
                                      - $db - : PDO -
                                      -
                                      - -
                                      -
                                      - - - - - - -
                                      -
                                      -

                                      - hydrate() - - -

                                      - - - - - public - hydrate(array<string|int, mixed> $data) : self - -
                                      -
                                      - - -
                                      Parameters
                                      -
                                      -
                                      - $data - : array<string|int, mixed> -
                                      -
                                      - -
                                      -
                                      - - - - - -
                                      -
                                      Return values
                                      - self -
                                      - -
                                      -
                                      - -
                                      -
                                      -
                                      -
                                      -
                                      
                                      -        
                                      - -
                                      -
                                      - - - -
                                      -
                                      -
                                      - -
                                      - On this page - - -
                                      - -
                                      -
                                      -
                                      -
                                      -
                                      -

                                      Search results

                                      - -
                                      -
                                      -
                                        -
                                        -
                                        -
                                        -
                                        - - -
                                        - - - - - - - - diff --git a/docs/classes/HomeController.html b/docs/classes/HomeController.html deleted file mode 100644 index 9943b69b..00000000 --- a/docs/classes/HomeController.html +++ /dev/null @@ -1,612 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                        -

                                        SAE Project Documentation

                                        - - - - - -
                                        - -
                                        -
                                        - - - - -
                                        -
                                        -
                                          -
                                        - -
                                        -

                                        - HomeController - - - extends BaseController - - -
                                        - in package - -
                                        - - -

                                        - -
                                        - - -
                                        - - - -

                                        HomeController - Handles home page routing

                                        - - - - - - - - - -

                                        - Table of Contents - - -

                                        - - - - - - - - - - -

                                        - Methods - - -

                                        -
                                        -
                                        - index() - -  : mixed -
                                        -
                                        Main index action -Redirects authenticated users to dashboard, others to public home page
                                        - -
                                        - isAuthenticated() - -  : bool -
                                        -
                                        Check if user is authenticated
                                        - -
                                        - loadView() - -  : mixed -
                                        -
                                        Load a view file with data
                                        - -
                                        - redirect() - -  : mixed -
                                        -
                                        Redirect to a specific action
                                        - -
                                        - requireAuth() - -  : mixed -
                                        -
                                        Require authentication - redirect to login if not authenticated
                                        - -
                                        - - - - - - - -
                                        -

                                        - Methods - - -

                                        -
                                        -

                                        - index() - - -

                                        - - -

                                        Main index action -Redirects authenticated users to dashboard, others to public home page

                                        - - - public - index() : mixed - -
                                        -
                                        - - - - - - - - -
                                        -
                                        -

                                        - isAuthenticated() - - -

                                        - - -

                                        Check if user is authenticated

                                        - - - protected - isAuthenticated() : bool - -
                                        -
                                        - - - - - - - -
                                        -
                                        Return values
                                        - bool -
                                        - -
                                        -
                                        -

                                        - loadView() - - -

                                        - - -

                                        Load a view file with data

                                        - - - protected - loadView(string $viewName[, array<string|int, mixed> $data = [] ]) : mixed - -
                                        -
                                        - - -
                                        Parameters
                                        -
                                        -
                                        - $viewName - : string -
                                        -
                                        -

                                        Name of the view file (without .php extension)

                                        -
                                        - -
                                        -
                                        - $data - : array<string|int, mixed> - = []
                                        -
                                        -

                                        Associative array of data to pass to the view

                                        -
                                        - -
                                        -
                                        - - - - - - -
                                        -
                                        -

                                        - redirect() - - -

                                        - - -

                                        Redirect to a specific action

                                        - - - protected - redirect(string $action[, array<string|int, mixed> $params = [] ]) : mixed - -
                                        -
                                        - - -
                                        Parameters
                                        -
                                        -
                                        - $action - : string -
                                        -
                                        -

                                        Action name for routing

                                        -
                                        - -
                                        -
                                        - $params - : array<string|int, mixed> - = []
                                        -
                                        -

                                        Additional URL parameters

                                        -
                                        - -
                                        -
                                        - - - - - - -
                                        -
                                        -

                                        - requireAuth() - - -

                                        - - -

                                        Require authentication - redirect to login if not authenticated

                                        - - - protected - requireAuth() : mixed - -
                                        -
                                        - - - - - - - - -
                                        -
                                        - -
                                        -
                                        -
                                        -
                                        -
                                        
                                        -        
                                        - -
                                        -
                                        - - - -
                                        -
                                        -
                                        - -
                                        - On this page - - -
                                        - -
                                        -
                                        -
                                        -
                                        -
                                        -

                                        Search results

                                        - -
                                        -
                                        -
                                          -
                                          -
                                          -
                                          -
                                          - - -
                                          - - - - - - - - diff --git a/docs/classes/PHPMailer-PHPMailer-DSNConfigurator.html b/docs/classes/PHPMailer-PHPMailer-DSNConfigurator.html deleted file mode 100644 index f42e37aa..00000000 --- a/docs/classes/PHPMailer-PHPMailer-DSNConfigurator.html +++ /dev/null @@ -1,875 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                          -

                                          SAE Project Documentation

                                          - - - - - -
                                          - -
                                          -
                                          - - - - -
                                          -
                                          - - -
                                          -

                                          - DSNConfigurator - - -
                                          - in package - -
                                          - - -

                                          - -
                                          - - -
                                          - - - -

                                          Configure PHPMailer with DSN string.

                                          - - - - -
                                          - Tags - - -
                                          -
                                          -
                                          - see -
                                          -
                                          - https://en.wikipedia.org/wiki/Data_source_name - - -
                                          -
                                          - author -
                                          -
                                          - -

                                          Oleg Voronkovich oleg-voronkovich@yandex.ru

                                          -
                                          - -
                                          -
                                          - - - - - -

                                          - Table of Contents - - -

                                          - - - - - - - - - - -

                                          - Methods - - -

                                          -
                                          -
                                          - configure() - -  : PHPMailer -
                                          -
                                          Configure PHPMailer instance with DSN string.
                                          - -
                                          - mailer() - -  : PHPMailer -
                                          -
                                          Create new PHPMailer instance configured by DSN.
                                          - -
                                          - parseUrl() - -  : array<string|int, mixed>|false -
                                          -
                                          Parse a URL.
                                          - -
                                          - applyConfig() - -  : mixed -
                                          -
                                          Apply configuration to mailer.
                                          - -
                                          - configureOptions() - -  : mixed -
                                          -
                                          Configure options.
                                          - -
                                          - configureSMTP() - -  : mixed -
                                          -
                                          Configure SMTP.
                                          - -
                                          - parseDSN() - -  : array<string|int, mixed> -
                                          -
                                          Parse DSN string.
                                          - -
                                          - - - - - - - -
                                          -

                                          - Methods - - -

                                          -
                                          -

                                          - configure() - - -

                                          - - -

                                          Configure PHPMailer instance with DSN string.

                                          - - - public - configure(PHPMailer $mailer, string $dsn) : PHPMailer - -
                                          -
                                          - - -
                                          Parameters
                                          -
                                          -
                                          - $mailer - : PHPMailer -
                                          -
                                          -

                                          PHPMailer instance

                                          -
                                          - -
                                          -
                                          - $dsn - : string -
                                          -
                                          -

                                          DSN

                                          -
                                          - -
                                          -
                                          - - - - - -
                                          -
                                          Return values
                                          - PHPMailer -
                                          - -
                                          -
                                          -

                                          - mailer() - - -

                                          - - -

                                          Create new PHPMailer instance configured by DSN.

                                          - - - public - static mailer(string $dsn[, bool $exceptions = null ]) : PHPMailer - -
                                          -
                                          - - -
                                          Parameters
                                          -
                                          -
                                          - $dsn - : string -
                                          -
                                          -

                                          DSN

                                          -
                                          - -
                                          -
                                          - $exceptions - : bool - = null
                                          -
                                          -

                                          Should we throw external exceptions?

                                          -
                                          - -
                                          -
                                          - - - - - -
                                          -
                                          Return values
                                          - PHPMailer -
                                          - -
                                          -
                                          -

                                          - parseUrl() - - -

                                          - - -

                                          Parse a URL.

                                          - - - protected - parseUrl(string $url) : array<string|int, mixed>|false - -
                                          -
                                          - -

                                          Wrapper for the built-in parse_url function to work around a bug in PHP 5.5.

                                          -
                                          - -
                                          Parameters
                                          -
                                          -
                                          - $url - : string -
                                          -
                                          -

                                          URL

                                          -
                                          - -
                                          -
                                          - - - - - -
                                          -
                                          Return values
                                          - array<string|int, mixed>|false -
                                          - -
                                          -
                                          -

                                          - applyConfig() - - -

                                          - - -

                                          Apply configuration to mailer.

                                          - - - private - applyConfig(PHPMailer $mailer, array<string|int, mixed> $config) : mixed - -
                                          -
                                          - - -
                                          Parameters
                                          -
                                          -
                                          - $mailer - : PHPMailer -
                                          -
                                          -

                                          PHPMailer instance

                                          -
                                          - -
                                          -
                                          - $config - : array<string|int, mixed> -
                                          -
                                          -

                                          Configuration

                                          -
                                          - -
                                          -
                                          - - -
                                          - Tags - - -
                                          -
                                          -
                                          - throws -
                                          -
                                          - Exception - -

                                          If scheme is invalid

                                          -
                                          - -
                                          -
                                          - - - - -
                                          -
                                          -

                                          - configureOptions() - - -

                                          - - -

                                          Configure options.

                                          - - - private - configureOptions(PHPMailer $mailer, array<string|int, mixed> $options) : mixed - -
                                          -
                                          - - -
                                          Parameters
                                          -
                                          -
                                          - $mailer - : PHPMailer -
                                          -
                                          -

                                          PHPMailer instance

                                          -
                                          - -
                                          -
                                          - $options - : array<string|int, mixed> -
                                          -
                                          -

                                          Options

                                          -
                                          - -
                                          -
                                          - - -
                                          - Tags - - -
                                          -
                                          -
                                          - throws -
                                          -
                                          - Exception - -

                                          If option is unknown

                                          -
                                          - -
                                          -
                                          - - - - -
                                          -
                                          -

                                          - configureSMTP() - - -

                                          - - -

                                          Configure SMTP.

                                          - - - private - configureSMTP(PHPMailer $mailer, array<string|int, mixed> $config) : mixed - -
                                          -
                                          - - -
                                          Parameters
                                          -
                                          -
                                          - $mailer - : PHPMailer -
                                          -
                                          -

                                          PHPMailer instance

                                          -
                                          - -
                                          -
                                          - $config - : array<string|int, mixed> -
                                          -
                                          -

                                          Configuration

                                          -
                                          - -
                                          -
                                          - - - - - - -
                                          -
                                          -

                                          - parseDSN() - - -

                                          - - -

                                          Parse DSN string.

                                          - - - private - parseDSN(string $dsn) : array<string|int, mixed> - -
                                          -
                                          - - -
                                          Parameters
                                          -
                                          -
                                          - $dsn - : string -
                                          -
                                          -

                                          DSN

                                          -
                                          - -
                                          -
                                          - - -
                                          - Tags - - -
                                          -
                                          -
                                          - throws -
                                          -
                                          - Exception - -

                                          If DSN is malformed

                                          -
                                          - -
                                          -
                                          - - - -
                                          -
                                          Return values
                                          - array<string|int, mixed> - — -

                                          Configuration

                                          -
                                          - -
                                          - -
                                          -
                                          - -
                                          -
                                          -
                                          -
                                          -
                                          
                                          -        
                                          - -
                                          -
                                          - - - -
                                          -
                                          -
                                          - -
                                          - On this page - - -
                                          - -
                                          -
                                          -
                                          -
                                          -
                                          -

                                          Search results

                                          - -
                                          -
                                          -
                                            -
                                            -
                                            -
                                            -
                                            - - -
                                            - - - - - - - - diff --git a/docs/classes/PHPMailer-PHPMailer-Exception.html b/docs/classes/PHPMailer-PHPMailer-Exception.html deleted file mode 100644 index 5f23b0e9..00000000 --- a/docs/classes/PHPMailer-PHPMailer-Exception.html +++ /dev/null @@ -1,414 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                            -

                                            SAE Project Documentation

                                            - - - - - -
                                            - -
                                            -
                                            - - - - -
                                            -
                                            - - -
                                            -

                                            - Exception - - - extends Exception - - -
                                            - in package - -
                                            - - -

                                            - -
                                            - - -
                                            - - - -

                                            PHPMailer exception handler.

                                            - - - - -
                                            - Tags - - -
                                            -
                                            -
                                            - author -
                                            -
                                            - -

                                            Marcus Bointon phpmailer@synchromedia.co.uk

                                            -
                                            - -
                                            -
                                            - - - - - -

                                            - Table of Contents - - -

                                            - - - - - - - - - - -

                                            - Methods - - -

                                            -
                                            -
                                            - errorMessage() - -  : string -
                                            -
                                            Prettify error message output.
                                            - -
                                            - - - - - - - -
                                            -

                                            - Methods - - -

                                            -
                                            -

                                            - errorMessage() - - -

                                            - - -

                                            Prettify error message output.

                                            - - - public - errorMessage() : string - -
                                            -
                                            - - - - - - - -
                                            -
                                            Return values
                                            - string -
                                            - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            
                                            -        
                                            - -
                                            -
                                            - - - -
                                            -
                                            -
                                            - -
                                            - On this page - - -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -

                                            Search results

                                            - -
                                            -
                                            -
                                              -
                                              -
                                              -
                                              -
                                              - - -
                                              - - - - - - - - diff --git a/docs/classes/PHPMailer-PHPMailer-OAuth.html b/docs/classes/PHPMailer-PHPMailer-OAuth.html deleted file mode 100644 index 308f4520..00000000 --- a/docs/classes/PHPMailer-PHPMailer-OAuth.html +++ /dev/null @@ -1,885 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                              -

                                              SAE Project Documentation

                                              - - - - - -
                                              - -
                                              -
                                              - - - - -
                                              -
                                              - - -
                                              -

                                              - OAuth - - -
                                              - in package - -
                                              - - - implements - OAuthTokenProvider - -

                                              - -
                                              - - -
                                              - - - -

                                              OAuth - OAuth2 authentication wrapper class.

                                              - - -

                                              Uses the oauth2-client package from the League of Extraordinary Packages.

                                              -
                                              - - -
                                              - Tags - - -
                                              -
                                              -
                                              - see -
                                              -
                                              - https://oauth2-client.thephpleague.com - - -
                                              -
                                              - author -
                                              -
                                              - -

                                              Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                              -
                                              - -
                                              -
                                              - - - - - -

                                              - Table of Contents - - -

                                              - - - -

                                              - Interfaces - - -

                                              -
                                              -
                                              OAuthTokenProvider
                                              OAuthTokenProvider - OAuth2 token provider interface.
                                              - - - - - - -

                                              - Properties - - -

                                              -
                                              -
                                              - $oauthClientId - -  : string -
                                              -
                                              The client ID, generated in the app definition of the service you're connecting to.
                                              - -
                                              - $oauthClientSecret - -  : string -
                                              -
                                              The client secret, generated in the app definition of the service you're connecting to.
                                              - -
                                              - $oauthRefreshToken - -  : string -
                                              -
                                              The refresh token, used to obtain new AccessTokens.
                                              - -
                                              - $oauthToken - -  : AccessToken -
                                              -
                                              The current OAuth access token.
                                              - -
                                              - $oauthUserEmail - -  : string -
                                              -
                                              The user's email address, usually used as the login ID -and also the from address when sending email.
                                              - -
                                              - $provider - -  : AbstractProvider -
                                              -
                                              An instance of the League OAuth Client Provider.
                                              - -
                                              - -

                                              - Methods - - -

                                              -
                                              -
                                              - __construct() - -  : mixed -
                                              -
                                              OAuth constructor.
                                              - -
                                              - getOauth64() - -  : string -
                                              -
                                              Generate a base64-encoded OAuth token.
                                              - -
                                              - getGrant() - -  : RefreshToken -
                                              -
                                              Get a new RefreshToken.
                                              - -
                                              - getToken() - -  : AccessToken -
                                              -
                                              Get a new AccessToken.
                                              - -
                                              - - - - - - -
                                              -

                                              - Properties - - -

                                              -
                                              -

                                              - $oauthClientId - - - - -

                                              - - -

                                              The client ID, generated in the app definition of the service you're connecting to.

                                              - - - - protected - string - $oauthClientId - = '' - - - - - - - - - -
                                              -
                                              -

                                              - $oauthClientSecret - - - - -

                                              - - -

                                              The client secret, generated in the app definition of the service you're connecting to.

                                              - - - - protected - string - $oauthClientSecret - = '' - - - - - - - - - -
                                              -
                                              -

                                              - $oauthRefreshToken - - - - -

                                              - - -

                                              The refresh token, used to obtain new AccessTokens.

                                              - - - - protected - string - $oauthRefreshToken - = '' - - - - - - - - - -
                                              -
                                              -

                                              - $oauthToken - - - - -

                                              - - -

                                              The current OAuth access token.

                                              - - - - protected - AccessToken - $oauthToken - - - - - - - - - - -
                                              -
                                              -

                                              - $oauthUserEmail - - - - -

                                              - - -

                                              The user's email address, usually used as the login ID -and also the from address when sending email.

                                              - - - - protected - string - $oauthUserEmail - = '' - - - - - - - - - -
                                              -
                                              -

                                              - $provider - - - - -

                                              - - -

                                              An instance of the League OAuth Client Provider.

                                              - - - - protected - AbstractProvider - $provider - - - - - - - - - - -
                                              -
                                              - -
                                              -

                                              - Methods - - -

                                              -
                                              -

                                              - __construct() - - -

                                              - - -

                                              OAuth constructor.

                                              - - - public - __construct(array<string|int, mixed> $options) : mixed - -
                                              -
                                              - - -
                                              Parameters
                                              -
                                              -
                                              - $options - : array<string|int, mixed> -
                                              -
                                              -

                                              Associative array containing -provider, userName, clientSecret, clientId and refreshToken elements

                                              -
                                              - -
                                              -
                                              - - - - - - -
                                              -
                                              -

                                              - getOauth64() - - -

                                              - - -

                                              Generate a base64-encoded OAuth token.

                                              - - - public - getOauth64() : string - -
                                              -
                                              - - - - - - - -
                                              -
                                              Return values
                                              - string -
                                              - -
                                              -
                                              -

                                              - getGrant() - - -

                                              - - -

                                              Get a new RefreshToken.

                                              - - - protected - getGrant() : RefreshToken - -
                                              -
                                              - - - - - - - -
                                              -
                                              Return values
                                              - RefreshToken -
                                              - -
                                              -
                                              -

                                              - getToken() - - -

                                              - - -

                                              Get a new AccessToken.

                                              - - - protected - getToken() : AccessToken - -
                                              -
                                              - - - - - - - -
                                              -
                                              Return values
                                              - AccessToken -
                                              - -
                                              -
                                              - -
                                              -
                                              -
                                              -
                                              -
                                              
                                              -        
                                              - -
                                              -
                                              - - - -
                                              -
                                              -
                                              - -
                                              - On this page - - -
                                              - -
                                              -
                                              -
                                              -
                                              -
                                              -

                                              Search results

                                              - -
                                              -
                                              -
                                                -
                                                -
                                                -
                                                -
                                                - - -
                                                - - - - - - - - diff --git a/docs/classes/PHPMailer-PHPMailer-OAuthTokenProvider.html b/docs/classes/PHPMailer-PHPMailer-OAuthTokenProvider.html deleted file mode 100644 index 59d960e0..00000000 --- a/docs/classes/PHPMailer-PHPMailer-OAuthTokenProvider.html +++ /dev/null @@ -1,431 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                -

                                                SAE Project Documentation

                                                - - - - - -
                                                - -
                                                -
                                                - - - - -
                                                -
                                                - - -
                                                -

                                                - OAuthTokenProvider -
                                                - in - -
                                                -

                                                - - - -

                                                OAuthTokenProvider - OAuth2 token provider interface.

                                                - - -

                                                Provides base64 encoded OAuth2 auth strings for SMTP authentication.

                                                -
                                                - - -
                                                - Tags - - -
                                                -
                                                -
                                                - see -
                                                -
                                                - OAuth - - -
                                                -
                                                - see -
                                                -
                                                - SMTP::authenticate() - - -
                                                -
                                                - author -
                                                -
                                                - -

                                                Peter Scopes (pdscopes)

                                                -
                                                - -
                                                -
                                                - author -
                                                -
                                                - -

                                                Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                -
                                                - -
                                                -
                                                - - - - - -

                                                - Table of Contents - - -

                                                - - - - - - - - - - -

                                                - Methods - - -

                                                -
                                                -
                                                - getOauth64() - -  : string -
                                                -
                                                Generate a base64-encoded OAuth token ensuring that the access token has not expired.
                                                - -
                                                - - - - - - -
                                                -

                                                - Methods - - -

                                                -
                                                -

                                                - getOauth64() - - -

                                                - - -

                                                Generate a base64-encoded OAuth token ensuring that the access token has not expired.

                                                - - - public - getOauth64() : string - -
                                                -
                                                - -

                                                The string to be base 64 encoded should be in the form: -"user=<user_email_address>\001auth=Bearer <access_token>\001\001"

                                                -
                                                - - - - - - -
                                                -
                                                Return values
                                                - string -
                                                - -
                                                -
                                                - -
                                                -
                                                -
                                                -
                                                -
                                                
                                                -        
                                                - -
                                                -
                                                - - - -
                                                -
                                                -
                                                - -
                                                - On this page - - -
                                                - -
                                                -
                                                -
                                                -
                                                -
                                                -

                                                Search results

                                                - -
                                                -
                                                -
                                                  -
                                                  -
                                                  -
                                                  -
                                                  - - -
                                                  - - - - - - - - diff --git a/docs/classes/PHPMailer-PHPMailer-PHPMailer.html b/docs/classes/PHPMailer-PHPMailer-PHPMailer.html deleted file mode 100644 index 1141550a..00000000 --- a/docs/classes/PHPMailer-PHPMailer-PHPMailer.html +++ /dev/null @@ -1,14153 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                  -

                                                  SAE Project Documentation

                                                  - - - - - -
                                                  - -
                                                  -
                                                  - - - - -
                                                  -
                                                  - - -
                                                  -

                                                  - PHPMailer - - -
                                                  - in package - -
                                                  - - -

                                                  - -
                                                  - - -
                                                  - - - -

                                                  PHPMailer - PHP email creation and transport class.

                                                  - - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - author -
                                                  -
                                                  - -

                                                  Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                  -
                                                  - -
                                                  -
                                                  - author -
                                                  -
                                                  - -

                                                  Jim Jagielski (jimjag) jimjag@gmail.com

                                                  -
                                                  - -
                                                  -
                                                  - author -
                                                  -
                                                  - -

                                                  Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                  -
                                                  - -
                                                  -
                                                  - author -
                                                  -
                                                  - -

                                                  Brent R. Matzelle (original founder)

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -

                                                  - Table of Contents - - -

                                                  - - - - - - - -

                                                  - Constants - - -

                                                  -
                                                  -
                                                  - CHARSET_ASCII - -  = 'us-ascii' -
                                                  - -
                                                  - CHARSET_ISO88591 - -  = 'iso-8859-1' -
                                                  - -
                                                  - CHARSET_UTF8 - -  = 'utf-8' -
                                                  - -
                                                  - CONTENT_TYPE_MULTIPART_ALTERNATIVE - -  = 'multipart/alternative' -
                                                  - -
                                                  - CONTENT_TYPE_MULTIPART_MIXED - -  = 'multipart/mixed' -
                                                  - -
                                                  - CONTENT_TYPE_MULTIPART_RELATED - -  = 'multipart/related' -
                                                  - -
                                                  - CONTENT_TYPE_PLAINTEXT - -  = 'text/plain' -
                                                  - -
                                                  - CONTENT_TYPE_TEXT_CALENDAR - -  = 'text/calendar' -
                                                  - -
                                                  - CONTENT_TYPE_TEXT_HTML - -  = 'text/html' -
                                                  - -
                                                  - CRLF - -  = "\r\n" -
                                                  -
                                                  The SMTP standard CRLF line break.
                                                  - -
                                                  - ENCODING_7BIT - -  = '7bit' -
                                                  - -
                                                  - ENCODING_8BIT - -  = '8bit' -
                                                  - -
                                                  - ENCODING_BASE64 - -  = 'base64' -
                                                  - -
                                                  - ENCODING_BINARY - -  = 'binary' -
                                                  - -
                                                  - ENCODING_QUOTED_PRINTABLE - -  = 'quoted-printable' -
                                                  - -
                                                  - ENCRYPTION_SMTPS - -  = 'ssl' -
                                                  - -
                                                  - ENCRYPTION_STARTTLS - -  = 'tls' -
                                                  - -
                                                  - FWS - -  = ' ' -
                                                  -
                                                  "Folding White Space" a white space string used for line folding.
                                                  - -
                                                  - ICAL_METHOD_ADD - -  = 'ADD' -
                                                  - -
                                                  - ICAL_METHOD_CANCEL - -  = 'CANCEL' -
                                                  - -
                                                  - ICAL_METHOD_COUNTER - -  = 'COUNTER' -
                                                  - -
                                                  - ICAL_METHOD_DECLINECOUNTER - -  = 'DECLINECOUNTER' -
                                                  - -
                                                  - ICAL_METHOD_PUBLISH - -  = 'PUBLISH' -
                                                  - -
                                                  - ICAL_METHOD_REFRESH - -  = 'REFRESH' -
                                                  - -
                                                  - ICAL_METHOD_REPLY - -  = 'REPLY' -
                                                  - -
                                                  - ICAL_METHOD_REQUEST - -  = 'REQUEST' -
                                                  - -
                                                  - MAIL_MAX_LINE_LENGTH - -  = 63 -
                                                  -
                                                  The maximum line length supported by mail().
                                                  - -
                                                  - MAX_LINE_LENGTH - -  = 998 -
                                                  -
                                                  The maximum line length allowed by RFC 2822 section 2.1.1.
                                                  - -
                                                  - STD_LINE_LENGTH - -  = 76 -
                                                  -
                                                  The lower maximum line length allowed by RFC 2822 section 2.1.1.
                                                  - -
                                                  - STOP_CONTINUE - -  = 1 -
                                                  -
                                                  Error severity: message, likely ok to continue processing.
                                                  - -
                                                  - STOP_CRITICAL - -  = 2 -
                                                  -
                                                  Error severity: message, plus full stop, critical error reached.
                                                  - -
                                                  - STOP_MESSAGE - -  = 0 -
                                                  -
                                                  Error severity: message only, continue processing.
                                                  - -
                                                  - VERSION - -  = '6.10.0' -
                                                  -
                                                  The PHPMailer Version number.
                                                  - -
                                                  - - -

                                                  - Properties - - -

                                                  -
                                                  -
                                                  - $action_function - -  : callable|callable-string -
                                                  -
                                                  Callback Action function name.
                                                  - -
                                                  - $AllowEmpty - -  : bool -
                                                  -
                                                  Whether to allow sending messages with an empty body.
                                                  - -
                                                  - $AltBody - -  : string -
                                                  -
                                                  The plain-text message body.
                                                  - -
                                                  - $AuthType - -  : string -
                                                  -
                                                  SMTP authentication type. Options are CRAM-MD5, LOGIN, PLAIN, XOAUTH2.
                                                  - -
                                                  - $Body - -  : string -
                                                  -
                                                  An HTML or plain text message body.
                                                  - -
                                                  - $CharSet - -  : string -
                                                  -
                                                  The character set of the message.
                                                  - -
                                                  - $ConfirmReadingTo - -  : string -
                                                  -
                                                  The email address that a reading confirmation should be sent to, also known as read receipt.
                                                  - -
                                                  - $ContentType - -  : string -
                                                  -
                                                  The MIME Content-type of the message.
                                                  - -
                                                  - $Debugoutput - -  : string|callable|LoggerInterface -
                                                  -
                                                  How to handle debug output.
                                                  - -
                                                  - $DKIM_copyHeaderFields - -  : bool -
                                                  -
                                                  DKIM Copy header field values for diagnostic use.
                                                  - -
                                                  - $DKIM_domain - -  : string -
                                                  -
                                                  DKIM signing domain name.
                                                  - -
                                                  - $DKIM_extraHeaders - -  : array<string|int, mixed> -
                                                  -
                                                  DKIM Extra signing headers.
                                                  - -
                                                  - $DKIM_identity - -  : string -
                                                  -
                                                  DKIM Identity.
                                                  - -
                                                  - $DKIM_passphrase - -  : string -
                                                  -
                                                  DKIM passphrase.
                                                  - -
                                                  - $DKIM_private - -  : string -
                                                  -
                                                  DKIM private key file path.
                                                  - -
                                                  - $DKIM_private_string - -  : string -
                                                  -
                                                  DKIM private key string.
                                                  - -
                                                  - $DKIM_selector - -  : string -
                                                  -
                                                  DKIM selector.
                                                  - -
                                                  - $do_verp - -  : bool -
                                                  -
                                                  Whether to generate VERP addresses on send.
                                                  - -
                                                  - $dsn - -  : mixed -
                                                  -
                                                  Comma separated list of DSN notifications -'NEVER' under no circumstances a DSN must be returned to the sender.
                                                  - -
                                                  - $Encoding - -  : string -
                                                  -
                                                  The message encoding.
                                                  - -
                                                  - $ErrorInfo - -  : string -
                                                  -
                                                  Holds the most recent mailer error message.
                                                  - -
                                                  - $From - -  : string -
                                                  -
                                                  The From email address for the message.
                                                  - -
                                                  - $FromName - -  : string -
                                                  -
                                                  The From name of the message.
                                                  - -
                                                  - $Helo - -  : string -
                                                  -
                                                  The SMTP HELO/EHLO name used for the SMTP connection.
                                                  - -
                                                  - $Host - -  : string -
                                                  -
                                                  SMTP hosts.
                                                  - -
                                                  - $Hostname - -  : string -
                                                  -
                                                  The hostname to use in the Message-ID header and as default HELO string.
                                                  - -
                                                  - $Ical - -  : string -
                                                  -
                                                  An iCal message part body.
                                                  - -
                                                  - $Mailer - -  : string -
                                                  -
                                                  Which method to use to send mail.
                                                  - -
                                                  - $MessageDate - -  : string -
                                                  -
                                                  The message Date to be used in the Date header.
                                                  - -
                                                  - $MessageID - -  : string -
                                                  -
                                                  An ID to be used in the Message-ID header.
                                                  - -
                                                  - $Password - -  : string -
                                                  -
                                                  SMTP password.
                                                  - -
                                                  - $Port - -  : int -
                                                  -
                                                  The default SMTP server port.
                                                  - -
                                                  - $Priority - -  : int|null -
                                                  -
                                                  Email priority.
                                                  - -
                                                  - $Sender - -  : string -
                                                  -
                                                  The envelope sender of the message.
                                                  - -
                                                  - $Sendmail - -  : string -
                                                  -
                                                  The path to the sendmail program.
                                                  - -
                                                  - $SingleTo - -  : bool -
                                                  -
                                                  Whether to split multiple to addresses into multiple messages -or send them all in one message.
                                                  - -
                                                  - $SMTPAuth - -  : bool -
                                                  -
                                                  Whether to use SMTP authentication.
                                                  - -
                                                  - $SMTPAutoTLS - -  : bool -
                                                  -
                                                  Whether to enable TLS encryption automatically if a server supports it, -even if `SMTPSecure` is not set to 'tls'.
                                                  - -
                                                  - $SMTPDebug - -  : int -
                                                  -
                                                  SMTP class debug output mode.
                                                  - -
                                                  - $SMTPKeepAlive - -  : bool -
                                                  -
                                                  Whether to keep the SMTP connection open after each message.
                                                  - -
                                                  - $SMTPOptions - -  : array<string|int, mixed> -
                                                  -
                                                  Options array passed to stream_context_create when connecting via SMTP.
                                                  - -
                                                  - $SMTPSecure - -  : string -
                                                  -
                                                  What kind of encryption to use on the SMTP connection.
                                                  - -
                                                  - $Subject - -  : string -
                                                  -
                                                  The Subject of the message.
                                                  - -
                                                  - $Timeout - -  : int -
                                                  -
                                                  The SMTP server timeout in seconds.
                                                  - -
                                                  - $Username - -  : string -
                                                  -
                                                  SMTP username.
                                                  - -
                                                  - $UseSendmailOptions - -  : bool -
                                                  -
                                                  Whether mail() uses a fully sendmail-compatible MTA.
                                                  - -
                                                  - $UseSMTPUTF8 - -  : bool -
                                                  -
                                                  Whether the need for SMTPUTF8 has been detected. Set by -preSend() if necessary.
                                                  - -
                                                  - $validator - -  : string|callable -
                                                  -
                                                  Which validator to use by default when validating email addresses.
                                                  - -
                                                  - $WordWrap - -  : int -
                                                  -
                                                  Word-wrap the message body to this number of chars.
                                                  - -
                                                  - $XMailer - -  : string|null -
                                                  -
                                                  What to put in the X-Mailer header.
                                                  - -
                                                  - $all_recipients - -  : array<string|int, mixed> -
                                                  -
                                                  An array of all kinds of addresses.
                                                  - -
                                                  - $attachment - -  : array<string|int, mixed> -
                                                  -
                                                  The array of attachments.
                                                  - -
                                                  - $bcc - -  : array<string|int, mixed> -
                                                  -
                                                  The array of 'bcc' names and addresses.
                                                  - -
                                                  - $boundary - -  : array<string|int, mixed> -
                                                  -
                                                  The array of MIME boundary strings.
                                                  - -
                                                  - $cc - -  : array<string|int, mixed> -
                                                  -
                                                  The array of 'cc' names and addresses.
                                                  - -
                                                  - $CustomHeader - -  : array<string|int, mixed> -
                                                  -
                                                  The array of custom headers.
                                                  - -
                                                  - $error_count - -  : int -
                                                  -
                                                  The number of errors encountered.
                                                  - -
                                                  - $exceptions - -  : bool -
                                                  -
                                                  Whether to throw exceptions for errors.
                                                  - -
                                                  - $IcalMethods - -  : array<string|int, string> -
                                                  -
                                                  Value-array of "method" in Contenttype header "text/calendar"
                                                  - -
                                                  - $language - -  : array<string|int, mixed> -
                                                  -
                                                  The array of available text strings for the current language.
                                                  - -
                                                  - $lastMessageID - -  : string -
                                                  -
                                                  The most recent Message-ID (including angular brackets).
                                                  - -
                                                  - $LE - -  : string -
                                                  -
                                                  SMTP RFC standard line ending; Carriage Return, Line Feed.
                                                  - -
                                                  - $mailHeader - -  : string -
                                                  -
                                                  Extra headers that createHeader() doesn't fold in.
                                                  - -
                                                  - $message_type - -  : string -
                                                  -
                                                  The message's MIME type.
                                                  - -
                                                  - $MIMEBody - -  : string -
                                                  -
                                                  The complete compiled MIME message body.
                                                  - -
                                                  - $MIMEHeader - -  : string -
                                                  -
                                                  The complete compiled MIME message headers.
                                                  - -
                                                  - $oauth - -  : OAuthTokenProvider -
                                                  -
                                                  An implementation of the PHPMailer OAuthTokenProvider interface.
                                                  - -
                                                  - $RecipientsQueue - -  : array<string|int, mixed> -
                                                  -
                                                  An array of names and addresses queued for validation.
                                                  - -
                                                  - $ReplyTo - -  : array<string|int, mixed> -
                                                  -
                                                  The array of reply-to names and addresses.
                                                  - -
                                                  - $ReplyToQueue - -  : array<string|int, mixed> -
                                                  -
                                                  An array of reply-to names and addresses queued for validation.
                                                  - -
                                                  - $sign_cert_file - -  : string -
                                                  -
                                                  The S/MIME certificate file path.
                                                  - -
                                                  - $sign_extracerts_file - -  : string -
                                                  -
                                                  The optional S/MIME extra certificates ("CA Chain") file path.
                                                  - -
                                                  - $sign_key_file - -  : string -
                                                  -
                                                  The S/MIME key file path.
                                                  - -
                                                  - $sign_key_pass - -  : string -
                                                  -
                                                  The S/MIME password for the key.
                                                  - -
                                                  - $SingleToArray - -  : array<string|int, mixed> -
                                                  -
                                                  Storage for addresses when SingleTo is enabled.
                                                  - -
                                                  - $smtp - -  : SMTP -
                                                  -
                                                  An instance of the SMTP sender class.
                                                  - -
                                                  - $SMTPXClient - -  : array<string|int, mixed> -
                                                  -
                                                  SMTP SMTPXClient command attributes
                                                  - -
                                                  - $to - -  : array<string|int, mixed> -
                                                  -
                                                  The array of 'to' names and addresses.
                                                  - -
                                                  - $uniqueid - -  : string -
                                                  -
                                                  Unique ID used for message ID and boundaries.
                                                  - -
                                                  - -

                                                  - Methods - - -

                                                  -
                                                  -
                                                  - __construct() - -  : mixed -
                                                  -
                                                  Constructor.
                                                  - -
                                                  - __destruct() - -  : mixed -
                                                  -
                                                  Destructor.
                                                  - -
                                                  - _mime_types() - -  : string -
                                                  -
                                                  Get the MIME type for a file extension.
                                                  - -
                                                  - addAddress() - -  : bool -
                                                  -
                                                  Add a "To" address.
                                                  - -
                                                  - addAttachment() - -  : bool -
                                                  -
                                                  Add an attachment from a path on the filesystem.
                                                  - -
                                                  - addBCC() - -  : bool -
                                                  -
                                                  Add a "BCC" address.
                                                  - -
                                                  - addCC() - -  : bool -
                                                  -
                                                  Add a "CC" address.
                                                  - -
                                                  - addCustomHeader() - -  : bool -
                                                  -
                                                  Add a custom header.
                                                  - -
                                                  - addEmbeddedImage() - -  : bool -
                                                  -
                                                  Add an embedded (inline) attachment from a file.
                                                  - -
                                                  - addrAppend() - -  : string -
                                                  -
                                                  Create recipient headers.
                                                  - -
                                                  - addReplyTo() - -  : bool -
                                                  -
                                                  Add a "Reply-To" address.
                                                  - -
                                                  - addrFormat() - -  : string -
                                                  -
                                                  Format an address for use in a message header.
                                                  - -
                                                  - addStringAttachment() - -  : bool -
                                                  -
                                                  Add a string or binary attachment (non-filesystem).
                                                  - -
                                                  - addStringEmbeddedImage() - -  : bool -
                                                  -
                                                  Add an embedded stringified attachment.
                                                  - -
                                                  - alternativeExists() - -  : bool -
                                                  -
                                                  Check if this message has an alternative body set.
                                                  - -
                                                  - attachmentExists() - -  : bool -
                                                  -
                                                  Check if an attachment (non-inline) is present.
                                                  - -
                                                  - base64EncodeWrapMB() - -  : string -
                                                  -
                                                  Encode and wrap long multibyte strings for mail headers -without breaking lines within a character.
                                                  - -
                                                  - clearAddresses() - -  : mixed -
                                                  -
                                                  Clear all To recipients.
                                                  - -
                                                  - clearAllRecipients() - -  : mixed -
                                                  -
                                                  Clear all recipient types.
                                                  - -
                                                  - clearAttachments() - -  : mixed -
                                                  -
                                                  Clear all filesystem, string, and binary attachments.
                                                  - -
                                                  - clearBCCs() - -  : mixed -
                                                  -
                                                  Clear all BCC recipients.
                                                  - -
                                                  - clearCCs() - -  : mixed -
                                                  -
                                                  Clear all CC recipients.
                                                  - -
                                                  - clearCustomHeader() - -  : bool -
                                                  -
                                                  Clear a specific custom header by name or name and value.
                                                  - -
                                                  - clearCustomHeaders() - -  : mixed -
                                                  -
                                                  Clear all custom headers.
                                                  - -
                                                  - clearQueuedAddresses() - -  : mixed -
                                                  -
                                                  Clear queued addresses of given kind.
                                                  - -
                                                  - clearReplyTos() - -  : mixed -
                                                  -
                                                  Clear all ReplyTo recipients.
                                                  - -
                                                  - createBody() - -  : string -
                                                  -
                                                  Assemble the message body.
                                                  - -
                                                  - createHeader() - -  : string -
                                                  -
                                                  Assemble message headers.
                                                  - -
                                                  - DKIM_Add() - -  : string -
                                                  -
                                                  Create the DKIM header and body in a new message header.
                                                  - -
                                                  - DKIM_BodyC() - -  : string -
                                                  -
                                                  Generate a DKIM canonicalization body.
                                                  - -
                                                  - DKIM_HeaderC() - -  : string -
                                                  -
                                                  Generate a DKIM canonicalization header.
                                                  - -
                                                  - DKIM_QP() - -  : string -
                                                  -
                                                  Quoted-Printable-encode a DKIM header.
                                                  - -
                                                  - DKIM_Sign() - -  : string -
                                                  -
                                                  Generate a DKIM signature.
                                                  - -
                                                  - encodeHeader() - -  : string -
                                                  -
                                                  Encode a header value (not including its label) optimally.
                                                  - -
                                                  - encodeQ() - -  : string -
                                                  -
                                                  Encode a string using Q encoding.
                                                  - -
                                                  - encodeQP() - -  : string -
                                                  -
                                                  Encode a string in quoted-printable format.
                                                  - -
                                                  - encodeString() - -  : string -
                                                  -
                                                  Encode a string in requested format.
                                                  - -
                                                  - filenameToType() - -  : string -
                                                  -
                                                  Map a file name to a MIME type.
                                                  - -
                                                  - getAllRecipientAddresses() - -  : array<string|int, mixed> -
                                                  -
                                                  Allows for public read access to 'all_recipients' property.
                                                  - -
                                                  - getAttachments() - -  : array<string|int, mixed> -
                                                  -
                                                  Return the array of attachments.
                                                  - -
                                                  - getBccAddresses() - -  : array<string|int, mixed> -
                                                  -
                                                  Allows for public read access to 'bcc' property.
                                                  - -
                                                  - getBoundaries() - -  : array<string|int, mixed> -
                                                  -
                                                  Get the boundaries that this message will use
                                                  - -
                                                  - getCcAddresses() - -  : array<string|int, mixed> -
                                                  -
                                                  Allows for public read access to 'cc' property.
                                                  - -
                                                  - getCustomHeaders() - -  : array<string|int, mixed> -
                                                  -
                                                  Returns all custom headers.
                                                  - -
                                                  - getLastMessageID() - -  : string -
                                                  -
                                                  Return the Message-ID header of the last email.
                                                  - -
                                                  - getLE() - -  : string -
                                                  -
                                                  Return the current line break format string.
                                                  - -
                                                  - getMailMIME() - -  : string -
                                                  -
                                                  Get the message MIME type headers.
                                                  - -
                                                  - getOAuth() - -  : OAuthTokenProvider -
                                                  -
                                                  Get the OAuthTokenProvider instance.
                                                  - -
                                                  - getReplyToAddresses() - -  : array<string|int, mixed> -
                                                  -
                                                  Allows for public read access to 'ReplyTo' property.
                                                  - -
                                                  - getSentMIMEMessage() - -  : string -
                                                  -
                                                  Returns the whole MIME message.
                                                  - -
                                                  - getSMTPInstance() - -  : SMTP -
                                                  -
                                                  Get an instance to use for SMTP operations.
                                                  - -
                                                  - getSMTPXclientAttributes() - -  : array<string|int, mixed> -
                                                  -
                                                  Get SMTP XCLIENT attributes
                                                  - -
                                                  - getToAddresses() - -  : array<string|int, mixed> -
                                                  -
                                                  Allows for public read access to 'to' property.
                                                  - -
                                                  - getTranslations() - -  : array<string|int, mixed> -
                                                  -
                                                  Get the array of strings for the current language.
                                                  - -
                                                  - has8bitChars() - -  : bool -
                                                  -
                                                  Does a string contain any 8-bit chars (in any charset)?
                                                  - -
                                                  - hasLineLongerThanMax() - -  : bool -
                                                  -
                                                  Detect if a string contains a line longer than the maximum line length -allowed by RFC 2822 section 2.1.1.
                                                  - -
                                                  - hasMultiBytes() - -  : bool -
                                                  -
                                                  Check if a string contains multi-byte characters.
                                                  - -
                                                  - headerLine() - -  : string -
                                                  -
                                                  Format a header line.
                                                  - -
                                                  - html2text() - -  : string -
                                                  -
                                                  Convert an HTML string into plain text.
                                                  - -
                                                  - idnSupported() - -  : bool -
                                                  -
                                                  Tells whether IDNs (Internationalized Domain Names) are supported or not. This requires the -`intl` and `mbstring` PHP extensions.
                                                  - -
                                                  - inlineImageExists() - -  : bool -
                                                  -
                                                  Check if an inline attachment is present.
                                                  - -
                                                  - isError() - -  : bool -
                                                  -
                                                  Check if an error occurred.
                                                  - -
                                                  - isHTML() - -  : mixed -
                                                  -
                                                  Sets message type to HTML or plain.
                                                  - -
                                                  - isMail() - -  : mixed -
                                                  -
                                                  Send messages using PHP's mail() function.
                                                  - -
                                                  - isQmail() - -  : mixed -
                                                  -
                                                  Send messages using qmail.
                                                  - -
                                                  - isSendmail() - -  : mixed -
                                                  -
                                                  Send messages using $Sendmail.
                                                  - -
                                                  - isSMTP() - -  : mixed -
                                                  -
                                                  Send messages using SMTP.
                                                  - -
                                                  - isValidHost() - -  : bool -
                                                  -
                                                  Validate whether a string contains a valid value to use as a hostname or IP address.
                                                  - -
                                                  - mb_pathinfo() - -  : string|array<string|int, mixed> -
                                                  -
                                                  Multi-byte-safe pathinfo replacement.
                                                  - -
                                                  - msgHTML() - -  : string -
                                                  -
                                                  Create a message body from an HTML string.
                                                  - -
                                                  - needsSMTPUTF8() - -  : bool -
                                                  -
                                                  Check whether the message requires SMTPUTF8 based on what's known so far.
                                                  - -
                                                  - normalizeBreaks() - -  : string -
                                                  -
                                                  Normalize line breaks in a string.
                                                  - -
                                                  - parseAddresses() - -  : array<string|int, mixed> -
                                                  -
                                                  Parse and validate a string containing one or more RFC822-style comma-separated email addresses -of the form "display name <address>" into an array of name/address pairs.
                                                  - -
                                                  - postSend() - -  : bool -
                                                  -
                                                  Actually send a message via the selected mechanism.
                                                  - -
                                                  - preSend() - -  : bool -
                                                  -
                                                  Prepare a message for sending.
                                                  - -
                                                  - punyencodeAddress() - -  : string -
                                                  -
                                                  Converts IDN in given email address to its ASCII form, also known as punycode, if possible.
                                                  - -
                                                  - quotedString() - -  : string -
                                                  -
                                                  If a string contains any "special" characters, double-quote the name, -and escape any double quotes with a backslash.
                                                  - -
                                                  - replaceCustomHeader() - -  : bool -
                                                  -
                                                  Replace a custom header.
                                                  - -
                                                  - rfcDate() - -  : string -
                                                  -
                                                  Return an RFC 822 formatted date.
                                                  - -
                                                  - secureHeader() - -  : string -
                                                  -
                                                  Strip newlines to prevent header injection.
                                                  - -
                                                  - send() - -  : bool -
                                                  -
                                                  Create a message and send it.
                                                  - -
                                                  - set() - -  : bool -
                                                  -
                                                  Set or reset instance properties.
                                                  - -
                                                  - setBoundaries() - -  : void -
                                                  -
                                                  Set the boundaries to use for delimiting MIME parts.
                                                  - -
                                                  - setFrom() - -  : bool -
                                                  -
                                                  Set the From and FromName properties.
                                                  - -
                                                  - setLanguage() - -  : bool -
                                                  -
                                                  Set the language for error messages.
                                                  - -
                                                  - setOAuth() - -  : mixed -
                                                  -
                                                  Set an OAuthTokenProvider instance.
                                                  - -
                                                  - setSMTPInstance() - -  : SMTP -
                                                  -
                                                  Provide an instance to use for SMTP operations.
                                                  - -
                                                  - setSMTPXclientAttribute() - -  : bool -
                                                  -
                                                  Provide SMTP XCLIENT attributes
                                                  - -
                                                  - setWordWrap() - -  : mixed -
                                                  -
                                                  Apply word wrapping to the message body.
                                                  - -
                                                  - sign() - -  : mixed -
                                                  -
                                                  Set the public and private key files and password for S/MIME signing.
                                                  - -
                                                  - smtpClose() - -  : mixed -
                                                  -
                                                  Close the active SMTP session if one exists.
                                                  - -
                                                  - smtpConnect() - -  : bool -
                                                  -
                                                  Initiate a connection to an SMTP server.
                                                  - -
                                                  - stripTrailingBreaks() - -  : string -
                                                  -
                                                  Strip trailing line breaks from a string.
                                                  - -
                                                  - stripTrailingWSP() - -  : string -
                                                  -
                                                  Remove trailing whitespace from a string.
                                                  - -
                                                  - textLine() - -  : string -
                                                  -
                                                  Return a formatted mail line.
                                                  - -
                                                  - utf8CharBoundary() - -  : int -
                                                  -
                                                  Find the last character boundary prior to $maxLength in a utf-8 -quoted-printable encoded string.
                                                  - -
                                                  - validateAddress() - -  : bool -
                                                  -
                                                  Check that a string looks like an email address.
                                                  - -
                                                  - wrapText() - -  : string -
                                                  -
                                                  Word-wrap message.
                                                  - -
                                                  - addAnAddress() - -  : bool -
                                                  -
                                                  Add an address to one of the recipient arrays or to the ReplyTo array.
                                                  - -
                                                  - addOrEnqueueAnAddress() - -  : bool -
                                                  -
                                                  Add an address to one of the recipient arrays or to the ReplyTo array. Because PHPMailer -can't validate addresses with an IDN without knowing the PHPMailer::$CharSet (that can still -be modified after calling this function), addition of such addresses is delayed until send().
                                                  - -
                                                  - addressHasUnicodeLocalPart() - -  : bool -
                                                  -
                                                  Check whether the supplied address uses Unicode in the local part.
                                                  - -
                                                  - anyAddressHasUnicodeLocalPart() - -  : bool -
                                                  -
                                                  Check whether any of the supplied addresses use Unicode in the local part.
                                                  - -
                                                  - attachAll() - -  : string -
                                                  -
                                                  Attach all file, string, and binary attachments to the message.
                                                  - -
                                                  - cidExists() - -  : bool -
                                                  -
                                                  Check if an embedded attachment is present with this cid.
                                                  - -
                                                  - doCallback() - -  : mixed -
                                                  -
                                                  Perform a callback.
                                                  - -
                                                  - edebug() - -  : mixed -
                                                  -
                                                  Output debugging info via a user-defined method.
                                                  - -
                                                  - encodeFile() - -  : string -
                                                  -
                                                  Encode a file attachment in requested format.
                                                  - -
                                                  - endBoundary() - -  : string -
                                                  -
                                                  Return the end of a message boundary.
                                                  - -
                                                  - fileIsAccessible() - -  : bool -
                                                  -
                                                  Check whether a file path is safe, accessible, and readable.
                                                  - -
                                                  - generateId() - -  : string -
                                                  -
                                                  Create a unique ID to use for boundaries.
                                                  - -
                                                  - getBoundary() - -  : string -
                                                  -
                                                  Return the start of a message boundary.
                                                  - -
                                                  - isPermittedPath() - -  : bool -
                                                  -
                                                  Check whether a file path is of a permitted type.
                                                  - -
                                                  - isShellSafe() - -  : bool -
                                                  -
                                                  Fix CVE-2016-10033 and CVE-2016-10045 by disallowing potentially unsafe shell characters.
                                                  - -
                                                  - lang() - -  : string -
                                                  -
                                                  Get an error message in the current language.
                                                  - -
                                                  - mailSend() - -  : bool -
                                                  -
                                                  Send mail using the PHP mail() function.
                                                  - -
                                                  - parseSimplerAddresses() - -  : array<string|int, mixed> -
                                                  -
                                                  Parse a string containing one or more RFC822-style comma-separated email addresses -with the form "display name <address>" into an array of name/address pairs.
                                                  - -
                                                  - sendmailSend() - -  : bool -
                                                  -
                                                  Send mail using the $Sendmail program.
                                                  - -
                                                  - serverHostname() - -  : string -
                                                  -
                                                  Get the server hostname.
                                                  - -
                                                  - setError() - -  : mixed -
                                                  -
                                                  Add an error message to the error container.
                                                  - -
                                                  - setLE() - -  : mixed -
                                                  -
                                                  Set the line break format string, e.g. "\r\n".
                                                  - -
                                                  - setMessageType() - -  : mixed -
                                                  -
                                                  Set the message type.
                                                  - -
                                                  - smtpSend() - -  : bool -
                                                  -
                                                  Send mail via SMTP.
                                                  - -
                                                  - validateEncoding() - -  : bool -
                                                  -
                                                  Validate encodings.
                                                  - -
                                                  - getSmtpErrorMessage() - -  : string -
                                                  -
                                                  Build an error message starting with a generic one and adding details if possible.
                                                  - -
                                                  - mailPassthru() - -  : bool -
                                                  -
                                                  Call mail() in a safe_mode-aware fashion.
                                                  - -
                                                  - - - - -
                                                  -

                                                  - Constants - - -

                                                  -
                                                  -

                                                  - CHARSET_ASCII - - -

                                                  - - - - - - - public - mixed - CHARSET_ASCII - = 'us-ascii' - - - - - - - - - -
                                                  -
                                                  -

                                                  - CHARSET_ISO88591 - - -

                                                  - - - - - - - public - mixed - CHARSET_ISO88591 - = 'iso-8859-1' - - - - - - - - - -
                                                  -
                                                  -

                                                  - CHARSET_UTF8 - - -

                                                  - - - - - - - public - mixed - CHARSET_UTF8 - = 'utf-8' - - - - - - - - - -
                                                  -
                                                  -

                                                  - CONTENT_TYPE_MULTIPART_ALTERNATIVE - - -

                                                  - - - - - - - public - mixed - CONTENT_TYPE_MULTIPART_ALTERNATIVE - = 'multipart/alternative' - - - - - - - - - -
                                                  -
                                                  -

                                                  - CONTENT_TYPE_MULTIPART_MIXED - - -

                                                  - - - - - - - public - mixed - CONTENT_TYPE_MULTIPART_MIXED - = 'multipart/mixed' - - - - - - - - - -
                                                  -
                                                  - - - - - - - - public - mixed - CONTENT_TYPE_MULTIPART_RELATED - = 'multipart/related' - - - - - - - - - -
                                                  -
                                                  -

                                                  - CONTENT_TYPE_PLAINTEXT - - -

                                                  - - - - - - - public - mixed - CONTENT_TYPE_PLAINTEXT - = 'text/plain' - - - - - - - - - -
                                                  -
                                                  -

                                                  - CONTENT_TYPE_TEXT_CALENDAR - - -

                                                  - - - - - - - public - mixed - CONTENT_TYPE_TEXT_CALENDAR - = 'text/calendar' - - - - - - - - - -
                                                  -
                                                  -

                                                  - CONTENT_TYPE_TEXT_HTML - - -

                                                  - - - - - - - public - mixed - CONTENT_TYPE_TEXT_HTML - = 'text/html' - - - - - - - - - -
                                                  -
                                                  -

                                                  - CRLF - - -

                                                  - - - -

                                                  The SMTP standard CRLF line break.

                                                  - - - - public - mixed - CRLF - = "\r\n" - - - -

                                                  If you want to change line break format, change static::$LE, not this.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - ENCODING_7BIT - - -

                                                  - - - - - - - public - mixed - ENCODING_7BIT - = '7bit' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ENCODING_8BIT - - -

                                                  - - - - - - - public - mixed - ENCODING_8BIT - = '8bit' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ENCODING_BASE64 - - -

                                                  - - - - - - - public - mixed - ENCODING_BASE64 - = 'base64' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ENCODING_BINARY - - -

                                                  - - - - - - - public - mixed - ENCODING_BINARY - = 'binary' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ENCODING_QUOTED_PRINTABLE - - -

                                                  - - - - - - - public - mixed - ENCODING_QUOTED_PRINTABLE - = 'quoted-printable' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ENCRYPTION_SMTPS - - -

                                                  - - - - - - - public - mixed - ENCRYPTION_SMTPS - = 'ssl' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ENCRYPTION_STARTTLS - - -

                                                  - - - - - - - public - mixed - ENCRYPTION_STARTTLS - = 'tls' - - - - - - - - - -
                                                  -
                                                  -

                                                  - FWS - - -

                                                  - - - -

                                                  "Folding White Space" a white space string used for line folding.

                                                  - - - - public - mixed - FWS - = ' ' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ICAL_METHOD_ADD - - -

                                                  - - - - - - - public - mixed - ICAL_METHOD_ADD - = 'ADD' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ICAL_METHOD_CANCEL - - -

                                                  - - - - - - - public - mixed - ICAL_METHOD_CANCEL - = 'CANCEL' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ICAL_METHOD_COUNTER - - -

                                                  - - - - - - - public - mixed - ICAL_METHOD_COUNTER - = 'COUNTER' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ICAL_METHOD_DECLINECOUNTER - - -

                                                  - - - - - - - public - mixed - ICAL_METHOD_DECLINECOUNTER - = 'DECLINECOUNTER' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ICAL_METHOD_PUBLISH - - -

                                                  - - - - - - - public - mixed - ICAL_METHOD_PUBLISH - = 'PUBLISH' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ICAL_METHOD_REFRESH - - -

                                                  - - - - - - - public - mixed - ICAL_METHOD_REFRESH - = 'REFRESH' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ICAL_METHOD_REPLY - - -

                                                  - - - - - - - public - mixed - ICAL_METHOD_REPLY - = 'REPLY' - - - - - - - - - -
                                                  -
                                                  -

                                                  - ICAL_METHOD_REQUEST - - -

                                                  - - - - - - - public - mixed - ICAL_METHOD_REQUEST - = 'REQUEST' - - - - - - - - - -
                                                  -
                                                  -

                                                  - MAIL_MAX_LINE_LENGTH - - -

                                                  - - - -

                                                  The maximum line length supported by mail().

                                                  - - - - public - int - MAIL_MAX_LINE_LENGTH - = 63 - - - -

                                                  Background: mail() will sometimes corrupt messages -with headers longer than 65 chars, see #818.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - MAX_LINE_LENGTH - - -

                                                  - - - -

                                                  The maximum line length allowed by RFC 2822 section 2.1.1.

                                                  - - - - public - int - MAX_LINE_LENGTH - = 998 - - - - - - - - - -
                                                  -
                                                  -

                                                  - STD_LINE_LENGTH - - -

                                                  - - - -

                                                  The lower maximum line length allowed by RFC 2822 section 2.1.1.

                                                  - - - - public - int - STD_LINE_LENGTH - = 76 - - - -

                                                  This length does NOT include the line break -76 means that lines will be 77 or 78 chars depending on whether -the line break format is LF or CRLF; both are valid.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - STOP_CONTINUE - - -

                                                  - - - -

                                                  Error severity: message, likely ok to continue processing.

                                                  - - - - public - int - STOP_CONTINUE - = 1 - - - - - - - - - -
                                                  -
                                                  -

                                                  - STOP_CRITICAL - - -

                                                  - - - -

                                                  Error severity: message, plus full stop, critical error reached.

                                                  - - - - public - int - STOP_CRITICAL - = 2 - - - - - - - - - -
                                                  -
                                                  -

                                                  - STOP_MESSAGE - - -

                                                  - - - -

                                                  Error severity: message only, continue processing.

                                                  - - - - public - int - STOP_MESSAGE - = 0 - - - - - - - - - -
                                                  -
                                                  -

                                                  - VERSION - - -

                                                  - - - -

                                                  The PHPMailer Version number.

                                                  - - - - public - string - VERSION - = '6.10.0' - - - - - - - - - -
                                                  -
                                                  - - -
                                                  -

                                                  - Properties - - -

                                                  -
                                                  -

                                                  - $action_function - - - - -

                                                  - - -

                                                  Callback Action function name.

                                                  - - - - public - callable|callable-string - $action_function - = '' - -

                                                  The function that handles the result of the send email action. -It is called out by send() for each email sent.

                                                  -

                                                  Value can be any php callable: https://www.php.net/is_callable

                                                  -

                                                  Parameters: -bool $result result of the send action -array $to email addresses of the recipients -array $cc cc email addresses -array $bcc bcc email addresses -string $subject the subject -string $body the email body -string $from email address of sender -string $extra extra information of possible use -'smtp_transaction_id' => last smtp transaction id

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $AllowEmpty - - - - -

                                                  - - -

                                                  Whether to allow sending messages with an empty body.

                                                  - - - - public - bool - $AllowEmpty - = false - - - - - - - - - -
                                                  -
                                                  -

                                                  - $AltBody - - - - -

                                                  - - -

                                                  The plain-text message body.

                                                  - - - - public - string - $AltBody - = '' - -

                                                  This body can be read by mail clients that do not have HTML email -capability such as mutt & Eudora. -Clients that can read HTML will view the normal Body.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $AuthType - - - - -

                                                  - - -

                                                  SMTP authentication type. Options are CRAM-MD5, LOGIN, PLAIN, XOAUTH2.

                                                  - - - - public - string - $AuthType - = '' - -

                                                  If not specified, the first one from that list that the server supports will be selected.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $Body - - - - -

                                                  - - -

                                                  An HTML or plain text message body.

                                                  - - - - public - string - $Body - = '' - -

                                                  If HTML then call isHTML(true).

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $CharSet - - - - -

                                                  - - -

                                                  The character set of the message.

                                                  - - - - public - string - $CharSet - = self::CHARSET_ISO88591 - - - - - - - - - -
                                                  -
                                                  -

                                                  - $ConfirmReadingTo - - - - -

                                                  - - -

                                                  The email address that a reading confirmation should be sent to, also known as read receipt.

                                                  - - - - public - string - $ConfirmReadingTo - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $ContentType - - - - -

                                                  - - -

                                                  The MIME Content-type of the message.

                                                  - - - - public - string - $ContentType - = self::CONTENT_TYPE_PLAINTEXT - - - - - - - - - -
                                                  -
                                                  -

                                                  - $Debugoutput - - - - -

                                                  - - -

                                                  How to handle debug output.

                                                  - - - - public - string|callable|LoggerInterface - $Debugoutput - = 'echo' - -

                                                  Options:

                                                  -
                                                    -
                                                  • echo Output plain-text as-is, appropriate for CLI
                                                  • -
                                                  • html Output escaped, line breaks converted to <br>, appropriate for browser output
                                                  • -
                                                  • error_log Output to error log as configured in php.ini -By default PHPMailer will use echo if run from a cli or cli-server SAPI, html otherwise. -Alternatively, you can provide a callable expecting two params: a message string and the debug level:
                                                  • -
                                                  -
                                                  $mail->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";};
                                                  -
                                                  -

                                                  Alternatively, you can pass in an instance of a PSR-3 compatible logger, though only debug -level output is used:

                                                  -
                                                  $mail->Debugoutput = new myPsr3Logger;
                                                  -
                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - SMTP::$Debugoutput - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $DKIM_copyHeaderFields - - - - -

                                                  - - -

                                                  DKIM Copy header field values for diagnostic use.

                                                  - - - - public - bool - $DKIM_copyHeaderFields - = true - - - - - - - - - -
                                                  -
                                                  -

                                                  - $DKIM_domain - - - - -

                                                  - - -

                                                  DKIM signing domain name.

                                                  - - - - public - string - $DKIM_domain - = '' - - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - example -
                                                  -
                                                  - -

                                                  'example.com'

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $DKIM_extraHeaders - - - - -

                                                  - - -

                                                  DKIM Extra signing headers.

                                                  - - - - public - array<string|int, mixed> - $DKIM_extraHeaders - = [] - - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - example -
                                                  -
                                                  - -

                                                  ['List-Unsubscribe', 'List-Help']

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $DKIM_identity - - - - -

                                                  - - -

                                                  DKIM Identity.

                                                  - - - - public - string - $DKIM_identity - = '' - -

                                                  Usually the email address used as the source of the email.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $DKIM_passphrase - - - - -

                                                  - - -

                                                  DKIM passphrase.

                                                  - - - - public - string - $DKIM_passphrase - = '' - -

                                                  Used if your key is encrypted.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $DKIM_private - - - - -

                                                  - - -

                                                  DKIM private key file path.

                                                  - - - - public - string - $DKIM_private - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $DKIM_private_string - - - - -

                                                  - - -

                                                  DKIM private key string.

                                                  - - - - public - string - $DKIM_private_string - = '' - -

                                                  If set, takes precedence over $DKIM_private.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $DKIM_selector - - - - -

                                                  - - -

                                                  DKIM selector.

                                                  - - - - public - string - $DKIM_selector - = '' - - - - - - - - - -
                                                  - -
                                                  -

                                                  - $dsn - - - - -

                                                  - - -

                                                  Comma separated list of DSN notifications -'NEVER' under no circumstances a DSN must be returned to the sender.

                                                  - - - - public - mixed - $dsn - = '' - -

                                                  If you use NEVER all other notifications will be ignored. -'SUCCESS' will notify you when your mail has arrived at its destination. -'FAILURE' will arrive if an error occurred during delivery. -'DELAY' will notify you if there is an unusual delay in delivery, but the actual -delivery's outcome (success or failure) is not yet decided.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.rfc-editor.org/rfc/rfc3461.html#section-4.1 - -

                                                  for more information about NOTIFY

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $Encoding - - - - -

                                                  - - -

                                                  The message encoding.

                                                  - - - - public - string - $Encoding - = self::ENCODING_8BIT - -

                                                  Options: "8bit", "7bit", "binary", "base64", and "quoted-printable".

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $ErrorInfo - - - - -

                                                  - - -

                                                  Holds the most recent mailer error message.

                                                  - - - - public - string - $ErrorInfo - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $From - - - - -

                                                  - - -

                                                  The From email address for the message.

                                                  - - - - public - string - $From - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $FromName - - - - -

                                                  - - -

                                                  The From name of the message.

                                                  - - - - public - string - $FromName - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $Helo - - - - -

                                                  - - -

                                                  The SMTP HELO/EHLO name used for the SMTP connection.

                                                  - - - - public - string - $Helo - = '' - -

                                                  Default is $Hostname. If $Hostname is empty, PHPMailer attempts to find -one with the same method described above for $Hostname.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$Hostname - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $Host - - - - -

                                                  - - -

                                                  SMTP hosts.

                                                  - - - - public - string - $Host - = 'localhost' - -

                                                  Either a single hostname or multiple semicolon-delimited hostnames. -You can also specify a different port -for each host by using this format: [hostname:port] -(e.g. "smtp1.example.com:25;smtp2.example.com"). -You can also specify encryption type, for example: -(e.g. "tls://smtp1.example.com:587;ssl://smtp2.example.com:465"). -Hosts will be tried in order.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $Hostname - - - - -

                                                  - - -

                                                  The hostname to use in the Message-ID header and as default HELO string.

                                                  - - - - public - string - $Hostname - = '' - -

                                                  If empty, PHPMailer attempts to find one with, in order, -$_SERVER['SERVER_NAME'], gethostname(), php_uname('n'), or the value -'localhost.localdomain'.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$Helo - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $Ical - - - - -

                                                  - - -

                                                  An iCal message part body.

                                                  - - - - public - string - $Ical - = '' - -

                                                  Only supported in simple alt or alt_inline message types -To generate iCal event structures, use classes like EasyPeasyICS or iCalcreator.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://kigkonsult.se/iCalcreator/ - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $Mailer - - - - -

                                                  - - -

                                                  Which method to use to send mail.

                                                  - - - - public - string - $Mailer - = 'mail' - -

                                                  Options: "mail", "sendmail", or "smtp".

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $MessageDate - - - - -

                                                  - - -

                                                  The message Date to be used in the Date header.

                                                  - - - - public - string - $MessageDate - = '' - -

                                                  If empty, the current date will be added.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $MessageID - - - - -

                                                  - - -

                                                  An ID to be used in the Message-ID header.

                                                  - - - - public - string - $MessageID - = '' - -

                                                  If empty, a unique id will be generated. -You can set your own, but it must be in the format "id@domain", -as defined in RFC5322 section 3.6.4 or it will be ignored.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.rfc-editor.org/rfc/rfc5322#section-3.6.4 - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $Password - - - - -

                                                  - - -

                                                  SMTP password.

                                                  - - - - public - string - $Password - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $Port - - - - -

                                                  - - -

                                                  The default SMTP server port.

                                                  - - - - public - int - $Port - = 25 - - - - - - - - - -
                                                  -
                                                  -

                                                  - $Priority - - - - -

                                                  - - -

                                                  Email priority.

                                                  - - - - public - int|null - $Priority - - -

                                                  Options: null (default), 1 = High, 3 = Normal, 5 = low. -When null, the header is not set at all.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $Sender - - - - -

                                                  - - -

                                                  The envelope sender of the message.

                                                  - - - - public - string - $Sender - = '' - -

                                                  This will usually be turned into a Return-Path header by the receiver, -and is the address that bounces will be sent to. -If not empty, will be passed via -f to sendmail or as the 'MAIL FROM' value over SMTP.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $Sendmail - - - - -

                                                  - - -

                                                  The path to the sendmail program.

                                                  - - - - public - string - $Sendmail - = '/usr/sbin/sendmail' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $SingleTo - - - - -

                                                  - - -

                                                  Whether to split multiple to addresses into multiple messages -or send them all in one message.

                                                  - -
                                                  - -
                                                  -

                                                  PHPMailer isn't a mailing list manager!

                                                  - -
                                                  -
                                                  - - - public - bool - $SingleTo - = false - -

                                                  Only supported in mail and sendmail transports, not in SMTP.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $SMTPAuth - - - - -

                                                  - - -

                                                  Whether to use SMTP authentication.

                                                  - - - - public - bool - $SMTPAuth - = false - -

                                                  Uses the Username and Password properties.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$Username - - -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$Password - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $SMTPAutoTLS - - - - -

                                                  - - -

                                                  Whether to enable TLS encryption automatically if a server supports it, -even if `SMTPSecure` is not set to 'tls'.

                                                  - - - - public - bool - $SMTPAutoTLS - = true - -

                                                  Be aware that in PHP >= 5.6 this requires that the server's certificates are valid.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $SMTPDebug - - - - -

                                                  - - -

                                                  SMTP class debug output mode.

                                                  - - - - public - int - $SMTPDebug - = 0 - -

                                                  Debug output level. -Options:

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - -

                                                  SMTP::DEBUG_OFF: No output

                                                  -
                                                  - -
                                                  -
                                                  - see -
                                                  -
                                                  - -

                                                  SMTP::DEBUG_CLIENT: Client messages

                                                  -
                                                  - -
                                                  -
                                                  - see -
                                                  -
                                                  - -

                                                  SMTP::DEBUG_SERVER: Client and server messages

                                                  -
                                                  - -
                                                  -
                                                  - see -
                                                  -
                                                  - -

                                                  SMTP::DEBUG_CONNECTION: As SERVER plus connection status

                                                  -
                                                  - -
                                                  -
                                                  - see -
                                                  -
                                                  - -

                                                  SMTP::DEBUG_LOWLEVEL: Noisy, low-level data output, rarely needed

                                                  -
                                                  - -
                                                  -
                                                  - see -
                                                  -
                                                  - SMTP::$do_debug - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $SMTPKeepAlive - - - - -

                                                  - - -

                                                  Whether to keep the SMTP connection open after each message.

                                                  - - - - public - bool - $SMTPKeepAlive - = false - -

                                                  If this is set to true then the connection will remain open after a send, -and closing the connection will require an explicit call to smtpClose(). -It's a good idea to use this if you are sending multiple messages as it reduces overhead. -See the mailing list example for how to use it.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $SMTPOptions - - - - -

                                                  - - -

                                                  Options array passed to stream_context_create when connecting via SMTP.

                                                  - - - - public - array<string|int, mixed> - $SMTPOptions - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $SMTPSecure - - - - -

                                                  - - -

                                                  What kind of encryption to use on the SMTP connection.

                                                  - - - - public - string - $SMTPSecure - = '' - -

                                                  Options: '', static::ENCRYPTION_STARTTLS, or static::ENCRYPTION_SMTPS.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $Subject - - - - -

                                                  - - -

                                                  The Subject of the message.

                                                  - - - - public - string - $Subject - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $Timeout - - - - -

                                                  - - -

                                                  The SMTP server timeout in seconds.

                                                  - - - - public - int - $Timeout - = 300 - -

                                                  Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $Username - - - - -

                                                  - - -

                                                  SMTP username.

                                                  - - - - public - string - $Username - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $UseSendmailOptions - - - - -

                                                  - - -

                                                  Whether mail() uses a fully sendmail-compatible MTA.

                                                  - - - - public - bool - $UseSendmailOptions - = true - -

                                                  One which supports sendmail's "-oi -f" options.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $UseSMTPUTF8 - - - - -

                                                  - - -

                                                  Whether the need for SMTPUTF8 has been detected. Set by -preSend() if necessary.

                                                  - - - - public - bool - $UseSMTPUTF8 - = false - - - - - - - - - -
                                                  -
                                                  -

                                                  - $validator - - - - -

                                                  - - -

                                                  Which validator to use by default when validating email addresses.

                                                  - - - - public - static string|callable - $validator - = 'php' - -

                                                  May be a callable to inject your own validator, but there are several built-in validators. -The default validator uses PHP's FILTER_VALIDATE_EMAIL filter_var option.

                                                  -

                                                  If CharSet is UTF8, the validator is left at the default value, -and you send to addresses that use non-ASCII local parts, then -PHPMailer automatically changes to the 'eai' validator.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::validateAddress() - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $WordWrap - - - - -

                                                  - - -

                                                  Word-wrap the message body to this number of chars.

                                                  - - - - public - int - $WordWrap - = 0 - -

                                                  Set to 0 to not wrap. A useful value here is 78, for RFC2822 section 2.1.1 compliance.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - static::STD_LINE_LENGTH - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $XMailer - - - - -

                                                  - - -

                                                  What to put in the X-Mailer header.

                                                  - - - - public - string|null - $XMailer - = '' - -

                                                  Options: An empty string for PHPMailer default, whitespace/null for none, or a string to use.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $all_recipients - - - - -

                                                  - - -

                                                  An array of all kinds of addresses.

                                                  - - - - protected - array<string|int, mixed> - $all_recipients - = [] - -

                                                  Includes all of $to, $cc, $bcc.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$to - - -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$cc - - -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$bcc - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $attachment - - - - -

                                                  - - -

                                                  The array of attachments.

                                                  - - - - protected - array<string|int, mixed> - $attachment - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $bcc - - - - -

                                                  - - -

                                                  The array of 'bcc' names and addresses.

                                                  - - - - protected - array<string|int, mixed> - $bcc - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $boundary - - - - -

                                                  - - -

                                                  The array of MIME boundary strings.

                                                  - - - - protected - array<string|int, mixed> - $boundary - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $cc - - - - -

                                                  - - -

                                                  The array of 'cc' names and addresses.

                                                  - - - - protected - array<string|int, mixed> - $cc - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $CustomHeader - - - - -

                                                  - - -

                                                  The array of custom headers.

                                                  - - - - protected - array<string|int, mixed> - $CustomHeader - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $error_count - - - - -

                                                  - - -

                                                  The number of errors encountered.

                                                  - - - - protected - int - $error_count - = 0 - - - - - - - - - -
                                                  -
                                                  -

                                                  - $exceptions - - - - -

                                                  - - -

                                                  Whether to throw exceptions for errors.

                                                  - - - - protected - bool - $exceptions - = false - - - - - - - - - -
                                                  -
                                                  -

                                                  - $IcalMethods - - - - -

                                                  - - -

                                                  Value-array of "method" in Contenttype header "text/calendar"

                                                  - - - - protected - static array<string|int, string> - $IcalMethods - = [self::ICAL_METHOD_REQUEST, self::ICAL_METHOD_PUBLISH, self::ICAL_METHOD_REPLY, self::ICAL_METHOD_ADD, self::ICAL_METHOD_CANCEL, self::ICAL_METHOD_REFRESH, self::ICAL_METHOD_COUNTER, self::ICAL_METHOD_DECLINECOUNTER] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $language - - - - -

                                                  - - -

                                                  The array of available text strings for the current language.

                                                  - - - - protected - static array<string|int, mixed> - $language - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $lastMessageID - - - - -

                                                  - - -

                                                  The most recent Message-ID (including angular brackets).

                                                  - - - - protected - string - $lastMessageID - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $LE - - - - -

                                                  - - -

                                                  SMTP RFC standard line ending; Carriage Return, Line Feed.

                                                  - - - - protected - static string - $LE - = self::CRLF - - - - - - - - - -
                                                  -
                                                  -

                                                  - $mailHeader - - - - -

                                                  - - -

                                                  Extra headers that createHeader() doesn't fold in.

                                                  - - - - protected - string - $mailHeader - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $message_type - - - - -

                                                  - - -

                                                  The message's MIME type.

                                                  - - - - protected - string - $message_type - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $MIMEBody - - - - -

                                                  - - -

                                                  The complete compiled MIME message body.

                                                  - - - - protected - string - $MIMEBody - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $MIMEHeader - - - - -

                                                  - - -

                                                  The complete compiled MIME message headers.

                                                  - - - - protected - string - $MIMEHeader - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $oauth - - - - -

                                                  - - -

                                                  An implementation of the PHPMailer OAuthTokenProvider interface.

                                                  - - - - protected - OAuthTokenProvider - $oauth - - - - - - - - - - -
                                                  -
                                                  -

                                                  - $RecipientsQueue - - - - -

                                                  - - -

                                                  An array of names and addresses queued for validation.

                                                  - - - - protected - array<string|int, mixed> - $RecipientsQueue - = [] - -

                                                  In send(), valid and non duplicate entries are moved to $all_recipients -and one of $to, $cc, or $bcc. -This array is used only for addresses with IDN.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$to - - -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$cc - - -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$bcc - - -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$all_recipients - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $ReplyTo - - - - -

                                                  - - -

                                                  The array of reply-to names and addresses.

                                                  - - - - protected - array<string|int, mixed> - $ReplyTo - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $ReplyToQueue - - - - -

                                                  - - -

                                                  An array of reply-to names and addresses queued for validation.

                                                  - - - - protected - array<string|int, mixed> - $ReplyToQueue - = [] - -

                                                  In send(), valid and non duplicate entries are moved to $ReplyTo. -This array is used only for addresses with IDN.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$ReplyTo - - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  -

                                                  - $sign_cert_file - - - - -

                                                  - - -

                                                  The S/MIME certificate file path.

                                                  - - - - protected - string - $sign_cert_file - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $sign_extracerts_file - - - - -

                                                  - - -

                                                  The optional S/MIME extra certificates ("CA Chain") file path.

                                                  - - - - protected - string - $sign_extracerts_file - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $sign_key_file - - - - -

                                                  - - -

                                                  The S/MIME key file path.

                                                  - - - - protected - string - $sign_key_file - = '' - - - - - - - - - -
                                                  -
                                                  -

                                                  - $sign_key_pass - - - - -

                                                  - - -

                                                  The S/MIME password for the key.

                                                  - - - - protected - string - $sign_key_pass - = '' - -

                                                  Used only if the key is encrypted.

                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - $SingleToArray - - - - -

                                                  - - -

                                                  Storage for addresses when SingleTo is enabled.

                                                  - - - - protected - array<string|int, mixed> - $SingleToArray - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $smtp - - - - -

                                                  - - -

                                                  An instance of the SMTP sender class.

                                                  - - - - protected - SMTP - $smtp - - - - - - - - - - -
                                                  -
                                                  -

                                                  - $SMTPXClient - - - - -

                                                  - - -

                                                  SMTP SMTPXClient command attributes

                                                  - - - - protected - array<string|int, mixed> - $SMTPXClient - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $to - - - - -

                                                  - - -

                                                  The array of 'to' names and addresses.

                                                  - - - - protected - array<string|int, mixed> - $to - = [] - - - - - - - - - -
                                                  -
                                                  -

                                                  - $uniqueid - - - - -

                                                  - - -

                                                  Unique ID used for message ID and boundaries.

                                                  - - - - protected - string - $uniqueid - = '' - - - - - - - - - -
                                                  -
                                                  - -
                                                  -

                                                  - Methods - - -

                                                  -
                                                  -

                                                  - __construct() - - -

                                                  - - -

                                                  Constructor.

                                                  - - - public - __construct([bool $exceptions = null ]) : mixed - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $exceptions - : bool - = null
                                                  -
                                                  -

                                                  Should we throw external exceptions?

                                                  -
                                                  - -
                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - __destruct() - - -

                                                  - - -

                                                  Destructor.

                                                  - - - public - __destruct() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - _mime_types() - - -

                                                  - - -

                                                  Get the MIME type for a file extension.

                                                  - - - public - static _mime_types([string $ext = '' ]) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $ext - : string - = ''
                                                  -
                                                  -

                                                  File extension

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string - — -

                                                  MIME type of file

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addAddress() - - -

                                                  - - -

                                                  Add a "To" address.

                                                  - - - public - addAddress(string $address[, string $name = '' ]) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  -

                                                  The email address to send to

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  true on success, false if address already used or invalid in some way

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addAttachment() - - -

                                                  - - -

                                                  Add an attachment from a path on the filesystem.

                                                  - - - public - addAttachment(string $path[, string $name = '' ][, string $encoding = self::ENCODING_BASE64 ][, string $type = '' ][, string $disposition = 'attachment' ]) : bool - -
                                                  -
                                                  - -

                                                  Never use a user-supplied path to a file! -Returns false if the file could not be found or read. -Explicitly does not support passing URLs; PHPMailer is not an HTTP client. -If you need to do that, fetch the resource yourself and pass it in via a local file or string.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $path - : string -
                                                  -
                                                  -

                                                  Path to the attachment

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  -

                                                  Overrides the attachment name

                                                  -
                                                  - -
                                                  -
                                                  - $encoding - : string - = self::ENCODING_BASE64
                                                  -
                                                  -

                                                  File encoding (see $Encoding)

                                                  -
                                                  - -
                                                  -
                                                  - $type - : string - = ''
                                                  -
                                                  -

                                                  MIME type, e.g. image/jpeg; determined automatically from $path if not specified

                                                  -
                                                  - -
                                                  -
                                                  - $disposition - : string - = 'attachment'
                                                  -
                                                  -

                                                  Disposition to use

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - addBCC() - - -

                                                  - - -

                                                  Add a "BCC" address.

                                                  - - - public - addBCC(string $address[, string $name = '' ]) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  -

                                                  The email address to send to

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  true on success, false if address already used or invalid in some way

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addCC() - - -

                                                  - - -

                                                  Add a "CC" address.

                                                  - - - public - addCC(string $address[, string $name = '' ]) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  -

                                                  The email address to send to

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  true on success, false if address already used or invalid in some way

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addCustomHeader() - - -

                                                  - - -

                                                  Add a custom header.

                                                  - - - public - addCustomHeader(string $name[, string|null $value = null ]) : bool - -
                                                  -
                                                  - -

                                                  $name value can be overloaded to contain -both header name and value (name:value).

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $name - : string -
                                                  -
                                                  -

                                                  Custom header name

                                                  -
                                                  - -
                                                  -
                                                  - $value - : string|null - = null
                                                  -
                                                  -

                                                  Header value

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  True if a header was set successfully

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addEmbeddedImage() - - -

                                                  - - -

                                                  Add an embedded (inline) attachment from a file.

                                                  - - - public - addEmbeddedImage(string $path, string $cid[, string $name = '' ][, string $encoding = self::ENCODING_BASE64 ][, string $type = '' ][, string $disposition = 'inline' ]) : bool - -
                                                  -
                                                  - -

                                                  This can include images, sounds, and just about any other document type. -These differ from 'regular' attachments in that they are intended to be -displayed inline with the message, not just attached for download. -This is used in HTML messages that embed the images -the HTML refers to using the $cid value in img tags, for example <img src="cid:mylogo">. -Never use a user-supplied path to a file!

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $path - : string -
                                                  -
                                                  -

                                                  Path to the attachment

                                                  -
                                                  - -
                                                  -
                                                  - $cid - : string -
                                                  -
                                                  -

                                                  Content ID of the attachment; Use this to reference -the content when using an embedded image in HTML

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  -

                                                  Overrides the attachment filename

                                                  -
                                                  - -
                                                  -
                                                  - $encoding - : string - = self::ENCODING_BASE64
                                                  -
                                                  -

                                                  File encoding (see $Encoding) defaults to base64

                                                  -
                                                  - -
                                                  -
                                                  - $type - : string - = ''
                                                  -
                                                  -

                                                  File MIME type (by default mapped from the $path filename's extension)

                                                  -
                                                  - -
                                                  -
                                                  - $disposition - : string - = 'inline'
                                                  -
                                                  -

                                                  Disposition to use: inline (default) or attachment -(unlikely you want this – addAttachment() instead)

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  True on successfully adding an attachment

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addrAppend() - - -

                                                  - - -

                                                  Create recipient headers.

                                                  - - - public - addrAppend(string $type, array<string|int, mixed> $addr) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $type - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $addr - : array<string|int, mixed> -
                                                  -
                                                  -

                                                  An array of recipients, -where each recipient is a 2-element indexed array with element 0 containing an address -and element 1 containing a name, like: -[['joe@example.com', 'Joe user'], ['zoe@example.com', 'Zoe user']]

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - addReplyTo() - - -

                                                  - - -

                                                  Add a "Reply-To" address.

                                                  - - - public - addReplyTo(string $address[, string $name = '' ]) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  -

                                                  The email address to reply to

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  true on success, false if address already used or invalid in some way

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addrFormat() - - -

                                                  - - -

                                                  Format an address for use in a message header.

                                                  - - - public - addrFormat(array<string|int, mixed> $addr) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $addr - : array<string|int, mixed> -
                                                  -
                                                  -

                                                  A 2-element indexed array, element 0 containing an address, element 1 containing a name like -['joe@example.com', 'Joe user']

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - addStringAttachment() - - -

                                                  - - -

                                                  Add a string or binary attachment (non-filesystem).

                                                  - - - public - addStringAttachment(string $string, string $filename[, string $encoding = self::ENCODING_BASE64 ][, string $type = '' ][, string $disposition = 'attachment' ]) : bool - -
                                                  -
                                                  - -

                                                  This method can be used to attach ascii or binary data, -such as a BLOB record from a database.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $string - : string -
                                                  -
                                                  -

                                                  String attachment data

                                                  -
                                                  - -
                                                  -
                                                  - $filename - : string -
                                                  -
                                                  -

                                                  Name of the attachment

                                                  -
                                                  - -
                                                  -
                                                  - $encoding - : string - = self::ENCODING_BASE64
                                                  -
                                                  -

                                                  File encoding (see $Encoding)

                                                  -
                                                  - -
                                                  -
                                                  - $type - : string - = ''
                                                  -
                                                  -

                                                  File extension (MIME) type

                                                  -
                                                  - -
                                                  -
                                                  - $disposition - : string - = 'attachment'
                                                  -
                                                  -

                                                  Disposition to use

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  True on successfully adding an attachment

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addStringEmbeddedImage() - - -

                                                  - - -

                                                  Add an embedded stringified attachment.

                                                  - - - public - addStringEmbeddedImage(string $string, string $cid[, string $name = '' ][, string $encoding = self::ENCODING_BASE64 ][, string $type = '' ][, string $disposition = 'inline' ]) : bool - -
                                                  -
                                                  - -

                                                  This can include images, sounds, and just about any other document type. -If your filename doesn't contain an extension, be sure to set the $type to an appropriate MIME type.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $string - : string -
                                                  -
                                                  -

                                                  The attachment binary data

                                                  -
                                                  - -
                                                  -
                                                  - $cid - : string -
                                                  -
                                                  -

                                                  Content ID of the attachment; Use this to reference -the content when using an embedded image in HTML

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  -

                                                  A filename for the attachment. If this contains an extension, -PHPMailer will attempt to set a MIME type for the attachment. -For example 'file.jpg' would get an 'image/jpeg' MIME type.

                                                  -
                                                  - -
                                                  -
                                                  - $encoding - : string - = self::ENCODING_BASE64
                                                  -
                                                  -

                                                  File encoding (see $Encoding), defaults to 'base64'

                                                  -
                                                  - -
                                                  -
                                                  - $type - : string - = ''
                                                  -
                                                  -

                                                  MIME type - will be used in preference to any automatically derived type

                                                  -
                                                  - -
                                                  -
                                                  - $disposition - : string - = 'inline'
                                                  -
                                                  -

                                                  Disposition to use

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  True on successfully adding an attachment

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - alternativeExists() - - -

                                                  - - -

                                                  Check if this message has an alternative body set.

                                                  - - - public - alternativeExists() : bool - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - attachmentExists() - - -

                                                  - - -

                                                  Check if an attachment (non-inline) is present.

                                                  - - - public - attachmentExists() : bool - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - base64EncodeWrapMB() - - -

                                                  - - -

                                                  Encode and wrap long multibyte strings for mail headers -without breaking lines within a character.

                                                  - - - public - base64EncodeWrapMB(string $str[, string $linebreak = null ]) : string - -
                                                  -
                                                  - -

                                                  Adapted from a function by paravoid.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  -

                                                  multi-byte text to wrap encode

                                                  -
                                                  - -
                                                  -
                                                  - $linebreak - : string - = null
                                                  -
                                                  -

                                                  string to use as linefeed/end-of-line

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.php.net/manual/en/function.mb-encode-mimeheader.php#60283 - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - clearAddresses() - - -

                                                  - - -

                                                  Clear all To recipients.

                                                  - - - public - clearAddresses() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - clearAllRecipients() - - -

                                                  - - -

                                                  Clear all recipient types.

                                                  - - - public - clearAllRecipients() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - clearAttachments() - - -

                                                  - - -

                                                  Clear all filesystem, string, and binary attachments.

                                                  - - - public - clearAttachments() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - clearBCCs() - - -

                                                  - - -

                                                  Clear all BCC recipients.

                                                  - - - public - clearBCCs() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - clearCCs() - - -

                                                  - - -

                                                  Clear all CC recipients.

                                                  - - - public - clearCCs() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - clearCustomHeader() - - -

                                                  - - -

                                                  Clear a specific custom header by name or name and value.

                                                  - - - public - clearCustomHeader(string $name[, string|null $value = null ]) : bool - -
                                                  -
                                                  - -

                                                  $name value can be overloaded to contain -both header name and value (name:value).

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $name - : string -
                                                  -
                                                  -

                                                  Custom header name

                                                  -
                                                  - -
                                                  -
                                                  - $value - : string|null - = null
                                                  -
                                                  -

                                                  Header value

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  True if a header was replaced successfully

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - clearCustomHeaders() - - -

                                                  - - -

                                                  Clear all custom headers.

                                                  - - - public - clearCustomHeaders() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - clearQueuedAddresses() - - -

                                                  - - -

                                                  Clear queued addresses of given kind.

                                                  - - - public - clearQueuedAddresses(string $kind) : mixed - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $kind - : string -
                                                  -
                                                  -

                                                  'to', 'cc', or 'bcc'

                                                  -
                                                  - -
                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - clearReplyTos() - - -

                                                  - - -

                                                  Clear all ReplyTo recipients.

                                                  - - - public - clearReplyTos() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - createBody() - - -

                                                  - - -

                                                  Assemble the message body.

                                                  - - - public - createBody() : string - -
                                                  -
                                                  - -

                                                  Returns an empty string on failure.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string - — -

                                                  The assembled message body

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - createHeader() - - -

                                                  - - -

                                                  Assemble message headers.

                                                  - - - public - createHeader() : string - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - string - — -

                                                  The assembled headers

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - DKIM_Add() - - -

                                                  - - -

                                                  Create the DKIM header and body in a new message header.

                                                  - - - public - DKIM_Add(string $headers_line, string $subject, string $body) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $headers_line - : string -
                                                  -
                                                  -

                                                  Header lines

                                                  -
                                                  - -
                                                  -
                                                  - $subject - : string -
                                                  -
                                                  -

                                                  Subject

                                                  -
                                                  - -
                                                  -
                                                  - $body - : string -
                                                  -
                                                  -

                                                  Body

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - DKIM_BodyC() - - -

                                                  - - -

                                                  Generate a DKIM canonicalization body.

                                                  - - - public - DKIM_BodyC(string $body) : string - -
                                                  -
                                                  - -

                                                  Uses the 'simple' algorithm from RFC6376 section 3.4.3. -Canonicalized bodies should always use CRLF, regardless of mailer setting.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $body - : string -
                                                  -
                                                  -

                                                  Message Body

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.rfc-editor.org/rfc/rfc6376#section-3.4.3 - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - DKIM_HeaderC() - - -

                                                  - - -

                                                  Generate a DKIM canonicalization header.

                                                  - - - public - DKIM_HeaderC(string $signHeader) : string - -
                                                  -
                                                  - -

                                                  Uses the 'relaxed' algorithm from RFC6376 section 3.4.2. -Canonicalized headers should always use CRLF, regardless of mailer setting.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $signHeader - : string -
                                                  -
                                                  -

                                                  Header

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.rfc-editor.org/rfc/rfc6376#section-3.4.2 - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - DKIM_QP() - - -

                                                  - - -

                                                  Quoted-Printable-encode a DKIM header.

                                                  - - - public - DKIM_QP(string $txt) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $txt - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - DKIM_Sign() - - -

                                                  - - -

                                                  Generate a DKIM signature.

                                                  - - - public - DKIM_Sign(string $signHeader) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $signHeader - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string - — -

                                                  The DKIM signature value

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - encodeHeader() - - -

                                                  - - -

                                                  Encode a header value (not including its label) optimally.

                                                  - - - public - encodeHeader(string $str[, string $position = 'text' ]) : string - -
                                                  -
                                                  - -

                                                  Picks shortest of Q, B, or none. Result includes folding if needed. -See RFC822 definitions for phrase, comment and text positions, -and RFC2047 for inline encodings.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  -

                                                  The header value to encode

                                                  -
                                                  - -
                                                  -
                                                  - $position - : string - = 'text'
                                                  -
                                                  -

                                                  What context the string will be used in

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - encodeQ() - - -

                                                  - - -

                                                  Encode a string using Q encoding.

                                                  - - - public - encodeQ(string $str[, string $position = 'text' ]) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  -

                                                  the text to encode

                                                  -
                                                  - -
                                                  -
                                                  - $position - : string - = 'text'
                                                  -
                                                  -

                                                  Where the text is going to be used, see the RFC for what that means

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.rfc-editor.org/rfc/rfc2047#section-4.2 - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - encodeQP() - - -

                                                  - - -

                                                  Encode a string in quoted-printable format.

                                                  - - - public - encodeQP(string $string) : string - -
                                                  -
                                                  - -

                                                  According to RFC2045 section 6.7.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $string - : string -
                                                  -
                                                  -

                                                  The text to encode

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - encodeString() - - -

                                                  - - -

                                                  Encode a string in requested format.

                                                  - - - public - encodeString(string $str[, string $encoding = self::ENCODING_BASE64 ]) : string - -
                                                  -
                                                  - -

                                                  Returns an empty string on failure.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  -

                                                  The text to encode

                                                  -
                                                  - -
                                                  -
                                                  - $encoding - : string - = self::ENCODING_BASE64
                                                  -
                                                  -

                                                  The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - filenameToType() - - -

                                                  - - -

                                                  Map a file name to a MIME type.

                                                  - - - public - static filenameToType(string $filename) : string - -
                                                  -
                                                  - -

                                                  Defaults to 'application/octet-stream', i.e.. arbitrary binary data.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $filename - : string -
                                                  -
                                                  -

                                                  A file name or full path, does not need to exist as a file

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - getAllRecipientAddresses() - - -

                                                  - - -

                                                  Allows for public read access to 'all_recipients' property.

                                                  - - - public - getAllRecipientAddresses() : array<string|int, mixed> - -
                                                  -
                                                  - -

                                                  Before the send() call, queued addresses (i.e. with IDN) are not yet included.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getAttachments() - - -

                                                  - - -

                                                  Return the array of attachments.

                                                  - - - public - getAttachments() : array<string|int, mixed> - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getBccAddresses() - - -

                                                  - - -

                                                  Allows for public read access to 'bcc' property.

                                                  - - - public - getBccAddresses() : array<string|int, mixed> - -
                                                  -
                                                  - -

                                                  Before the send() call, queued addresses (i.e. with IDN) are not yet included.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getBoundaries() - - -

                                                  - - -

                                                  Get the boundaries that this message will use

                                                  - - - public - getBoundaries() : array<string|int, mixed> - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getCcAddresses() - - -

                                                  - - -

                                                  Allows for public read access to 'cc' property.

                                                  - - - public - getCcAddresses() : array<string|int, mixed> - -
                                                  -
                                                  - -

                                                  Before the send() call, queued addresses (i.e. with IDN) are not yet included.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getCustomHeaders() - - -

                                                  - - -

                                                  Returns all custom headers.

                                                  - - - public - getCustomHeaders() : array<string|int, mixed> - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getLastMessageID() - - -

                                                  - - -

                                                  Return the Message-ID header of the last email.

                                                  - - - public - getLastMessageID() : string - -
                                                  -
                                                  - -

                                                  Technically this is the value from the last time the headers were created, -but it's also the message ID of the last sent message except in -pathological cases.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - getLE() - - -

                                                  - - -

                                                  Return the current line break format string.

                                                  - - - public - static getLE() : string - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - getMailMIME() - - -

                                                  - - -

                                                  Get the message MIME type headers.

                                                  - - - public - getMailMIME() : string - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  - -
                                                  -

                                                  - getReplyToAddresses() - - -

                                                  - - -

                                                  Allows for public read access to 'ReplyTo' property.

                                                  - - - public - getReplyToAddresses() : array<string|int, mixed> - -
                                                  -
                                                  - -

                                                  Before the send() call, queued addresses (i.e. with IDN) are not yet included.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getSentMIMEMessage() - - -

                                                  - - -

                                                  Returns the whole MIME message.

                                                  - - - public - getSentMIMEMessage() : string - -
                                                  -
                                                  - -

                                                  Includes complete headers and body. -Only valid post preSend().

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::preSend() - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - getSMTPInstance() - - -

                                                  - - -

                                                  Get an instance to use for SMTP operations.

                                                  - - - public - getSMTPInstance() : SMTP - -
                                                  -
                                                  - -

                                                  Override this function to load your own SMTP implementation, -or set one with setSMTPInstance.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  Return values
                                                  - SMTP -
                                                  - -
                                                  -
                                                  -

                                                  - getSMTPXclientAttributes() - - -

                                                  - - -

                                                  Get SMTP XCLIENT attributes

                                                  - - - public - getSMTPXclientAttributes() : array<string|int, mixed> - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getToAddresses() - - -

                                                  - - -

                                                  Allows for public read access to 'to' property.

                                                  - - - public - getToAddresses() : array<string|int, mixed> - -
                                                  -
                                                  - -

                                                  Before the send() call, queued addresses (i.e. with IDN) are not yet included.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - getTranslations() - - -

                                                  - - -

                                                  Get the array of strings for the current language.

                                                  - - - public - getTranslations() : array<string|int, mixed> - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - has8bitChars() - - -

                                                  - - -

                                                  Does a string contain any 8-bit chars (in any charset)?

                                                  - - - public - has8bitChars(string $text) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $text - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - hasLineLongerThanMax() - - -

                                                  - - -

                                                  Detect if a string contains a line longer than the maximum line length -allowed by RFC 2822 section 2.1.1.

                                                  - - - public - static hasLineLongerThanMax(string $str) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - hasMultiBytes() - - -

                                                  - - -

                                                  Check if a string contains multi-byte characters.

                                                  - - - public - hasMultiBytes(string $str) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  -

                                                  multi-byte text to wrap encode

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - headerLine() - - -

                                                  - - -

                                                  Format a header line.

                                                  - - - public - headerLine(string $name, string|int $value) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $name - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $value - : string|int -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - html2text() - - -

                                                  - - -

                                                  Convert an HTML string into plain text.

                                                  - - - public - html2text(string $html[, bool|callable $advanced = false ]) : string - -
                                                  -
                                                  - -

                                                  This is used by msgHTML(). -Note - older versions of this function used a bundled advanced converter -which was removed for license reasons in #232. -Example usage:

                                                  -
                                                  //Use default conversion
                                                  -$plain = $mail->html2text($html);
                                                  -//Use your own custom converter
                                                  -$plain = $mail->html2text($html, function($html) {
                                                  -    $converter = new MyHtml2text($html);
                                                  -    return $converter->get_text();
                                                  -});
                                                  -
                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $html - : string -
                                                  -
                                                  -

                                                  The HTML text to convert

                                                  -
                                                  - -
                                                  -
                                                  - $advanced - : bool|callable - = false
                                                  -
                                                  -

                                                  Any boolean value to use the internal converter, -or provide your own callable for custom conversion. -Never* pass user-supplied data into this parameter

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - idnSupported() - - -

                                                  - - -

                                                  Tells whether IDNs (Internationalized Domain Names) are supported or not. This requires the -`intl` and `mbstring` PHP extensions.

                                                  - - - public - static idnSupported() : bool - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  true if required functions for IDN support are present

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - inlineImageExists() - - -

                                                  - - -

                                                  Check if an inline attachment is present.

                                                  - - - public - inlineImageExists() : bool - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - isError() - - -

                                                  - - -

                                                  Check if an error occurred.

                                                  - - - public - isError() : bool - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  True if an error did occur

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - isHTML() - - -

                                                  - - -

                                                  Sets message type to HTML or plain.

                                                  - - - public - isHTML([bool $isHtml = true ]) : mixed - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $isHtml - : bool - = true
                                                  -
                                                  -

                                                  True for HTML mode

                                                  -
                                                  - -
                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - isMail() - - -

                                                  - - -

                                                  Send messages using PHP's mail() function.

                                                  - - - public - isMail() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - isQmail() - - -

                                                  - - -

                                                  Send messages using qmail.

                                                  - - - public - isQmail() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - isSendmail() - - -

                                                  - - -

                                                  Send messages using $Sendmail.

                                                  - - - public - isSendmail() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - isSMTP() - - -

                                                  - - -

                                                  Send messages using SMTP.

                                                  - - - public - isSMTP() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - isValidHost() - - -

                                                  - - -

                                                  Validate whether a string contains a valid value to use as a hostname or IP address.

                                                  - - - public - static isValidHost(string $host) : bool - -
                                                  -
                                                  - -

                                                  IPv6 addresses must include [], e.g. [::1], not just ::1.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $host - : string -
                                                  -
                                                  -

                                                  The host name or IP address to check

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - mb_pathinfo() - - -

                                                  - - -

                                                  Multi-byte-safe pathinfo replacement.

                                                  - - - public - static mb_pathinfo(string $path[, int|string $options = null ]) : string|array<string|int, mixed> - -
                                                  -
                                                  - -

                                                  Drop-in replacement for pathinfo(), but multibyte- and cross-platform-safe.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $path - : string -
                                                  -
                                                  -

                                                  A filename or path, does not need to exist as a file

                                                  -
                                                  - -
                                                  -
                                                  - $options - : int|string - = null
                                                  -
                                                  -

                                                  Either a PATHINFO_* constant, -or a string name to return only the specified piece

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.php.net/manual/en/function.pathinfo.php#107461 - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string|array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - msgHTML() - - -

                                                  - - -

                                                  Create a message body from an HTML string.

                                                  - - - public - msgHTML(string $message[, string $basedir = '' ][, bool|callable $advanced = false ]) : string - -
                                                  -
                                                  - -

                                                  Automatically inlines images and creates a plain-text version by converting the HTML, -overwriting any existing values in Body and AltBody. -Do not source $message content from user input! -$basedir is prepended when handling relative URLs, e.g. and must not be empty -will look for an image file in $basedir/images/a.png and convert it to inline. -If you don't provide a $basedir, relative paths will be left untouched (and thus probably break in email) -Converts data-uri images into embedded attachments. -If you don't want to apply these transformations to your HTML, just set Body and AltBody directly.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $message - : string -
                                                  -
                                                  -

                                                  HTML message string

                                                  -
                                                  - -
                                                  -
                                                  - $basedir - : string - = ''
                                                  -
                                                  -

                                                  Absolute path to a base directory to prepend to relative paths to images

                                                  -
                                                  - -
                                                  -
                                                  - $advanced - : bool|callable - = false
                                                  -
                                                  -

                                                  Whether to use the internal HTML to text converter -or your own custom converter

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::html2text() - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string - — -

                                                  The transformed message body

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - needsSMTPUTF8() - - -

                                                  - - -

                                                  Check whether the message requires SMTPUTF8 based on what's known so far.

                                                  - - - public - needsSMTPUTF8() : bool - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - normalizeBreaks() - - -

                                                  - - -

                                                  Normalize line breaks in a string.

                                                  - - - public - static normalizeBreaks(string $text[, string $breaktype = null ]) : string - -
                                                  -
                                                  - -

                                                  Converts UNIX LF, Mac CR and Windows CRLF line breaks into a single line break format. -Defaults to CRLF (for message bodies) and preserves consecutive breaks.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $text - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $breaktype - : string - = null
                                                  -
                                                  -

                                                  What kind of line break to use; defaults to static::$LE

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - parseAddresses() - - -

                                                  - - -

                                                  Parse and validate a string containing one or more RFC822-style comma-separated email addresses -of the form "display name <address>" into an array of name/address pairs.

                                                  - - - public - static parseAddresses(string $addrstr[, bool $useimap = true ][, string $charset = self::CHARSET_ISO88591 ]) : array<string|int, mixed> - -
                                                  -
                                                  - -

                                                  Uses the imap_rfc822_parse_adrlist function if the IMAP extension is available. -Note that quotes in the name part are removed.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $addrstr - : string -
                                                  -
                                                  -

                                                  The address list string

                                                  -
                                                  - -
                                                  -
                                                  - $useimap - : bool - = true
                                                  -
                                                  -

                                                  Whether to use the IMAP extension to parse the list

                                                  -
                                                  - -
                                                  -
                                                  - $charset - : string - = self::CHARSET_ISO88591
                                                  -
                                                  -

                                                  The charset to use when decoding the address list string.

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.andrew.cmu.edu/user/agreen1/testing/mrbs/web/Mail/RFC822.php - -

                                                  A more careful implementation

                                                  -
                                                  - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - postSend() - - -

                                                  - - -

                                                  Actually send a message via the selected mechanism.

                                                  - - - public - postSend() : bool - -
                                                  -
                                                  - - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - preSend() - - -

                                                  - - -

                                                  Prepare a message for sending.

                                                  - - - public - preSend() : bool - -
                                                  -
                                                  - - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - punyencodeAddress() - - -

                                                  - - -

                                                  Converts IDN in given email address to its ASCII form, also known as punycode, if possible.

                                                  - - - public - punyencodeAddress(string $address) : string - -
                                                  -
                                                  - -

                                                  Important: Address must be passed in same encoding as currently set in PHPMailer::$CharSet. -This function silently returns unmodified address if:

                                                  -
                                                    -
                                                  • No conversion is necessary (i.e. domain name is not an IDN, or is already in ASCII form)
                                                  • -
                                                  • Conversion to punycode is impossible (e.g. required PHP functions are not available) -or fails for any reason (e.g. domain contains characters not allowed in an IDN).
                                                  • -
                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  -

                                                  The email address to convert

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$CharSet - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string - — -

                                                  The encoded address in ASCII form

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - quotedString() - - -

                                                  - - -

                                                  If a string contains any "special" characters, double-quote the name, -and escape any double quotes with a backslash.

                                                  - - - public - static quotedString(string $str) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - RFC822 - -

                                                  3.4.1

                                                  -
                                                  - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - replaceCustomHeader() - - -

                                                  - - -

                                                  Replace a custom header.

                                                  - - - public - replaceCustomHeader(string $name[, string|null $value = null ]) : bool - -
                                                  -
                                                  - -

                                                  $name value can be overloaded to contain -both header name and value (name:value).

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $name - : string -
                                                  -
                                                  -

                                                  Custom header name

                                                  -
                                                  - -
                                                  -
                                                  - $value - : string|null - = null
                                                  -
                                                  -

                                                  Header value

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  True if a header was replaced successfully

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - rfcDate() - - -

                                                  - - -

                                                  Return an RFC 822 formatted date.

                                                  - - - public - static rfcDate() : string - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - secureHeader() - - -

                                                  - - -

                                                  Strip newlines to prevent header injection.

                                                  - - - public - secureHeader(string $str) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - send() - - -

                                                  - - -

                                                  Create a message and send it.

                                                  - - - public - send() : bool - -
                                                  -
                                                  - -

                                                  Uses the sending method specified by $Mailer.

                                                  -
                                                  - - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  false on error - See the ErrorInfo property for details of the error

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - set() - - -

                                                  - - -

                                                  Set or reset instance properties.

                                                  - - - public - set(string $name[, mixed $value = '' ]) : bool - -
                                                  -
                                                  - -

                                                  You should avoid this function - it's more verbose, less efficient, more error-prone and -harder to debug than setting properties directly. -Usage Example: -$mail->set('SMTPSecure', static::ENCRYPTION_STARTTLS); -is the same as: -$mail->SMTPSecure = static::ENCRYPTION_STARTTLS;.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $name - : string -
                                                  -
                                                  -

                                                  The property name to set

                                                  -
                                                  - -
                                                  -
                                                  - $value - : mixed - = ''
                                                  -
                                                  -

                                                  The value to set the property to

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - setBoundaries() - - -

                                                  - - -

                                                  Set the boundaries to use for delimiting MIME parts.

                                                  - - - public - setBoundaries() : void - -
                                                  -
                                                  - -

                                                  If you override this, ensure you set all 3 boundaries to unique values. -The default boundaries include a "=_" sequence which cannot occur in quoted-printable bodies, -as suggested by https://www.rfc-editor.org/rfc/rfc2045#section-6.7

                                                  -
                                                  - - - - - - - -
                                                  -
                                                  -

                                                  - setFrom() - - -

                                                  - - -

                                                  Set the From and FromName properties.

                                                  - - - public - setFrom(string $address[, string $name = '' ][, bool $auto = true ]) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  - -
                                                  -
                                                  - $auto - : bool - = true
                                                  -
                                                  -

                                                  Whether to also set the Sender address, defaults to true

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - setLanguage() - - -

                                                  - - -

                                                  Set the language for error messages.

                                                  - - - public - static setLanguage([string $langcode = 'en' ][, string $lang_path = '' ]) : bool - -
                                                  -
                                                  - -

                                                  The default language is English.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $langcode - : string - = 'en'
                                                  -
                                                  -

                                                  ISO 639-1 2-character language code (e.g. French is "fr") -Optionally, the language code can be enhanced with a 4-character -script annotation and/or a 2-character country annotation.

                                                  -
                                                  - -
                                                  -
                                                  - $lang_path - : string - = ''
                                                  -
                                                  -

                                                  Path to the language file directory, with trailing separator (slash) -Do not set this from user input!

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  Returns true if the requested language was loaded, false otherwise.

                                                  -
                                                  - -
                                                  - -
                                                  - -
                                                  -

                                                  - setSMTPInstance() - - -

                                                  - - -

                                                  Provide an instance to use for SMTP operations.

                                                  - - - public - setSMTPInstance(SMTP $smtp) : SMTP - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $smtp - : SMTP -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - SMTP -
                                                  - -
                                                  -
                                                  -

                                                  - setSMTPXclientAttribute() - - -

                                                  - - -

                                                  Provide SMTP XCLIENT attributes

                                                  - - - public - setSMTPXclientAttribute(string $name, string|null $value) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $name - : string -
                                                  -
                                                  -

                                                  Attribute name

                                                  -
                                                  - -
                                                  -
                                                  - $value - : string|null -
                                                  -
                                                  -

                                                  Attribute value

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - setWordWrap() - - -

                                                  - - -

                                                  Apply word wrapping to the message body.

                                                  - - - public - setWordWrap() : mixed - -
                                                  -
                                                  - -

                                                  Wraps the message body to the number of chars set in the WordWrap property. -You should only do this to plain-text bodies as wrapping HTML tags may break them. -This is called automatically by createBody(), so you don't need to call it yourself.

                                                  -
                                                  - - - - - - - -
                                                  -
                                                  -

                                                  - sign() - - -

                                                  - - -

                                                  Set the public and private key files and password for S/MIME signing.

                                                  - - - public - sign(string $cert_filename, string $key_filename, string $key_pass[, string $extracerts_filename = '' ]) : mixed - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $cert_filename - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $key_filename - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $key_pass - : string -
                                                  -
                                                  -

                                                  Password for private key

                                                  -
                                                  - -
                                                  -
                                                  - $extracerts_filename - : string - = ''
                                                  -
                                                  -

                                                  Optional path to chain certificate

                                                  -
                                                  - -
                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - smtpClose() - - -

                                                  - - -

                                                  Close the active SMTP session if one exists.

                                                  - - - public - smtpClose() : mixed - -
                                                  -
                                                  - - - - - - - - -
                                                  -
                                                  -

                                                  - smtpConnect() - - -

                                                  - - -

                                                  Initiate a connection to an SMTP server.

                                                  - - - public - smtpConnect([array<string|int, mixed> $options = null ]) : bool - -
                                                  -
                                                  - -

                                                  Returns false if the operation failed.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $options - : array<string|int, mixed> - = null
                                                  -
                                                  -

                                                  An array of options compatible with stream_context_create()

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - uses -
                                                  -
                                                  - SMTP - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - stripTrailingBreaks() - - -

                                                  - - -

                                                  Strip trailing line breaks from a string.

                                                  - - - public - static stripTrailingBreaks(string $text) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $text - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string - — -

                                                  The text to remove breaks from

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - stripTrailingWSP() - - -

                                                  - - -

                                                  Remove trailing whitespace from a string.

                                                  - - - public - static stripTrailingWSP(string $text) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $text - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string - — -

                                                  The text to remove whitespace from

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - textLine() - - -

                                                  - - -

                                                  Return a formatted mail line.

                                                  - - - public - textLine(string $value) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $value - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - utf8CharBoundary() - - -

                                                  - - -

                                                  Find the last character boundary prior to $maxLength in a utf-8 -quoted-printable encoded string.

                                                  - - - public - utf8CharBoundary(string $encodedText, int $maxLength) : int - -
                                                  -
                                                  - -

                                                  Original written by Colin Brown.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $encodedText - : string -
                                                  -
                                                  -

                                                  utf-8 QP text

                                                  -
                                                  - -
                                                  -
                                                  - $maxLength - : int -
                                                  -
                                                  -

                                                  Find the last character boundary prior to this length

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - int -
                                                  - -
                                                  -
                                                  -

                                                  - validateAddress() - - -

                                                  - - -

                                                  Check that a string looks like an email address.

                                                  - - - public - static validateAddress(string $address[, string|callable $patternselect = null ]) : bool - -
                                                  -
                                                  - -

                                                  Validation patterns supported:

                                                  -
                                                    -
                                                  • auto Pick best pattern automatically;
                                                  • -
                                                  • pcre8 Use the squiloople.com pattern, requires PCRE > 8.0;
                                                  • -
                                                  • pcre Use old PCRE implementation;
                                                  • -
                                                  • php Use PHP built-in FILTER_VALIDATE_EMAIL;
                                                  • -
                                                  • html5 Use the pattern given by the HTML5 spec for 'email' type form input elements.
                                                  • -
                                                  • eai Use a pattern similar to the HTML5 spec for 'email' and to firefox, extended to support EAI (RFC6530).
                                                  • -
                                                  • noregex Don't use a regex: super fast, really dumb. -Alternatively you may pass in a callable to inject your own validator, for example:
                                                  • -
                                                  -
                                                  PHPMailer::validateAddress('user@example.com', function($address) {
                                                  -    return (strpos($address, '@') !== false);
                                                  -});
                                                  -
                                                  -

                                                  You can also set the PHPMailer::$validator static to a callable, allowing built-in methods to use your validator.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  -

                                                  The email address to check

                                                  -
                                                  - -
                                                  -
                                                  - $patternselect - : string|callable - = null
                                                  -
                                                  -

                                                  Which pattern to use

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - wrapText() - - -

                                                  - - -

                                                  Word-wrap message.

                                                  - - - public - wrapText(string $message, int $length[, bool $qp_mode = false ]) : string - -
                                                  -
                                                  - -

                                                  For use with mailers that do not automatically perform wrapping -and for quoted-printable encoded messages. -Original written by philippe.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $message - : string -
                                                  -
                                                  -

                                                  The message to wrap

                                                  -
                                                  - -
                                                  -
                                                  - $length - : int -
                                                  -
                                                  -

                                                  The line length to wrap to

                                                  -
                                                  - -
                                                  -
                                                  - $qp_mode - : bool - = false
                                                  -
                                                  -

                                                  Whether to run in Quoted-Printable mode

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - addAnAddress() - - -

                                                  - - -

                                                  Add an address to one of the recipient arrays or to the ReplyTo array.

                                                  - - - protected - addAnAddress(string $kind, string $address[, string $name = '' ]) : bool - -
                                                  -
                                                  - -

                                                  Addresses that have been added already return false, but do not throw exceptions.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $kind - : string -
                                                  -
                                                  -

                                                  One of 'to', 'cc', 'bcc', or 'ReplyTo'

                                                  -
                                                  - -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  -

                                                  The email address to send, resp. to reply to

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string - = ''
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  true on success, false if address already used or invalid in some way

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addOrEnqueueAnAddress() - - -

                                                  - - -

                                                  Add an address to one of the recipient arrays or to the ReplyTo array. Because PHPMailer -can't validate addresses with an IDN without knowing the PHPMailer::$CharSet (that can still -be modified after calling this function), addition of such addresses is delayed until send().

                                                  - - - protected - addOrEnqueueAnAddress(string $kind, string $address, string $name) : bool - -
                                                  -
                                                  - -

                                                  Addresses that have been added already return false, but do not throw exceptions.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $kind - : string -
                                                  -
                                                  -

                                                  One of 'to', 'cc', 'bcc', or 'Reply-To'

                                                  -
                                                  - -
                                                  -
                                                  - $address - : string -
                                                  -
                                                  -

                                                  The email address

                                                  -
                                                  - -
                                                  -
                                                  - $name - : string -
                                                  -
                                                  -

                                                  An optional username associated with the address

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool - — -

                                                  true on success, false if address already used or invalid in some way

                                                  -
                                                  - -
                                                  - -
                                                  -
                                                  -

                                                  - addressHasUnicodeLocalPart() - - -

                                                  - - -

                                                  Check whether the supplied address uses Unicode in the local part.

                                                  - - - protected - addressHasUnicodeLocalPart(mixed $address) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $address - : mixed -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - anyAddressHasUnicodeLocalPart() - - -

                                                  - - -

                                                  Check whether any of the supplied addresses use Unicode in the local part.

                                                  - - - protected - anyAddressHasUnicodeLocalPart(mixed $addresses) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $addresses - : mixed -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - attachAll() - - -

                                                  - - -

                                                  Attach all file, string, and binary attachments to the message.

                                                  - - - protected - attachAll(string $disposition_type, string $boundary) : string - -
                                                  -
                                                  - -

                                                  Returns an empty string on failure.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $disposition_type - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $boundary - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - cidExists() - - -

                                                  - - -

                                                  Check if an embedded attachment is present with this cid.

                                                  - - - protected - cidExists(string $cid) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $cid - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - doCallback() - - -

                                                  - - -

                                                  Perform a callback.

                                                  - - - protected - doCallback(bool $isSent, array<string|int, mixed> $to, array<string|int, mixed> $cc, array<string|int, mixed> $bcc, string $subject, string $body, string $from, array<string|int, mixed> $extra) : mixed - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $isSent - : bool -
                                                  -
                                                  - -
                                                  -
                                                  - $to - : array<string|int, mixed> -
                                                  -
                                                  - -
                                                  -
                                                  - $cc - : array<string|int, mixed> -
                                                  -
                                                  - -
                                                  -
                                                  - $bcc - : array<string|int, mixed> -
                                                  -
                                                  - -
                                                  -
                                                  - $subject - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $body - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $from - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $extra - : array<string|int, mixed> -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - edebug() - - -

                                                  - - -

                                                  Output debugging info via a user-defined method.

                                                  - - - protected - edebug(string $str) : mixed - -
                                                  -
                                                  - -

                                                  Only generates output if debug output is enabled.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $str - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$Debugoutput - - -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$SMTPDebug - - -
                                                  -
                                                  - - - - -
                                                  -
                                                  -

                                                  - encodeFile() - - -

                                                  - - -

                                                  Encode a file attachment in requested format.

                                                  - - - protected - encodeFile(string $path[, string $encoding = self::ENCODING_BASE64 ]) : string - -
                                                  -
                                                  - -

                                                  Returns an empty string on failure.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $path - : string -
                                                  -
                                                  -

                                                  The full path to the file

                                                  -
                                                  - -
                                                  -
                                                  - $encoding - : string - = self::ENCODING_BASE64
                                                  -
                                                  -

                                                  The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - endBoundary() - - -

                                                  - - -

                                                  Return the end of a message boundary.

                                                  - - - protected - endBoundary(string $boundary) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $boundary - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - fileIsAccessible() - - -

                                                  - - -

                                                  Check whether a file path is safe, accessible, and readable.

                                                  - - - protected - static fileIsAccessible(string $path) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $path - : string -
                                                  -
                                                  -

                                                  A relative or absolute path to a file

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - generateId() - - -

                                                  - - -

                                                  Create a unique ID to use for boundaries.

                                                  - - - protected - generateId() : string - -
                                                  -
                                                  - - - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - getBoundary() - - -

                                                  - - -

                                                  Return the start of a message boundary.

                                                  - - - protected - getBoundary(string $boundary, string $charSet, string $contentType, string $encoding) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $boundary - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $charSet - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $contentType - : string -
                                                  -
                                                  - -
                                                  -
                                                  - $encoding - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - isPermittedPath() - - -

                                                  - - -

                                                  Check whether a file path is of a permitted type.

                                                  - - - protected - static isPermittedPath(string $path) : bool - -
                                                  -
                                                  - -

                                                  Used to reject URLs and phar files from functions that access local file paths, -such as addAttachment.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $path - : string -
                                                  -
                                                  -

                                                  A relative or absolute path to a file

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - isShellSafe() - - -

                                                  - - -

                                                  Fix CVE-2016-10033 and CVE-2016-10045 by disallowing potentially unsafe shell characters.

                                                  - - - protected - static isShellSafe(string $string) : bool - -
                                                  -
                                                  - -

                                                  Note that escapeshellarg and escapeshellcmd are inadequate for our purposes, especially on Windows.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $string - : string -
                                                  -
                                                  -

                                                  The string to be validated

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://github.com/PHPMailer/PHPMailer/issues/924 - -

                                                  CVE-2016-10045 bug report

                                                  -
                                                  - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - lang() - - -

                                                  - - -

                                                  Get an error message in the current language.

                                                  - - - protected - static lang(string $key) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $key - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - mailSend() - - -

                                                  - - -

                                                  Send mail using the PHP mail() function.

                                                  - - - protected - mailSend(string $header, string $body) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $header - : string -
                                                  -
                                                  -

                                                  The message headers

                                                  -
                                                  - -
                                                  -
                                                  - $body - : string -
                                                  -
                                                  -

                                                  The message body

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - https://www.php.net/manual/en/book.mail.php - - -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - parseSimplerAddresses() - - -

                                                  - - -

                                                  Parse a string containing one or more RFC822-style comma-separated email addresses -with the form "display name <address>" into an array of name/address pairs.

                                                  - - - protected - static parseSimplerAddresses(string $addrstr, string $charset) : array<string|int, mixed> - -
                                                  -
                                                  - -

                                                  Uses a simpler parser that does not require the IMAP extension but doesnt support -the full RFC822 spec. For full RFC822 support, use the PHP IMAP extension.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $addrstr - : string -
                                                  -
                                                  -

                                                  The address list string

                                                  -
                                                  - -
                                                  -
                                                  - $charset - : string -
                                                  -
                                                  -

                                                  The charset to use when decoding the address list string.

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - array<string|int, mixed> -
                                                  - -
                                                  -
                                                  -

                                                  - sendmailSend() - - -

                                                  - - -

                                                  Send mail using the $Sendmail program.

                                                  - - - protected - sendmailSend(string $header, string $body) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $header - : string -
                                                  -
                                                  -

                                                  The message headers

                                                  -
                                                  - -
                                                  -
                                                  - $body - : string -
                                                  -
                                                  -

                                                  The message body

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::$Sendmail - - -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - serverHostname() - - -

                                                  - - -

                                                  Get the server hostname.

                                                  - - - protected - serverHostname() : string - -
                                                  -
                                                  - -

                                                  Returns 'localhost.localdomain' if unknown.

                                                  -
                                                  - - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - setError() - - -

                                                  - - -

                                                  Add an error message to the error container.

                                                  - - - protected - setError(string $msg) : mixed - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $msg - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - setLE() - - -

                                                  - - -

                                                  Set the line break format string, e.g. "\r\n".

                                                  - - - protected - static setLE(string $le) : mixed - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $le - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - - -
                                                  -
                                                  -

                                                  - setMessageType() - - -

                                                  - - -

                                                  Set the message type.

                                                  - - - protected - setMessageType() : mixed - -
                                                  -
                                                  - -

                                                  PHPMailer only supports some preset message types, not arbitrary MIME structures.

                                                  -
                                                  - - - - - - - -
                                                  -
                                                  -

                                                  - smtpSend() - - -

                                                  - - -

                                                  Send mail via SMTP.

                                                  - - - protected - smtpSend(string $header, string $body) : bool - -
                                                  -
                                                  - -

                                                  Returns false if there is a bad MAIL FROM, RCPT, or DATA input.

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $header - : string -
                                                  -
                                                  -

                                                  The message headers

                                                  -
                                                  - -
                                                  -
                                                  - $body - : string -
                                                  -
                                                  -

                                                  The message body

                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - Tags - - -
                                                  -
                                                  -
                                                  - see -
                                                  -
                                                  - PHPMailer::setSMTPInstance() - -

                                                  to use a different class.

                                                  -
                                                  - -
                                                  -
                                                  - uses -
                                                  -
                                                  - SMTP - - -
                                                  -
                                                  - throws -
                                                  -
                                                  - Exception - - -
                                                  -
                                                  - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - validateEncoding() - - -

                                                  - - -

                                                  Validate encodings.

                                                  - - - protected - validateEncoding(string $encoding) : bool - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $encoding - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  -

                                                  - getSmtpErrorMessage() - - -

                                                  - - -

                                                  Build an error message starting with a generic one and adding details if possible.

                                                  - - - private - getSmtpErrorMessage(string $base_key) : string - -
                                                  -
                                                  - - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $base_key - : string -
                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - string -
                                                  - -
                                                  -
                                                  -

                                                  - mailPassthru() - - -

                                                  - - -

                                                  Call mail() in a safe_mode-aware fashion.

                                                  - - - private - mailPassthru(string $to, string $subject, string $body, string $header, string|null $params) : bool - -
                                                  -
                                                  - -

                                                  Also, unless sendmail_path points to sendmail (or something that -claims to be sendmail), don't pass params (not a perfect fix, -but it will do).

                                                  -
                                                  - -
                                                  Parameters
                                                  -
                                                  -
                                                  - $to - : string -
                                                  -
                                                  -

                                                  To

                                                  -
                                                  - -
                                                  -
                                                  - $subject - : string -
                                                  -
                                                  -

                                                  Subject

                                                  -
                                                  - -
                                                  -
                                                  - $body - : string -
                                                  -
                                                  -

                                                  Message Body

                                                  -
                                                  - -
                                                  -
                                                  - $header - : string -
                                                  -
                                                  -

                                                  Additional Header(s)

                                                  -
                                                  - -
                                                  -
                                                  - $params - : string|null -
                                                  -
                                                  -

                                                  Params

                                                  -
                                                  - -
                                                  -
                                                  - - - - - -
                                                  -
                                                  Return values
                                                  - bool -
                                                  - -
                                                  -
                                                  - -
                                                  -
                                                  -
                                                  -
                                                  -
                                                  
                                                  -        
                                                  - -
                                                  -
                                                  - - - -
                                                  -
                                                  -
                                                  - -
                                                  - On this page - - -
                                                  - -
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -

                                                  Search results

                                                  - -
                                                  -
                                                  -
                                                    -
                                                    -
                                                    -
                                                    -
                                                    - - -
                                                    - - - - - - - - diff --git a/docs/classes/PHPMailer-PHPMailer-POP3.html b/docs/classes/PHPMailer-PHPMailer-POP3.html deleted file mode 100644 index b030cf52..00000000 --- a/docs/classes/PHPMailer-PHPMailer-POP3.html +++ /dev/null @@ -1,1916 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                    -

                                                    SAE Project Documentation

                                                    - - - - - -
                                                    - -
                                                    -
                                                    - - - - -
                                                    -
                                                    - - -
                                                    -

                                                    - POP3 - - -
                                                    - in package - -
                                                    - - -

                                                    - -
                                                    - - -
                                                    - - - -

                                                    PHPMailer POP-Before-SMTP Authentication Class.

                                                    - - -

                                                    Specifically for PHPMailer to use for RFC1939 POP-before-SMTP authentication.

                                                    -
                                                      -
                                                    1. This class does not support APOP authentication.
                                                    2. -
                                                    3. Opening and closing lots of POP3 connections can be quite slow. If you need -to send a batch of emails then just perform the authentication once at the start, -and then loop through your mail sending script. Providing this process doesn't -take longer than the verification period lasts on your POP3 server, you should be fine.
                                                    4. -
                                                    5. This is really ancient technology; you should only need to use it to talk to very old systems.
                                                    6. -
                                                    7. This POP3 class is deliberately lightweight and incomplete, implementing just -enough to do authentication. -If you want a more complete class there are other POP3 classes for PHP available.
                                                    8. -
                                                    -
                                                    - - -
                                                    - Tags - - -
                                                    -
                                                    -
                                                    - author -
                                                    -
                                                    - -

                                                    Richard Davey (original author) rich@corephp.co.uk

                                                    -
                                                    - -
                                                    -
                                                    - author -
                                                    -
                                                    - -

                                                    Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                    -
                                                    - -
                                                    -
                                                    - author -
                                                    -
                                                    - -

                                                    Jim Jagielski (jimjag) jimjag@gmail.com

                                                    -
                                                    - -
                                                    -
                                                    - author -
                                                    -
                                                    - -

                                                    Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                    -
                                                    - -
                                                    -
                                                    - - - - - -

                                                    - Table of Contents - - -

                                                    - - - - - - - -

                                                    - Constants - - -

                                                    -
                                                    -
                                                    - DEBUG_CLIENT - -  = 2 -
                                                    -
                                                    Debug level to show client -> server and server -> client messages.
                                                    - -
                                                    - DEBUG_OFF - -  = 0 -
                                                    -
                                                    Debug level for no output.
                                                    - -
                                                    - DEBUG_SERVER - -  = 1 -
                                                    -
                                                    Debug level to show server -> client messages -also shows clients connection errors or errors from server
                                                    - -
                                                    - DEFAULT_PORT - -  = 110 -
                                                    -
                                                    Default POP3 port number.
                                                    - -
                                                    - DEFAULT_TIMEOUT - -  = 30 -
                                                    -
                                                    Default timeout in seconds.
                                                    - -
                                                    - LE - -  = "\r\n" -
                                                    -
                                                    Line break constant.
                                                    - -
                                                    - VERSION - -  = '6.10.0' -
                                                    -
                                                    The POP3 PHPMailer Version number.
                                                    - -
                                                    - - -

                                                    - Properties - - -

                                                    -
                                                    -
                                                    - $do_debug - -  : int -
                                                    -
                                                    POP3 class debug output mode.
                                                    - -
                                                    - $host - -  : string -
                                                    -
                                                    POP3 mail server hostname.
                                                    - -
                                                    - $password - -  : string -
                                                    -
                                                    POP3 password.
                                                    - -
                                                    - $port - -  : int -
                                                    -
                                                    POP3 port number.
                                                    - -
                                                    - $tval - -  : int -
                                                    -
                                                    POP3 Timeout Value in seconds.
                                                    - -
                                                    - $username - -  : string -
                                                    -
                                                    POP3 username.
                                                    - -
                                                    - $connected - -  : bool -
                                                    -
                                                    Are we connected?
                                                    - -
                                                    - $errors - -  : array<string|int, mixed> -
                                                    -
                                                    Error container.
                                                    - -
                                                    - $pop_conn - -  : resource -
                                                    -
                                                    Resource handle for the POP3 connection socket.
                                                    - -
                                                    - -

                                                    - Methods - - -

                                                    -
                                                    -
                                                    - authorise() - -  : bool -
                                                    -
                                                    Authenticate with a POP3 server.
                                                    - -
                                                    - connect() - -  : bool -
                                                    -
                                                    Connect to a POP3 server.
                                                    - -
                                                    - disconnect() - -  : mixed -
                                                    -
                                                    Disconnect from the POP3 server.
                                                    - -
                                                    - getErrors() - -  : array<string|int, mixed> -
                                                    -
                                                    Get an array of error messages, if any.
                                                    - -
                                                    - login() - -  : bool -
                                                    -
                                                    Log in to the POP3 server.
                                                    - -
                                                    - popBeforeSmtp() - -  : bool -
                                                    -
                                                    Simple static wrapper for all-in-one POP before SMTP.
                                                    - -
                                                    - catchWarning() - -  : mixed -
                                                    -
                                                    POP3 connection error handler.
                                                    - -
                                                    - checkResponse() - -  : bool -
                                                    -
                                                    Checks the POP3 server response.
                                                    - -
                                                    - getResponse() - -  : string -
                                                    -
                                                    Get a response from the POP3 server.
                                                    - -
                                                    - sendString() - -  : int -
                                                    -
                                                    Send raw data to the POP3 server.
                                                    - -
                                                    - setError() - -  : mixed -
                                                    -
                                                    Add an error to the internal error store.
                                                    - -
                                                    - - - - -
                                                    -

                                                    - Constants - - -

                                                    -
                                                    -

                                                    - DEBUG_CLIENT - - -

                                                    - - - -

                                                    Debug level to show client -> server and server -> client messages.

                                                    - - - - public - int - DEBUG_CLIENT - = 2 - - - - - - - - - -
                                                    -
                                                    -

                                                    - DEBUG_OFF - - -

                                                    - - - -

                                                    Debug level for no output.

                                                    - - - - public - int - DEBUG_OFF - = 0 - - - - - - - - - -
                                                    -
                                                    -

                                                    - DEBUG_SERVER - - -

                                                    - - - -

                                                    Debug level to show server -> client messages -also shows clients connection errors or errors from server

                                                    - - - - public - int - DEBUG_SERVER - = 1 - - - - - - - - - -
                                                    -
                                                    -

                                                    - DEFAULT_PORT - - -

                                                    - - - -

                                                    Default POP3 port number.

                                                    - - - - public - int - DEFAULT_PORT - = 110 - - - - - - - - - -
                                                    -
                                                    -

                                                    - DEFAULT_TIMEOUT - - -

                                                    - - - -

                                                    Default timeout in seconds.

                                                    - - - - public - int - DEFAULT_TIMEOUT - = 30 - - - - - - - - - -
                                                    -
                                                    -

                                                    - LE - - -

                                                    - - - -

                                                    Line break constant.

                                                    - - - - public - mixed - LE - = "\r\n" - - - - - - - - - -
                                                    -
                                                    -

                                                    - VERSION - - -

                                                    - - - -

                                                    The POP3 PHPMailer Version number.

                                                    - - - - public - string - VERSION - = '6.10.0' - - - - - - - - - -
                                                    -
                                                    - - -
                                                    -

                                                    - Properties - - -

                                                    -
                                                    -

                                                    - $do_debug - - - - -

                                                    - - -

                                                    POP3 class debug output mode.

                                                    - - - - public - int - $do_debug - = self::DEBUG_OFF - -

                                                    Debug output level. -Options:

                                                    -
                                                    - - - -
                                                    - Tags - - -
                                                    -
                                                    -
                                                    - see -
                                                    -
                                                    - -

                                                    POP3::DEBUG_OFF: No output

                                                    -
                                                    - -
                                                    -
                                                    - see -
                                                    -
                                                    - -

                                                    POP3::DEBUG_SERVER: Server messages, connection/server errors

                                                    -
                                                    - -
                                                    -
                                                    - see -
                                                    -
                                                    - -

                                                    POP3::DEBUG_CLIENT: Client and Server messages, connection/server errors

                                                    -
                                                    - -
                                                    -
                                                    - - - - - -
                                                    -
                                                    -

                                                    - $host - - - - -

                                                    - - -

                                                    POP3 mail server hostname.

                                                    - - - - public - string - $host - - - - - - - - - - -
                                                    -
                                                    -

                                                    - $password - - - - -

                                                    - - -

                                                    POP3 password.

                                                    - - - - public - string - $password - - - - - - - - - - -
                                                    -
                                                    -

                                                    - $port - - - - -

                                                    - - -

                                                    POP3 port number.

                                                    - - - - public - int - $port - - - - - - - - - - -
                                                    -
                                                    -

                                                    - $tval - - - - -

                                                    - - -

                                                    POP3 Timeout Value in seconds.

                                                    - - - - public - int - $tval - - - - - - - - - - -
                                                    -
                                                    -

                                                    - $username - - - - -

                                                    - - -

                                                    POP3 username.

                                                    - - - - public - string - $username - - - - - - - - - - -
                                                    -
                                                    -

                                                    - $connected - - - - -

                                                    - - -

                                                    Are we connected?

                                                    - - - - protected - bool - $connected - = false - - - - - - - - - -
                                                    -
                                                    -

                                                    - $errors - - - - -

                                                    - - -

                                                    Error container.

                                                    - - - - protected - array<string|int, mixed> - $errors - = [] - - - - - - - - - -
                                                    -
                                                    -

                                                    - $pop_conn - - - - -

                                                    - - -

                                                    Resource handle for the POP3 connection socket.

                                                    - - - - protected - resource - $pop_conn - - - - - - - - - - -
                                                    -
                                                    - -
                                                    -

                                                    - Methods - - -

                                                    -
                                                    -

                                                    - authorise() - - -

                                                    - - -

                                                    Authenticate with a POP3 server.

                                                    - - - public - authorise(string $host[, int|bool $port = false ][, int|bool $timeout = false ][, string $username = '' ][, string $password = '' ][, int $debug_level = 0 ]) : bool - -
                                                    -
                                                    - -

                                                    A connect, login, disconnect sequence -appropriate for POP-before SMTP authorisation.

                                                    -
                                                    - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $host - : string -
                                                    -
                                                    -

                                                    The hostname to connect to

                                                    -
                                                    - -
                                                    -
                                                    - $port - : int|bool - = false
                                                    -
                                                    -

                                                    The port number to connect to

                                                    -
                                                    - -
                                                    -
                                                    - $timeout - : int|bool - = false
                                                    -
                                                    -

                                                    The timeout value

                                                    -
                                                    - -
                                                    -
                                                    - $username - : string - = ''
                                                    -
                                                    - -
                                                    -
                                                    - $password - : string - = ''
                                                    -
                                                    - -
                                                    -
                                                    - $debug_level - : int - = 0
                                                    -
                                                    - -
                                                    -
                                                    - - - - - -
                                                    -
                                                    Return values
                                                    - bool -
                                                    - -
                                                    -
                                                    -

                                                    - connect() - - -

                                                    - - -

                                                    Connect to a POP3 server.

                                                    - - - public - connect(string $host[, int|bool $port = false ][, int $tval = 30 ]) : bool - -
                                                    -
                                                    - - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $host - : string -
                                                    -
                                                    - -
                                                    -
                                                    - $port - : int|bool - = false
                                                    -
                                                    - -
                                                    -
                                                    - $tval - : int - = 30
                                                    -
                                                    - -
                                                    -
                                                    - - - - - -
                                                    -
                                                    Return values
                                                    - bool -
                                                    - -
                                                    -
                                                    -

                                                    - disconnect() - - -

                                                    - - -

                                                    Disconnect from the POP3 server.

                                                    - - - public - disconnect() : mixed - -
                                                    -
                                                    - - - - - - - - -
                                                    -
                                                    -

                                                    - getErrors() - - -

                                                    - - -

                                                    Get an array of error messages, if any.

                                                    - - - public - getErrors() : array<string|int, mixed> - -
                                                    -
                                                    - - - - - - - -
                                                    -
                                                    Return values
                                                    - array<string|int, mixed> -
                                                    - -
                                                    -
                                                    -

                                                    - login() - - -

                                                    - - -

                                                    Log in to the POP3 server.

                                                    - - - public - login([string $username = '' ][, string $password = '' ]) : bool - -
                                                    -
                                                    - -

                                                    Does not support APOP (RFC 2828, 4949).

                                                    -
                                                    - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $username - : string - = ''
                                                    -
                                                    - -
                                                    -
                                                    - $password - : string - = ''
                                                    -
                                                    - -
                                                    -
                                                    - - - - - -
                                                    -
                                                    Return values
                                                    - bool -
                                                    - -
                                                    -
                                                    -

                                                    - popBeforeSmtp() - - -

                                                    - - -

                                                    Simple static wrapper for all-in-one POP before SMTP.

                                                    - - - public - static popBeforeSmtp(string $host[, int|bool $port = false ][, int|bool $timeout = false ][, string $username = '' ][, string $password = '' ][, int $debug_level = 0 ]) : bool - -
                                                    -
                                                    - - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $host - : string -
                                                    -
                                                    -

                                                    The hostname to connect to

                                                    -
                                                    - -
                                                    -
                                                    - $port - : int|bool - = false
                                                    -
                                                    -

                                                    The port number to connect to

                                                    -
                                                    - -
                                                    -
                                                    - $timeout - : int|bool - = false
                                                    -
                                                    -

                                                    The timeout value

                                                    -
                                                    - -
                                                    -
                                                    - $username - : string - = ''
                                                    -
                                                    - -
                                                    -
                                                    - $password - : string - = ''
                                                    -
                                                    - -
                                                    -
                                                    - $debug_level - : int - = 0
                                                    -
                                                    - -
                                                    -
                                                    - - - - - -
                                                    -
                                                    Return values
                                                    - bool -
                                                    - -
                                                    -
                                                    -

                                                    - catchWarning() - - -

                                                    - - -

                                                    POP3 connection error handler.

                                                    - - - protected - catchWarning(int $errno, string $errstr, string $errfile, int $errline) : mixed - -
                                                    -
                                                    - - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $errno - : int -
                                                    -
                                                    - -
                                                    -
                                                    - $errstr - : string -
                                                    -
                                                    - -
                                                    -
                                                    - $errfile - : string -
                                                    -
                                                    - -
                                                    -
                                                    - $errline - : int -
                                                    -
                                                    - -
                                                    -
                                                    - - - - - - -
                                                    -
                                                    -

                                                    - checkResponse() - - -

                                                    - - -

                                                    Checks the POP3 server response.

                                                    - - - protected - checkResponse(string $string) : bool - -
                                                    -
                                                    - -

                                                    Looks for for +OK or -ERR.

                                                    -
                                                    - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $string - : string -
                                                    -
                                                    - -
                                                    -
                                                    - - - - - -
                                                    -
                                                    Return values
                                                    - bool -
                                                    - -
                                                    -
                                                    -

                                                    - getResponse() - - -

                                                    - - -

                                                    Get a response from the POP3 server.

                                                    - - - protected - getResponse([int $size = 128 ]) : string - -
                                                    -
                                                    - - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $size - : int - = 128
                                                    -
                                                    -

                                                    The maximum number of bytes to retrieve

                                                    -
                                                    - -
                                                    -
                                                    - - - - - -
                                                    -
                                                    Return values
                                                    - string -
                                                    - -
                                                    -
                                                    -

                                                    - sendString() - - -

                                                    - - -

                                                    Send raw data to the POP3 server.

                                                    - - - protected - sendString(string $string) : int - -
                                                    -
                                                    - - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $string - : string -
                                                    -
                                                    - -
                                                    -
                                                    - - - - - -
                                                    -
                                                    Return values
                                                    - int -
                                                    - -
                                                    -
                                                    -

                                                    - setError() - - -

                                                    - - -

                                                    Add an error to the internal error store.

                                                    - - - protected - setError(string $error) : mixed - -
                                                    -
                                                    - -

                                                    Also display debug output if it's enabled.

                                                    -
                                                    - -
                                                    Parameters
                                                    -
                                                    -
                                                    - $error - : string -
                                                    -
                                                    - -
                                                    -
                                                    - - - - - - -
                                                    -
                                                    - -
                                                    -
                                                    -
                                                    -
                                                    -
                                                    
                                                    -        
                                                    - -
                                                    -
                                                    - - - -
                                                    -
                                                    -
                                                    - -
                                                    - On this page - - -
                                                    - -
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -

                                                    Search results

                                                    - -
                                                    -
                                                    -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      - - -
                                                      - - - - - - - - diff --git a/docs/classes/PHPMailer-PHPMailer-SMTP.html b/docs/classes/PHPMailer-PHPMailer-SMTP.html deleted file mode 100644 index c916708e..00000000 --- a/docs/classes/PHPMailer-PHPMailer-SMTP.html +++ /dev/null @@ -1,4296 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                      -

                                                      SAE Project Documentation

                                                      - - - - - -
                                                      - -
                                                      -
                                                      - - - - -
                                                      -
                                                      - - -
                                                      -

                                                      - SMTP - - -
                                                      - in package - -
                                                      - - -

                                                      - -
                                                      - - -
                                                      - - - -

                                                      PHPMailer RFC821 SMTP email transport class.

                                                      - - -

                                                      Implements RFC 821 SMTP commands and provides some utility methods for sending mail to an SMTP server.

                                                      -
                                                      - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - author -
                                                      -
                                                      - -

                                                      Chris Ryan

                                                      -
                                                      - -
                                                      -
                                                      - author -
                                                      -
                                                      - -

                                                      Marcus Bointon phpmailer@synchromedia.co.uk

                                                      -
                                                      - -
                                                      -
                                                      - used-by -
                                                      -
                                                      - PHPMailer::smtpSend() - - -
                                                      -
                                                      - used-by -
                                                      -
                                                      - PHPMailer::smtpConnect() - - -
                                                      -
                                                      - - - - - -

                                                      - Table of Contents - - -

                                                      - - - - - - - -

                                                      - Constants - - -

                                                      -
                                                      -
                                                      - DEBUG_CLIENT - -  = 1 -
                                                      -
                                                      Debug level to show client -> server messages.
                                                      - -
                                                      - DEBUG_CONNECTION - -  = 3 -
                                                      -
                                                      Debug level to show connection status, client -> server and server -> client messages.
                                                      - -
                                                      - DEBUG_LOWLEVEL - -  = 4 -
                                                      -
                                                      Debug level to show all messages.
                                                      - -
                                                      - DEBUG_OFF - -  = 0 -
                                                      -
                                                      Debug level for no output.
                                                      - -
                                                      - DEBUG_SERVER - -  = 2 -
                                                      -
                                                      Debug level to show client -> server and server -> client messages.
                                                      - -
                                                      - DEFAULT_PORT - -  = 25 -
                                                      -
                                                      The SMTP port to use if one is not specified.
                                                      - -
                                                      - DEFAULT_SECURE_PORT - -  = 465 -
                                                      -
                                                      The SMTPs port to use if one is not specified.
                                                      - -
                                                      - LE - -  = "\r\n" -
                                                      -
                                                      SMTP line break constant.
                                                      - -
                                                      - MAX_LINE_LENGTH - -  = 998 -
                                                      -
                                                      The maximum line length allowed by RFC 5321 section 4.5.3.1.6, -*excluding* a trailing CRLF break.
                                                      - -
                                                      - MAX_REPLY_LENGTH - -  = 512 -
                                                      -
                                                      The maximum line length allowed for replies in RFC 5321 section 4.5.3.1.5, -*including* a trailing CRLF line break.
                                                      - -
                                                      - VERSION - -  = '6.10.0' -
                                                      -
                                                      The PHPMailer SMTP version number.
                                                      - -
                                                      - - -

                                                      - Properties - - -

                                                      -
                                                      -
                                                      - $Debugoutput - -  : string|callable|LoggerInterface -
                                                      -
                                                      How to handle debug output.
                                                      - -
                                                      - $do_debug - -  : int -
                                                      -
                                                      Debug output level.
                                                      - -
                                                      - $do_smtputf8 - -  : bool -
                                                      -
                                                      Whether to use SMTPUTF8.
                                                      - -
                                                      - $do_verp - -  : bool -
                                                      -
                                                      Whether to use VERP.
                                                      - -
                                                      - $Timelimit - -  : int -
                                                      -
                                                      How long to wait for commands to complete, in seconds.
                                                      - -
                                                      - $Timeout - -  : int -
                                                      -
                                                      The timeout value for connection, in seconds.
                                                      - -
                                                      - $xclient_allowed_attributes - -  : array<string|int, mixed> -
                                                      -
                                                      Allowed SMTP XCLIENT attributes.
                                                      - -
                                                      - $error - -  : array<string|int, mixed> -
                                                      -
                                                      Error information, if any, for the last SMTP command.
                                                      - -
                                                      - $helo_rply - -  : string|null -
                                                      -
                                                      The reply the server sent to us for HELO.
                                                      - -
                                                      - $last_reply - -  : string -
                                                      -
                                                      The most recent reply received from the server.
                                                      - -
                                                      - $last_smtp_transaction_id - -  : string|bool|null -
                                                      -
                                                      The last transaction ID issued in response to a DATA command, -if one was detected.
                                                      - -
                                                      - $server_caps - -  : array<string|int, mixed>|null -
                                                      -
                                                      The set of SMTP extensions sent in reply to EHLO command.
                                                      - -
                                                      - $smtp_conn - -  : resource|null -
                                                      -
                                                      The socket for the server connection.
                                                      - -
                                                      - $smtp_transaction_id_patterns - -  : array<string|int, string> -
                                                      -
                                                      Patterns to extract an SMTP transaction id from reply to a DATA command.
                                                      - -
                                                      - -

                                                      - Methods - - -

                                                      -
                                                      -
                                                      - authenticate() - -  : bool -
                                                      -
                                                      Perform SMTP authentication.
                                                      - -
                                                      - client_send() - -  : int|bool -
                                                      -
                                                      Send raw data to the server.
                                                      - -
                                                      - close() - -  : mixed -
                                                      -
                                                      Close the socket and clean up the state of the class.
                                                      - -
                                                      - connect() - -  : bool -
                                                      -
                                                      Connect to an SMTP server.
                                                      - -
                                                      - connected() - -  : bool -
                                                      -
                                                      Check connection state.
                                                      - -
                                                      - data() - -  : bool -
                                                      -
                                                      Send an SMTP DATA command.
                                                      - -
                                                      - getDebugLevel() - -  : int -
                                                      -
                                                      Get debug output level.
                                                      - -
                                                      - getDebugOutput() - -  : string -
                                                      -
                                                      Get debug output method.
                                                      - -
                                                      - getError() - -  : array<string|int, mixed> -
                                                      -
                                                      Get the latest error.
                                                      - -
                                                      - getLastReply() - -  : string -
                                                      -
                                                      Get the last reply from the server.
                                                      - -
                                                      - getLastTransactionID() - -  : bool|string|null -
                                                      -
                                                      Get the queue/transaction ID of the last SMTP transaction -If no reply has been received yet, it will return null.
                                                      - -
                                                      - getServerExt() - -  : string|bool|null -
                                                      -
                                                      Get metadata about the SMTP server from its HELO/EHLO response.
                                                      - -
                                                      - getServerExtList() - -  : array<string|int, mixed>|null -
                                                      -
                                                      Get SMTP extensions available on the server.
                                                      - -
                                                      - getSMTPUTF8() - -  : bool -
                                                      -
                                                      Get SMTPUTF8 use.
                                                      - -
                                                      - getTimeout() - -  : int -
                                                      -
                                                      Get SMTP timeout.
                                                      - -
                                                      - getVerp() - -  : bool -
                                                      -
                                                      Get VERP address generation mode.
                                                      - -
                                                      - hello() - -  : bool -
                                                      -
                                                      Send an SMTP HELO or EHLO command.
                                                      - -
                                                      - mail() - -  : bool -
                                                      -
                                                      Send an SMTP MAIL command.
                                                      - -
                                                      - noop() - -  : bool -
                                                      -
                                                      Send an SMTP NOOP command.
                                                      - -
                                                      - quit() - -  : bool -
                                                      -
                                                      Send an SMTP QUIT command.
                                                      - -
                                                      - recipient() - -  : bool -
                                                      -
                                                      Send an SMTP RCPT command.
                                                      - -
                                                      - reset() - -  : bool -
                                                      -
                                                      Send an SMTP RSET command.
                                                      - -
                                                      - sendAndMail() - -  : bool -
                                                      -
                                                      Send an SMTP SAML command.
                                                      - -
                                                      - setDebugLevel() - -  : mixed -
                                                      -
                                                      Set debug output level.
                                                      - -
                                                      - setDebugOutput() - -  : mixed -
                                                      -
                                                      Set debug output method.
                                                      - -
                                                      - setSMTPUTF8() - -  : mixed -
                                                      -
                                                      Enable or disable use of SMTPUTF8.
                                                      - -
                                                      - setTimeout() - -  : mixed -
                                                      -
                                                      Set SMTP timeout.
                                                      - -
                                                      - setVerp() - -  : mixed -
                                                      -
                                                      Enable or disable VERP address generation.
                                                      - -
                                                      - startTLS() - -  : bool -
                                                      -
                                                      Initiate a TLS (encrypted) session.
                                                      - -
                                                      - turn() - -  : bool -
                                                      -
                                                      Send an SMTP TURN command.
                                                      - -
                                                      - verify() - -  : bool -
                                                      -
                                                      Send an SMTP VRFY command.
                                                      - -
                                                      - xclient() - -  : bool -
                                                      -
                                                      Send SMTP XCLIENT command to server and check its return code.
                                                      - -
                                                      - edebug() - -  : mixed -
                                                      -
                                                      Output debugging info via a user-selected method.
                                                      - -
                                                      - errorHandler() - -  : mixed -
                                                      -
                                                      Reports an error number and string.
                                                      - -
                                                      - get_lines() - -  : string -
                                                      -
                                                      Read the SMTP server's response.
                                                      - -
                                                      - getSMTPConnection() - -  : false|resource -
                                                      -
                                                      Create connection to the SMTP server.
                                                      - -
                                                      - hmac() - -  : string -
                                                      -
                                                      Calculate an MD5 HMAC hash.
                                                      - -
                                                      - parseHelloFields() - -  : mixed -
                                                      -
                                                      Parse a reply to HELO/EHLO command to discover server extensions.
                                                      - -
                                                      - recordLastTransactionID() - -  : bool|string|null -
                                                      -
                                                      Extract and return the ID of the last SMTP transaction based on -a list of patterns provided in SMTP::$smtp_transaction_id_patterns.
                                                      - -
                                                      - sendCommand() - -  : bool -
                                                      -
                                                      Send a command to an SMTP server and check its return code.
                                                      - -
                                                      - sendHello() - -  : bool -
                                                      -
                                                      Send an SMTP HELO or EHLO command.
                                                      - -
                                                      - setError() - -  : mixed -
                                                      -
                                                      Set error messages and codes.
                                                      - -
                                                      - - - - -
                                                      -

                                                      - Constants - - -

                                                      -
                                                      -

                                                      - DEBUG_CLIENT - - -

                                                      - - - -

                                                      Debug level to show client -> server messages.

                                                      - - - - public - int - DEBUG_CLIENT - = 1 - - - - - - - - - -
                                                      -
                                                      -

                                                      - DEBUG_CONNECTION - - -

                                                      - - - -

                                                      Debug level to show connection status, client -> server and server -> client messages.

                                                      - - - - public - int - DEBUG_CONNECTION - = 3 - - - - - - - - - -
                                                      -
                                                      -

                                                      - DEBUG_LOWLEVEL - - -

                                                      - - - -

                                                      Debug level to show all messages.

                                                      - - - - public - int - DEBUG_LOWLEVEL - = 4 - - - - - - - - - -
                                                      -
                                                      -

                                                      - DEBUG_OFF - - -

                                                      - - - -

                                                      Debug level for no output.

                                                      - - - - public - int - DEBUG_OFF - = 0 - - - - - - - - - -
                                                      -
                                                      -

                                                      - DEBUG_SERVER - - -

                                                      - - - -

                                                      Debug level to show client -> server and server -> client messages.

                                                      - - - - public - int - DEBUG_SERVER - = 2 - - - - - - - - - -
                                                      -
                                                      -

                                                      - DEFAULT_PORT - - -

                                                      - - - -

                                                      The SMTP port to use if one is not specified.

                                                      - - - - public - int - DEFAULT_PORT - = 25 - - - - - - - - - -
                                                      -
                                                      -

                                                      - DEFAULT_SECURE_PORT - - -

                                                      - - - -

                                                      The SMTPs port to use if one is not specified.

                                                      - - - - public - int - DEFAULT_SECURE_PORT - = 465 - - - - - - - - - -
                                                      -
                                                      -

                                                      - LE - - -

                                                      - - - -

                                                      SMTP line break constant.

                                                      - - - - public - string - LE - = "\r\n" - - - - - - - - - -
                                                      -
                                                      -

                                                      - MAX_LINE_LENGTH - - -

                                                      - - - -

                                                      The maximum line length allowed by RFC 5321 section 4.5.3.1.6, -*excluding* a trailing CRLF break.

                                                      - - - - public - int - MAX_LINE_LENGTH - = 998 - - - - - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - https://www.rfc-editor.org/rfc/rfc5321#section-4.5.3.1.6 - - -
                                                      -
                                                      - - - -
                                                      -
                                                      -

                                                      - MAX_REPLY_LENGTH - - -

                                                      - - - -

                                                      The maximum line length allowed for replies in RFC 5321 section 4.5.3.1.5, -*including* a trailing CRLF line break.

                                                      - - - - public - int - MAX_REPLY_LENGTH - = 512 - - - - - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - https://www.rfc-editor.org/rfc/rfc5321#section-4.5.3.1.5 - - -
                                                      -
                                                      - - - -
                                                      -
                                                      -

                                                      - VERSION - - -

                                                      - - - -

                                                      The PHPMailer SMTP version number.

                                                      - - - - public - string - VERSION - = '6.10.0' - - - - - - - - - -
                                                      -
                                                      - - -
                                                      -

                                                      - Properties - - -

                                                      -
                                                      -

                                                      - $Debugoutput - - - - -

                                                      - - -

                                                      How to handle debug output.

                                                      - - - - public - string|callable|LoggerInterface - $Debugoutput - = 'echo' - -

                                                      Options:

                                                      -
                                                        -
                                                      • echo Output plain-text as-is, appropriate for CLI
                                                      • -
                                                      • html Output escaped, line breaks converted to <br>, appropriate for browser output
                                                      • -
                                                      • error_log Output to error log as configured in php.ini -Alternatively, you can provide a callable expecting two params: a message string and the debug level:
                                                      • -
                                                      -
                                                      $smtp->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";};
                                                      -
                                                      -

                                                      Alternatively, you can pass in an instance of a PSR-3 compatible logger, though only debug -level output is used:

                                                      -
                                                      $mail->Debugoutput = new myPsr3Logger;
                                                      -
                                                      -
                                                      - - - - - - - - -
                                                      -
                                                      -

                                                      - $do_debug - - - - -

                                                      - - -

                                                      Debug output level.

                                                      - - - - public - int - $do_debug - = self::DEBUG_OFF - -

                                                      Options:

                                                      -
                                                        -
                                                      • self::DEBUG_OFF (0) No debug output, default
                                                      • -
                                                      • self::DEBUG_CLIENT (1) Client commands
                                                      • -
                                                      • self::DEBUG_SERVER (2) Client commands and server responses
                                                      • -
                                                      • self::DEBUG_CONNECTION (3) As DEBUG_SERVER plus connection status
                                                      • -
                                                      • self::DEBUG_LOWLEVEL (4) Low-level data output, all messages.
                                                      • -
                                                      -
                                                      - - - - - - - - -
                                                      - - -
                                                      -

                                                      - $Timelimit - - - - -

                                                      - - -

                                                      How long to wait for commands to complete, in seconds.

                                                      - - - - public - int - $Timelimit - = 300 - -

                                                      Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2.

                                                      -
                                                      - - - - - - - - -
                                                      -
                                                      -

                                                      - $Timeout - - - - -

                                                      - - -

                                                      The timeout value for connection, in seconds.

                                                      - - - - public - int - $Timeout - = 300 - -

                                                      Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2. -This needs to be quite high to function correctly with hosts using greetdelay as an anti-spam measure.

                                                      -
                                                      - - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - https://www.rfc-editor.org/rfc/rfc2821#section-4.5.3.2 - - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      -

                                                      - $xclient_allowed_attributes - - - - -

                                                      - - -

                                                      Allowed SMTP XCLIENT attributes.

                                                      - - - - public - static array<string|int, mixed> - $xclient_allowed_attributes - = ['NAME', 'ADDR', 'PORT', 'PROTO', 'HELO', 'LOGIN', 'DESTADDR', 'DESTPORT'] - -

                                                      Must be allowed by the SMTP server. EHLO response is not checked.

                                                      -
                                                      - - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - https://www.postfix.org/XCLIENT_README.html - - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      -

                                                      - $error - - - - -

                                                      - - -

                                                      Error information, if any, for the last SMTP command.

                                                      - - - - protected - array<string|int, mixed> - $error - = ['error' => '', 'detail' => '', 'smtp_code' => '', 'smtp_code_ex' => ''] - - - - - - - - - -
                                                      -
                                                      -

                                                      - $helo_rply - - - - -

                                                      - - -

                                                      The reply the server sent to us for HELO.

                                                      - - - - protected - string|null - $helo_rply - - -

                                                      If null, no HELO string has yet been received.

                                                      -
                                                      - - - - - - - - -
                                                      -
                                                      -

                                                      - $last_reply - - - - -

                                                      - - -

                                                      The most recent reply received from the server.

                                                      - - - - protected - string - $last_reply - = '' - - - - - - - - - -
                                                      -
                                                      -

                                                      - $last_smtp_transaction_id - - - - -

                                                      - - -

                                                      The last transaction ID issued in response to a DATA command, -if one was detected.

                                                      - - - - protected - string|bool|null - $last_smtp_transaction_id - - - - - - - - - - -
                                                      -
                                                      -

                                                      - $server_caps - - - - -

                                                      - - -

                                                      The set of SMTP extensions sent in reply to EHLO command.

                                                      - - - - protected - array<string|int, mixed>|null - $server_caps - - -

                                                      Indexes of the array are extension names. -Value at index 'HELO' or 'EHLO' (according to command that was sent) -represents the server name. In case of HELO it is the only element of the array. -Other values can be boolean TRUE or an array containing extension options. -If null, no HELO/EHLO string has yet been received.

                                                      -
                                                      - - - - - - - - -
                                                      -
                                                      -

                                                      - $smtp_conn - - - - -

                                                      - - -

                                                      The socket for the server connection.

                                                      - - - - protected - resource|null - $smtp_conn - - - - - - - - - - -
                                                      -
                                                      -

                                                      - $smtp_transaction_id_patterns - - - - -

                                                      - - -

                                                      Patterns to extract an SMTP transaction id from reply to a DATA command.

                                                      - - - - protected - array<string|int, string> - $smtp_transaction_id_patterns - = ['exim' => '/[\d]{3} OK id=(.*)/', 'sendmail' => '/[\d]{3} 2\.0\.0 (.*) Message/', 'postfix' => '/[\d]{3} 2\.0\.0 Ok: queued as (.*)/', 'Microsoft_ESMTP' => '/[0-9]{3} 2\.[\d]\.0 (.*)@(?:.*) Queued mail for delivery/', 'Amazon_SES' => '/[\d]{3} Ok (.*)/', 'SendGrid' => '/[\d]{3} Ok: queued as (.*)/', 'CampaignMonitor' => '/[\d]{3} 2\.0\.0 OK:([a-zA-Z\d]{48})/', 'Haraka' => '/[\d]{3} Message Queued \((.*)\)/', 'ZoneMTA' => '/[\d]{3} Message queued as (.*)/', 'Mailjet' => '/[\d]{3} OK queued as (.*)/'] - -

                                                      The first capture group in each regex will be used as the ID. -MS ESMTP returns the message ID, which may not be correct for internal tracking.

                                                      -
                                                      - - - - - - - - -
                                                      -
                                                      - -
                                                      -

                                                      - Methods - - -

                                                      -
                                                      -

                                                      - authenticate() - - -

                                                      - - -

                                                      Perform SMTP authentication.

                                                      - - - public - authenticate(string $username, string $password[, string $authtype = null ][, OAuthTokenProvider $OAuth = null ]) : bool - -
                                                      -
                                                      - -

                                                      Must be run after hello().

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $username - : string -
                                                      -
                                                      -

                                                      The user name

                                                      -
                                                      - -
                                                      -
                                                      - $password - : string -
                                                      -
                                                      -

                                                      The password

                                                      -
                                                      - -
                                                      -
                                                      - $authtype - : string - = null
                                                      -
                                                      -

                                                      The auth type (CRAM-MD5, PLAIN, LOGIN, XOAUTH2)

                                                      -
                                                      - -
                                                      -
                                                      - $OAuth - : OAuthTokenProvider - = null
                                                      -
                                                      -

                                                      An optional OAuthTokenProvider instance for XOAUTH2 authentication

                                                      -
                                                      - -
                                                      -
                                                      - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - hello() - - -
                                                      -
                                                      - - - -
                                                      -
                                                      Return values
                                                      - bool - — -

                                                      True if successfully authenticated

                                                      -
                                                      - -
                                                      - -
                                                      -
                                                      -

                                                      - client_send() - - -

                                                      - - -

                                                      Send raw data to the server.

                                                      - - - public - client_send(string $data[, string $command = '' ]) : int|bool - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $data - : string -
                                                      -
                                                      -

                                                      The data to send

                                                      -
                                                      - -
                                                      -
                                                      - $command - : string - = ''
                                                      -
                                                      -

                                                      Optionally, the command this is part of, used only for controlling debug output

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - int|bool - — -

                                                      The number of bytes sent to the server or false on error

                                                      -
                                                      - -
                                                      - -
                                                      -
                                                      -

                                                      - close() - - -

                                                      - - -

                                                      Close the socket and clean up the state of the class.

                                                      - - - public - close() : mixed - -
                                                      -
                                                      - -

                                                      Don't use this function without first trying to use QUIT.

                                                      -
                                                      - - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - quit() - - -
                                                      -
                                                      - - - - -
                                                      -
                                                      -

                                                      - connect() - - -

                                                      - - -

                                                      Connect to an SMTP server.

                                                      - - - public - connect(string $host[, int $port = null ][, int $timeout = 30 ][, array<string|int, mixed> $options = [] ]) : bool - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $host - : string -
                                                      -
                                                      -

                                                      SMTP server IP or host name

                                                      -
                                                      - -
                                                      -
                                                      - $port - : int - = null
                                                      -
                                                      -

                                                      The port number to connect to

                                                      -
                                                      - -
                                                      -
                                                      - $timeout - : int - = 30
                                                      -
                                                      -

                                                      How long to wait for the connection to open

                                                      -
                                                      - -
                                                      -
                                                      - $options - : array<string|int, mixed> - = []
                                                      -
                                                      -

                                                      An array of options for stream_context_create()

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - connected() - - -

                                                      - - -

                                                      Check connection state.

                                                      - - - public - connected() : bool - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - bool - — -

                                                      True if connected

                                                      -
                                                      - -
                                                      - -
                                                      -
                                                      -

                                                      - data() - - -

                                                      - - -

                                                      Send an SMTP DATA command.

                                                      - - - public - data(string $msg_data) : bool - -
                                                      -
                                                      - -

                                                      Issues a data command and sends the msg_data to the server, -finalizing the mail transaction. $msg_data is the message -that is to be sent with the headers. Each header needs to be -on a single line followed by a <CRLF> with the message headers -and the message body being separated by an additional <CRLF>. -Implements RFC 821: DATA <CRLF>.

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $msg_data - : string -
                                                      -
                                                      -

                                                      Message data to send

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - getDebugLevel() - - -

                                                      - - -

                                                      Get debug output level.

                                                      - - - public - getDebugLevel() : int - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - int -
                                                      - -
                                                      -
                                                      -

                                                      - getDebugOutput() - - -

                                                      - - -

                                                      Get debug output method.

                                                      - - - public - getDebugOutput() : string - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - string -
                                                      - -
                                                      -
                                                      -

                                                      - getError() - - -

                                                      - - -

                                                      Get the latest error.

                                                      - - - public - getError() : array<string|int, mixed> - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - array<string|int, mixed> -
                                                      - -
                                                      -
                                                      -

                                                      - getLastReply() - - -

                                                      - - -

                                                      Get the last reply from the server.

                                                      - - - public - getLastReply() : string - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - string -
                                                      - -
                                                      -
                                                      -

                                                      - getLastTransactionID() - - -

                                                      - - -

                                                      Get the queue/transaction ID of the last SMTP transaction -If no reply has been received yet, it will return null.

                                                      - - - public - getLastTransactionID() : bool|string|null - -
                                                      -
                                                      - -

                                                      If no pattern was matched, it will return false.

                                                      -
                                                      - - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - recordLastTransactionID() - - -
                                                      -
                                                      - - - -
                                                      -
                                                      Return values
                                                      - bool|string|null -
                                                      - -
                                                      -
                                                      -

                                                      - getServerExt() - - -

                                                      - - -

                                                      Get metadata about the SMTP server from its HELO/EHLO response.

                                                      - - - public - getServerExt(string $name) : string|bool|null - -
                                                      -
                                                      - -

                                                      The method works in three ways, dependent on argument value and current state:

                                                      -
                                                        -
                                                      1. HELO/EHLO has not been sent - returns null and populates $this->error.
                                                      2. -
                                                      3. HELO has been sent - -$name == 'HELO': returns server name -$name == 'EHLO': returns boolean false -$name == any other string: returns null and populates $this->error
                                                      4. -
                                                      5. EHLO has been sent - -$name == 'HELO'|'EHLO': returns the server name -$name == any other string: if extension $name exists, returns True -or its options (e.g. AUTH mechanisms supported). Otherwise returns False.
                                                      6. -
                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $name - : string -
                                                      -
                                                      -

                                                      Name of SMTP extension or 'HELO'|'EHLO'

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - string|bool|null -
                                                      - -
                                                      -
                                                      -

                                                      - getServerExtList() - - -

                                                      - - -

                                                      Get SMTP extensions available on the server.

                                                      - - - public - getServerExtList() : array<string|int, mixed>|null - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - array<string|int, mixed>|null -
                                                      - -
                                                      -
                                                      -

                                                      - getSMTPUTF8() - - -

                                                      - - -

                                                      Get SMTPUTF8 use.

                                                      - - - public - getSMTPUTF8() : bool - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - getTimeout() - - -

                                                      - - -

                                                      Get SMTP timeout.

                                                      - - - public - getTimeout() : int - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - int -
                                                      - -
                                                      -
                                                      -

                                                      - getVerp() - - -

                                                      - - -

                                                      Get VERP address generation mode.

                                                      - - - public - getVerp() : bool - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - hello() - - -

                                                      - - -

                                                      Send an SMTP HELO or EHLO command.

                                                      - - - public - hello([string $host = '' ]) : bool - -
                                                      -
                                                      - -

                                                      Used to identify the sending server to the receiving server. -This makes sure that client and server are in a known state. -Implements RFC 821: HELO <SP> <CRLF> -and RFC 2821 EHLO.

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $host - : string - = ''
                                                      -
                                                      -

                                                      The host name or IP to connect to

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - mail() - - -

                                                      - - -

                                                      Send an SMTP MAIL command.

                                                      - - - public - mail(string $from) : bool - -
                                                      -
                                                      - -

                                                      Starts a mail transaction from the email address specified in -$from. Returns true if successful or false otherwise. If True -the mail transaction is started and then one or more recipient -commands may be called followed by a data command. -Implements RFC 821: MAIL <SP> FROM: <CRLF> and -two extensions, namely XVERP and SMTPUTF8.

                                                      -

                                                      The server's EHLO response is not checked. If use of either -extensions is enabled even though the server does not support -that, mail submission will fail.

                                                      -

                                                      XVERP is documented at https://www.postfix.org/VERP_README.html -and SMTPUTF8 is specified in RFC 6531.

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $from - : string -
                                                      -
                                                      -

                                                      Source address of this message

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - noop() - - -

                                                      - - -

                                                      Send an SMTP NOOP command.

                                                      - - - public - noop() : bool - -
                                                      -
                                                      - -

                                                      Used to keep keep-alives alive, doesn't actually do anything.

                                                      -
                                                      - - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - quit() - - -

                                                      - - -

                                                      Send an SMTP QUIT command.

                                                      - - - public - quit([bool $close_on_error = true ]) : bool - -
                                                      -
                                                      - -

                                                      Closes the socket if there is no error or the $close_on_error argument is true. -Implements from RFC 821: QUIT <CRLF>.

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $close_on_error - : bool - = true
                                                      -
                                                      -

                                                      Should the connection close if an error occurs?

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - recipient() - - -

                                                      - - -

                                                      Send an SMTP RCPT command.

                                                      - - - public - recipient(string $address[, string $dsn = '' ]) : bool - -
                                                      -
                                                      - -

                                                      Sets the TO argument to $toaddr. -Returns true if the recipient was accepted false if it was rejected. -Implements from RFC 821: RCPT <SP> TO: <CRLF>.

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $address - : string -
                                                      -
                                                      -

                                                      The address the message is being sent to

                                                      -
                                                      - -
                                                      -
                                                      - $dsn - : string - = ''
                                                      -
                                                      -

                                                      Comma separated list of DSN notifications. NEVER, SUCCESS, FAILURE -or DELAY. If you specify NEVER all other notifications are ignored.

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - reset() - - -

                                                      - - -

                                                      Send an SMTP RSET command.

                                                      - - - public - reset() : bool - -
                                                      -
                                                      - -

                                                      Abort any transaction that is currently in progress. -Implements RFC 821: RSET <CRLF>.

                                                      -
                                                      - - - - - - -
                                                      -
                                                      Return values
                                                      - bool - — -

                                                      True on success

                                                      -
                                                      - -
                                                      - -
                                                      -
                                                      -

                                                      - sendAndMail() - - -

                                                      - - -

                                                      Send an SMTP SAML command.

                                                      - - - public - sendAndMail(string $from) : bool - -
                                                      -
                                                      - -

                                                      Starts a mail transaction from the email address specified in $from. -Returns true if successful or false otherwise. If True -the mail transaction is started and then one or more recipient -commands may be called followed by a data command. This command -will send the message to the users terminal if they are logged -in and send them an email. -Implements RFC 821: SAML <SP> FROM: <CRLF>.

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $from - : string -
                                                      -
                                                      -

                                                      The address the message is from

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - setDebugLevel() - - -

                                                      - - -

                                                      Set debug output level.

                                                      - - - public - setDebugLevel([int $level = 0 ]) : mixed - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $level - : int - = 0
                                                      -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      -
                                                      -

                                                      - setDebugOutput() - - -

                                                      - - -

                                                      Set debug output method.

                                                      - - - public - setDebugOutput([string|callable $method = 'echo' ]) : mixed - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $method - : string|callable - = 'echo'
                                                      -
                                                      -

                                                      The name of the mechanism to use for debugging output, or a callable to handle it

                                                      -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      -
                                                      -

                                                      - setSMTPUTF8() - - -

                                                      - - -

                                                      Enable or disable use of SMTPUTF8.

                                                      - - - public - setSMTPUTF8([bool $enabled = false ]) : mixed - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $enabled - : bool - = false
                                                      -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      -
                                                      -

                                                      - setTimeout() - - -

                                                      - - -

                                                      Set SMTP timeout.

                                                      - - - public - setTimeout([int $timeout = 0 ]) : mixed - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $timeout - : int - = 0
                                                      -
                                                      -

                                                      The timeout duration in seconds

                                                      -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      -
                                                      -

                                                      - setVerp() - - -

                                                      - - -

                                                      Enable or disable VERP address generation.

                                                      - - - public - setVerp([bool $enabled = false ]) : mixed - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $enabled - : bool - = false
                                                      -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      -
                                                      -

                                                      - startTLS() - - -

                                                      - - -

                                                      Initiate a TLS (encrypted) session.

                                                      - - - public - startTLS() : bool - -
                                                      -
                                                      - - - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - turn() - - -

                                                      - - -

                                                      Send an SMTP TURN command.

                                                      - - - public - turn() : bool - -
                                                      -
                                                      - -

                                                      This is an optional command for SMTP that this class does not support. -This method is here to make the RFC821 Definition complete for this class -and may be implemented in future. -Implements from RFC 821: TURN <CRLF>.

                                                      -
                                                      - - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - verify() - - -

                                                      - - -

                                                      Send an SMTP VRFY command.

                                                      - - - public - verify(string $name) : bool - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $name - : string -
                                                      -
                                                      -

                                                      The name to verify

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - xclient() - - -

                                                      - - -

                                                      Send SMTP XCLIENT command to server and check its return code.

                                                      - - - public - xclient(array<string|int, mixed> $vars) : bool - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $vars - : array<string|int, mixed> -
                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool - — -

                                                      True on success

                                                      -
                                                      - -
                                                      - -
                                                      -
                                                      -

                                                      - edebug() - - -

                                                      - - -

                                                      Output debugging info via a user-selected method.

                                                      - - - protected - edebug(string $str[, int $level = 0 ]) : mixed - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $str - : string -
                                                      -
                                                      -

                                                      Debug string to output

                                                      -
                                                      - -
                                                      -
                                                      - $level - : int - = 0
                                                      -
                                                      -

                                                      The debug level of this message; see DEBUG_* constants

                                                      -
                                                      - -
                                                      -
                                                      - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - SMTP::$Debugoutput - - -
                                                      -
                                                      - see -
                                                      -
                                                      - SMTP::$do_debug - - -
                                                      -
                                                      - - - - -
                                                      -
                                                      -

                                                      - errorHandler() - - -

                                                      - - -

                                                      Reports an error number and string.

                                                      - - - protected - errorHandler(int $errno, string $errmsg[, string $errfile = '' ][, int $errline = 0 ]) : mixed - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $errno - : int -
                                                      -
                                                      -

                                                      The error number returned by PHP

                                                      -
                                                      - -
                                                      -
                                                      - $errmsg - : string -
                                                      -
                                                      -

                                                      The error message returned by PHP

                                                      -
                                                      - -
                                                      -
                                                      - $errfile - : string - = ''
                                                      -
                                                      -

                                                      The file the error occurred in

                                                      -
                                                      - -
                                                      -
                                                      - $errline - : int - = 0
                                                      -
                                                      -

                                                      The line number the error occurred on

                                                      -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      -
                                                      -

                                                      - get_lines() - - -

                                                      - - -

                                                      Read the SMTP server's response.

                                                      - - - protected - get_lines() : string - -
                                                      -
                                                      - -

                                                      Either before eof or socket timeout occurs on the operation. -With SMTP we can tell if we have more lines to read if the -4th character is '-' symbol. If it is a space then we don't -need to read anything else.

                                                      -
                                                      - - - - - - -
                                                      -
                                                      Return values
                                                      - string -
                                                      - -
                                                      -
                                                      -

                                                      - getSMTPConnection() - - -

                                                      - - -

                                                      Create connection to the SMTP server.

                                                      - - - protected - getSMTPConnection(string $host[, int $port = null ][, int $timeout = 30 ][, array<string|int, mixed> $options = [] ]) : false|resource - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $host - : string -
                                                      -
                                                      -

                                                      SMTP server IP or host name

                                                      -
                                                      - -
                                                      -
                                                      - $port - : int - = null
                                                      -
                                                      -

                                                      The port number to connect to

                                                      -
                                                      - -
                                                      -
                                                      - $timeout - : int - = 30
                                                      -
                                                      -

                                                      How long to wait for the connection to open

                                                      -
                                                      - -
                                                      -
                                                      - $options - : array<string|int, mixed> - = []
                                                      -
                                                      -

                                                      An array of options for stream_context_create()

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - false|resource -
                                                      - -
                                                      -
                                                      -

                                                      - hmac() - - -

                                                      - - -

                                                      Calculate an MD5 HMAC hash.

                                                      - - - protected - hmac(string $data, string $key) : string - -
                                                      -
                                                      - -

                                                      Works like hash_hmac('md5', $data, $key) -in case that function is not available.

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $data - : string -
                                                      -
                                                      -

                                                      The data to hash

                                                      -
                                                      - -
                                                      -
                                                      - $key - : string -
                                                      -
                                                      -

                                                      The key to hash with

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - string -
                                                      - -
                                                      -
                                                      -

                                                      - parseHelloFields() - - -

                                                      - - -

                                                      Parse a reply to HELO/EHLO command to discover server extensions.

                                                      - - - protected - parseHelloFields(string $type) : mixed - -
                                                      -
                                                      - -

                                                      In case of HELO, the only parameter that can be discovered is a server name.

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $type - : string -
                                                      -
                                                      -

                                                      HELO or EHLO

                                                      -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      -
                                                      -

                                                      - recordLastTransactionID() - - -

                                                      - - -

                                                      Extract and return the ID of the last SMTP transaction based on -a list of patterns provided in SMTP::$smtp_transaction_id_patterns.

                                                      - - - protected - recordLastTransactionID() : bool|string|null - -
                                                      -
                                                      - -

                                                      Relies on the host providing the ID in response to a DATA command. -If no reply has been received yet, it will return null. -If no pattern was matched, it will return false.

                                                      -
                                                      - - - - - - -
                                                      -
                                                      Return values
                                                      - bool|string|null -
                                                      - -
                                                      -
                                                      -

                                                      - sendCommand() - - -

                                                      - - -

                                                      Send a command to an SMTP server and check its return code.

                                                      - - - protected - sendCommand(string $command, string $commandstring, int|array<string|int, mixed> $expect) : bool - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $command - : string -
                                                      -
                                                      -

                                                      The command name - not sent to the server

                                                      -
                                                      - -
                                                      -
                                                      - $commandstring - : string -
                                                      -
                                                      -

                                                      The actual command to send

                                                      -
                                                      - -
                                                      -
                                                      - $expect - : int|array<string|int, mixed> -
                                                      -
                                                      -

                                                      One or more expected integer success codes

                                                      -
                                                      - -
                                                      -
                                                      - - - - - -
                                                      -
                                                      Return values
                                                      - bool - — -

                                                      True on success

                                                      -
                                                      - -
                                                      - -
                                                      -
                                                      -

                                                      - sendHello() - - -

                                                      - - -

                                                      Send an SMTP HELO or EHLO command.

                                                      - - - protected - sendHello(string $hello, string $host) : bool - -
                                                      -
                                                      - -

                                                      Low-level implementation used by hello().

                                                      -
                                                      - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $hello - : string -
                                                      -
                                                      -

                                                      The HELO string

                                                      -
                                                      - -
                                                      -
                                                      - $host - : string -
                                                      -
                                                      -

                                                      The hostname to say we are

                                                      -
                                                      - -
                                                      -
                                                      - - -
                                                      - Tags - - -
                                                      -
                                                      -
                                                      - see -
                                                      -
                                                      - hello() - - -
                                                      -
                                                      - - - -
                                                      -
                                                      Return values
                                                      - bool -
                                                      - -
                                                      -
                                                      -

                                                      - setError() - - -

                                                      - - -

                                                      Set error messages and codes.

                                                      - - - protected - setError(string $message[, string $detail = '' ][, string $smtp_code = '' ][, string $smtp_code_ex = '' ]) : mixed - -
                                                      -
                                                      - - -
                                                      Parameters
                                                      -
                                                      -
                                                      - $message - : string -
                                                      -
                                                      -

                                                      The error message

                                                      -
                                                      - -
                                                      -
                                                      - $detail - : string - = ''
                                                      -
                                                      -

                                                      Further detail on the error

                                                      -
                                                      - -
                                                      -
                                                      - $smtp_code - : string - = ''
                                                      -
                                                      -

                                                      An associated SMTP error code

                                                      -
                                                      - -
                                                      -
                                                      - $smtp_code_ex - : string - = ''
                                                      -
                                                      -

                                                      Extended SMTP code

                                                      -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      -
                                                      - -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      
                                                      -        
                                                      - -
                                                      -
                                                      - - - -
                                                      -
                                                      -
                                                      - -
                                                      - On this page - - -
                                                      - -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -

                                                      Search results

                                                      - -
                                                      -
                                                      -
                                                        -
                                                        -
                                                        -
                                                        -
                                                        - - -
                                                        - - - - - - - - diff --git a/docs/classes/PendingRegistration.html b/docs/classes/PendingRegistration.html deleted file mode 100644 index ef6b2c5a..00000000 --- a/docs/classes/PendingRegistration.html +++ /dev/null @@ -1,935 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                        -

                                                        SAE Project Documentation

                                                        - - - - - -
                                                        - -
                                                        -
                                                        - - - - -
                                                        -
                                                        -
                                                          -
                                                        - -
                                                        -

                                                        - PendingRegistration - - -
                                                        - in package - -
                                                        - - -

                                                        - -
                                                        - - -
                                                        - - - -

                                                        PendingRegistration Model - CRUD operations for pending registrations with PDO

                                                        - - - - - - - - - -

                                                        - Table of Contents - - -

                                                        - - - - - - - - - -

                                                        - Properties - - -

                                                        -
                                                        -
                                                        - $pdo - -  : mixed -
                                                        - -
                                                        - -

                                                        - Methods - - -

                                                        -
                                                        -
                                                        - __construct() - -  : mixed -
                                                        - -
                                                        - create() - -  : bool -
                                                        -
                                                        CREATE - Create a new pending registration
                                                        - -
                                                        - delete() - -  : bool -
                                                        -
                                                        DELETE - Delete a pending registration by email
                                                        - -
                                                        - deleteExpired() - -  : bool -
                                                        -
                                                        DELETE - Delete expired pending registrations (older than 15 minutes)
                                                        - -
                                                        - emailExists() - -  : bool -
                                                        -
                                                        READ - Check if an email exists in pending registrations
                                                        - -
                                                        - findByEmail() - -  : array<string|int, mixed>|false -
                                                        -
                                                        READ - Find a pending registration by email
                                                        - -
                                                        - updateCode() - -  : bool -
                                                        -
                                                        UPDATE - Update verification code
                                                        - -
                                                        - verifyCode() - -  : bool -
                                                        -
                                                        Verify verification code
                                                        - -
                                                        - - - - - - -
                                                        -

                                                        - Properties - - -

                                                        - -
                                                        - -
                                                        -

                                                        - Methods - - -

                                                        -
                                                        -

                                                        - __construct() - - -

                                                        - - - - - public - __construct() : mixed - -
                                                        -
                                                        - - - - - - - - -
                                                        -
                                                        -

                                                        - create() - - -

                                                        - - -

                                                        CREATE - Create a new pending registration

                                                        - - - public - create(string $lastName, string $firstName, string $email, string $password, string $verificationCode) : bool - -
                                                        -
                                                        - - -
                                                        Parameters
                                                        -
                                                        -
                                                        - $lastName - : string -
                                                        -
                                                        -

                                                        User's last name

                                                        -
                                                        - -
                                                        -
                                                        - $firstName - : string -
                                                        -
                                                        -

                                                        User's first name

                                                        -
                                                        - -
                                                        -
                                                        - $email - : string -
                                                        -
                                                        -

                                                        User's email

                                                        -
                                                        - -
                                                        -
                                                        - $password - : string -
                                                        -
                                                        -

                                                        User's password (will be hashed)

                                                        -
                                                        - -
                                                        -
                                                        - $verificationCode - : string -
                                                        -
                                                        -

                                                        Verification code

                                                        -
                                                        - -
                                                        -
                                                        - - - - - -
                                                        -
                                                        Return values
                                                        - bool - — -

                                                        Success status

                                                        -
                                                        - -
                                                        - -
                                                        -
                                                        -

                                                        - delete() - - -

                                                        - - -

                                                        DELETE - Delete a pending registration by email

                                                        - - - public - delete(string $email) : bool - -
                                                        -
                                                        - - -
                                                        Parameters
                                                        -
                                                        -
                                                        - $email - : string -
                                                        -
                                                        -

                                                        Email of registration to delete

                                                        -
                                                        - -
                                                        -
                                                        - - - - - -
                                                        -
                                                        Return values
                                                        - bool - — -

                                                        Success status

                                                        -
                                                        - -
                                                        - -
                                                        -
                                                        -

                                                        - deleteExpired() - - -

                                                        - - -

                                                        DELETE - Delete expired pending registrations (older than 15 minutes)

                                                        - - - public - deleteExpired() : bool - -
                                                        -
                                                        - - - - - - - -
                                                        -
                                                        Return values
                                                        - bool - — -

                                                        Success status

                                                        -
                                                        - -
                                                        - -
                                                        -
                                                        -

                                                        - emailExists() - - -

                                                        - - -

                                                        READ - Check if an email exists in pending registrations

                                                        - - - public - emailExists(string $email) : bool - -
                                                        -
                                                        - - -
                                                        Parameters
                                                        -
                                                        -
                                                        - $email - : string -
                                                        -
                                                        -

                                                        Email to check

                                                        -
                                                        - -
                                                        -
                                                        - - - - - -
                                                        -
                                                        Return values
                                                        - bool - — -

                                                        True if email exists, false otherwise

                                                        -
                                                        - -
                                                        - -
                                                        -
                                                        -

                                                        - findByEmail() - - -

                                                        - - -

                                                        READ - Find a pending registration by email

                                                        - - - public - findByEmail(string $email) : array<string|int, mixed>|false - -
                                                        -
                                                        - - -
                                                        Parameters
                                                        -
                                                        -
                                                        - $email - : string -
                                                        -
                                                        -

                                                        Email to search for

                                                        -
                                                        - -
                                                        -
                                                        - - - - - -
                                                        -
                                                        Return values
                                                        - array<string|int, mixed>|false - — -

                                                        Registration data or false if not found

                                                        -
                                                        - -
                                                        - -
                                                        -
                                                        -

                                                        - updateCode() - - -

                                                        - - -

                                                        UPDATE - Update verification code

                                                        - - - public - updateCode(string $email, string $newCode) : bool - -
                                                        -
                                                        - - -
                                                        Parameters
                                                        -
                                                        -
                                                        - $email - : string -
                                                        -
                                                        -

                                                        User's email

                                                        -
                                                        - -
                                                        -
                                                        - $newCode - : string -
                                                        -
                                                        -

                                                        New verification code

                                                        -
                                                        - -
                                                        -
                                                        - - - - - -
                                                        -
                                                        Return values
                                                        - bool - — -

                                                        Success status

                                                        -
                                                        - -
                                                        - -
                                                        -
                                                        -

                                                        - verifyCode() - - -

                                                        - - -

                                                        Verify verification code

                                                        - - - public - verifyCode(string $email, string $code) : bool - -
                                                        -
                                                        - - -
                                                        Parameters
                                                        -
                                                        -
                                                        - $email - : string -
                                                        -
                                                        -

                                                        User's email

                                                        -
                                                        - -
                                                        -
                                                        - $code - : string -
                                                        -
                                                        -

                                                        Verification code to check

                                                        -
                                                        - -
                                                        -
                                                        - - - - - -
                                                        -
                                                        Return values
                                                        - bool - — -

                                                        True if code is valid, false otherwise

                                                        -
                                                        - -
                                                        - -
                                                        -
                                                        - -
                                                        -
                                                        -
                                                        -
                                                        -
                                                        
                                                        -        
                                                        - -
                                                        -
                                                        - - - -
                                                        -
                                                        -
                                                        - -
                                                        - On this page - - -
                                                        - -
                                                        -
                                                        -
                                                        -
                                                        -
                                                        -

                                                        Search results

                                                        - -
                                                        -
                                                        -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          - - -
                                                          - - - - - - - - diff --git a/docs/classes/Resource.html b/docs/classes/Resource.html deleted file mode 100644 index 730ef284..00000000 --- a/docs/classes/Resource.html +++ /dev/null @@ -1,1045 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                          -

                                                          SAE Project Documentation

                                                          - - - - - -
                                                          - -
                                                          -
                                                          - - - - -
                                                          -
                                                          -
                                                            -
                                                          - -
                                                          -

                                                          - Resource - - -
                                                          - in package - -
                                                          - - -

                                                          - -
                                                          - - -
                                                          - - - - - - - - - - - - -

                                                          - Table of Contents - - -

                                                          - - - - - - - - - -

                                                          - Properties - - -

                                                          -
                                                          -
                                                          - $access_type - -  : string -
                                                          - -
                                                          - $date_creation - -  : string -
                                                          - -
                                                          - $description - -  : string|null -
                                                          - -
                                                          - $image_path - -  : string|null -
                                                          - -
                                                          - $owner_firstname - -  : string -
                                                          - -
                                                          - $owner_lastname - -  : string -
                                                          - -
                                                          - $owner_user_id - -  : int -
                                                          - -
                                                          - $resource_id - -  : int -
                                                          - -
                                                          - $resource_name - -  : string -
                                                          - -
                                                          - $db - -  : PDO|null -
                                                          - -
                                                          - -

                                                          - Methods - - -

                                                          -
                                                          -
                                                          - __construct() - -  : mixed -
                                                          - -
                                                          - getAllAccessibleResources() - -  : array<string|int, mixed> -
                                                          - -
                                                          - getResourceById() - -  : resource|null -
                                                          - -
                                                          - hydrate() - -  : self -
                                                          - -
                                                          - - - - - - -
                                                          -

                                                          - Properties - - -

                                                          -
                                                          -

                                                          - $access_type - - - - -

                                                          - - - - - - public - string - $access_type - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $date_creation - - - - -

                                                          - - - - - - public - string - $date_creation - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $description - - - - -

                                                          - - - - - - public - string|null - $description - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $image_path - - - - -

                                                          - - - - - - public - string|null - $image_path - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $owner_firstname - - - - -

                                                          - - - - - - public - string - $owner_firstname - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $owner_lastname - - - - -

                                                          - - - - - - public - string - $owner_lastname - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $owner_user_id - - - - -

                                                          - - - - - - public - int - $owner_user_id - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $resource_id - - - - -

                                                          - - - - - - public - int - $resource_id - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $resource_name - - - - -

                                                          - - - - - - public - string - $resource_name - - - - - - - - - - -
                                                          -
                                                          -

                                                          - $db - - - - -

                                                          - - - - - - private - PDO|null - $db - - - - - - - - - - -
                                                          -
                                                          - -
                                                          -

                                                          - Methods - - -

                                                          -
                                                          -

                                                          - __construct() - - -

                                                          - - - - - public - __construct([PDO $db = null ]) : mixed - -
                                                          -
                                                          - - -
                                                          Parameters
                                                          -
                                                          -
                                                          - $db - : PDO - = null
                                                          -
                                                          - -
                                                          -
                                                          - - - - - - -
                                                          -
                                                          -

                                                          - getAllAccessibleResources() - - -

                                                          - - - - - public - static getAllAccessibleResources(PDO $db, int $userId) : array<string|int, mixed> - -
                                                          -
                                                          - - -
                                                          Parameters
                                                          -
                                                          -
                                                          - $db - : PDO -
                                                          -
                                                          - -
                                                          -
                                                          - $userId - : int -
                                                          -
                                                          - -
                                                          -
                                                          - - - - - -
                                                          -
                                                          Return values
                                                          - array<string|int, mixed> -
                                                          - -
                                                          -
                                                          -

                                                          - getResourceById() - - -

                                                          - - - - - public - static getResourceById(PDO $db, int $resourceId) : resource|null - -
                                                          -
                                                          - - -
                                                          Parameters
                                                          -
                                                          -
                                                          - $db - : PDO -
                                                          -
                                                          - -
                                                          -
                                                          - $resourceId - : int -
                                                          -
                                                          - -
                                                          -
                                                          - - - - - -
                                                          -
                                                          Return values
                                                          - resource|null -
                                                          - -
                                                          -
                                                          -

                                                          - hydrate() - - -

                                                          - - - - - public - hydrate(array<string|int, mixed> $data) : self - -
                                                          -
                                                          - - -
                                                          Parameters
                                                          -
                                                          -
                                                          - $data - : array<string|int, mixed> -
                                                          -
                                                          - -
                                                          -
                                                          - - - - - -
                                                          -
                                                          Return values
                                                          - self -
                                                          - -
                                                          -
                                                          - -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          
                                                          -        
                                                          - -
                                                          -
                                                          - - - -
                                                          -
                                                          -
                                                          - -
                                                          - On this page - - -
                                                          - -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -

                                                          Search results

                                                          - -
                                                          -
                                                          -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - -
                                                            - - - - - - - - diff --git a/docs/classes/Router.html b/docs/classes/Router.html deleted file mode 100644 index f477e731..00000000 --- a/docs/classes/Router.html +++ /dev/null @@ -1,563 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                            -

                                                            SAE Project Documentation

                                                            - - - - - -
                                                            - -
                                                            -
                                                            - - - - -
                                                            -
                                                            -
                                                              -
                                                            - -
                                                            -

                                                            - Router - - -
                                                            - in package - -
                                                            - - -

                                                            - -
                                                            - - -
                                                            - - - -

                                                            Router class - Main application router -Handles URL routing and controller dispatching with namespaces

                                                            - - - - - - - - - -

                                                            - Table of Contents - - -

                                                            - - - - - - - - - - -

                                                            - Methods - - -

                                                            -
                                                            -
                                                            - route() - -  : mixed -
                                                            -
                                                            Route the request to the appropriate controller
                                                            - -
                                                            - loadController() - -  : mixed -
                                                            -
                                                            Load and execute controller method (legacy - old controllers)
                                                            - -
                                                            - loadNamespacedController() - -  : mixed -
                                                            -
                                                            Load and execute namespaced controller method (new MVC structure)
                                                            - -
                                                            - loadView() - -  : mixed -
                                                            -
                                                            Load a static view directly
                                                            - -
                                                            - - - - - - - -
                                                            -

                                                            - Methods - - -

                                                            -
                                                            -

                                                            - route() - - -

                                                            - - -

                                                            Route the request to the appropriate controller

                                                            - - - public - route() : mixed - -
                                                            -
                                                            - - - - - - - - -
                                                            -
                                                            -

                                                            - loadController() - - -

                                                            - - -

                                                            Load and execute controller method (legacy - old controllers)

                                                            - - - private - loadController(mixed $controllerName, mixed $method) : mixed - -
                                                            -
                                                            - - -
                                                            Parameters
                                                            -
                                                            -
                                                            - $controllerName - : mixed -
                                                            -
                                                            - -
                                                            -
                                                            - $method - : mixed -
                                                            -
                                                            - -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            -

                                                            - loadNamespacedController() - - -

                                                            - - -

                                                            Load and execute namespaced controller method (new MVC structure)

                                                            - - - private - loadNamespacedController(mixed $fullyQualifiedClassName, mixed $method) : mixed - -
                                                            -
                                                            - - -
                                                            Parameters
                                                            -
                                                            -
                                                            - $fullyQualifiedClassName - : mixed -
                                                            -
                                                            - -
                                                            -
                                                            - $method - : mixed -
                                                            -
                                                            - -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            -

                                                            - loadView() - - -

                                                            - - -

                                                            Load a static view directly

                                                            - - - private - loadView(mixed $viewPath) : mixed - -
                                                            -
                                                            - - -
                                                            Parameters
                                                            -
                                                            -
                                                            - $viewPath - : mixed -
                                                            -
                                                            - -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            
                                                            -        
                                                            - -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            - -
                                                            - On this page - - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            Search results

                                                            - -
                                                            -
                                                            -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - - -
                                                              - - - - - - - - diff --git a/docs/classes/Student.html b/docs/classes/Student.html deleted file mode 100644 index 6a716d23..00000000 --- a/docs/classes/Student.html +++ /dev/null @@ -1,956 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                              -

                                                              SAE Project Documentation

                                                              - - - - - -
                                                              - -
                                                              -
                                                              - - - - -
                                                              -
                                                              -
                                                                -
                                                              - -
                                                              -

                                                              - Student - - -
                                                              - in package - -
                                                              - - -

                                                              - -
                                                              - - -
                                                              - - - -

                                                              Student Model - Handles student data from JSON file

                                                              - - - - - - - - - -

                                                              - Table of Contents - - -

                                                              - - - - - - - - - -

                                                              - Properties - - -

                                                              -
                                                              -
                                                              - $dataFile - -  : mixed -
                                                              - -
                                                              - $exercisesData - -  : mixed -
                                                              - -
                                                              - $exercisesFile - -  : mixed -
                                                              - -
                                                              - -

                                                              - Methods - - -

                                                              -
                                                              -
                                                              - __construct() - -  : mixed -
                                                              - -
                                                              - getAllAttempts() - -  : array<string|int, mixed> -
                                                              -
                                                              Get all attempts from JSON file
                                                              - -
                                                              - getAllStudents() - -  : array<string|int, mixed> -
                                                              -
                                                              Get all unique students (users)
                                                              - -
                                                              - getPaginatedStudents() - -  : array<string|int, mixed> -
                                                              -
                                                              Get paginated students (unique users)
                                                              - -
                                                              - getStudentAttempts() - -  : array<string|int, mixed> -
                                                              -
                                                              Get all attempts for a specific student (user)
                                                              - -
                                                              - getStudentStats() - -  : array<string|int, mixed> -
                                                              -
                                                              Get statistics for a student
                                                              - -
                                                              - getExerciseByName() - -  : array<string|int, mixed>|null -
                                                              -
                                                              Get exercise details by exercise name
                                                              - -
                                                              - loadExercises() - -  : array<string|int, mixed> -
                                                              -
                                                              Load exercises data from JSON file
                                                              - -
                                                              - - - - - - -
                                                              -

                                                              - Properties - - -

                                                              -
                                                              -

                                                              - $dataFile - - - - -

                                                              - - - - - - private - mixed - $dataFile - - - - - - - - - - -
                                                              -
                                                              -

                                                              - $exercisesData - - - - -

                                                              - - - - - - private - mixed - $exercisesData - = \null - - - - - - - - - -
                                                              -
                                                              -

                                                              - $exercisesFile - - - - -

                                                              - - - - - - private - mixed - $exercisesFile - - - - - - - - - - -
                                                              -
                                                              - -
                                                              -

                                                              - Methods - - -

                                                              -
                                                              -

                                                              - __construct() - - -

                                                              - - - - - public - __construct() : mixed - -
                                                              -
                                                              - - - - - - - - -
                                                              -
                                                              -

                                                              - getAllAttempts() - - -

                                                              - - -

                                                              Get all attempts from JSON file

                                                              - - - public - getAllAttempts() : array<string|int, mixed> - -
                                                              -
                                                              - - - - - - - -
                                                              -
                                                              Return values
                                                              - array<string|int, mixed> - — -

                                                              Array of attempts

                                                              -
                                                              - -
                                                              - -
                                                              -
                                                              -

                                                              - getAllStudents() - - -

                                                              - - -

                                                              Get all unique students (users)

                                                              - - - public - getAllStudents() : array<string|int, mixed> - -
                                                              -
                                                              - - - - - - - -
                                                              -
                                                              Return values
                                                              - array<string|int, mixed> - — -

                                                              Array of unique user IDs

                                                              -
                                                              - -
                                                              - -
                                                              -
                                                              -

                                                              - getPaginatedStudents() - - -

                                                              - - -

                                                              Get paginated students (unique users)

                                                              - - - public - getPaginatedStudents([int $page = 1 ][, int $perPage = 15 ]) : array<string|int, mixed> - -
                                                              -
                                                              - - -
                                                              Parameters
                                                              -
                                                              -
                                                              - $page - : int - = 1
                                                              -
                                                              -

                                                              Current page number

                                                              -
                                                              - -
                                                              -
                                                              - $perPage - : int - = 15
                                                              -
                                                              -

                                                              Number of items per page

                                                              -
                                                              - -
                                                              -
                                                              - - - - - -
                                                              -
                                                              Return values
                                                              - array<string|int, mixed> - — -

                                                              Paginated data with students and metadata

                                                              -
                                                              - -
                                                              - -
                                                              -
                                                              -

                                                              - getStudentAttempts() - - -

                                                              - - -

                                                              Get all attempts for a specific student (user)

                                                              - - - public - getStudentAttempts(string $userId) : array<string|int, mixed> - -
                                                              -
                                                              - - -
                                                              Parameters
                                                              -
                                                              -
                                                              - $userId - : string -
                                                              -
                                                              -

                                                              User ID (e.g., "userId_36")

                                                              -
                                                              - -
                                                              -
                                                              - - - - - -
                                                              -
                                                              Return values
                                                              - array<string|int, mixed> - — -

                                                              Array of attempts for this user with test cases

                                                              -
                                                              - -
                                                              - -
                                                              -
                                                              -

                                                              - getStudentStats() - - -

                                                              - - -

                                                              Get statistics for a student

                                                              - - - public - getStudentStats(string $userId) : array<string|int, mixed> - -
                                                              -
                                                              - - -
                                                              Parameters
                                                              -
                                                              -
                                                              - $userId - : string -
                                                              -
                                                              -

                                                              User ID

                                                              -
                                                              - -
                                                              -
                                                              - - - - - -
                                                              -
                                                              Return values
                                                              - array<string|int, mixed> - — -

                                                              Statistics

                                                              -
                                                              - -
                                                              - -
                                                              -
                                                              -

                                                              - getExerciseByName() - - -

                                                              - - -

                                                              Get exercise details by exercise name

                                                              - - - private - getExerciseByName(string $exerciseName) : array<string|int, mixed>|null - -
                                                              -
                                                              - - -
                                                              Parameters
                                                              -
                                                              -
                                                              - $exerciseName - : string -
                                                              -
                                                              -

                                                              Exercise name (exo_name)

                                                              -
                                                              - -
                                                              -
                                                              - - - - - -
                                                              -
                                                              Return values
                                                              - array<string|int, mixed>|null - — -

                                                              Exercise details or null if not found

                                                              -
                                                              - -
                                                              - -
                                                              -
                                                              -

                                                              - loadExercises() - - -

                                                              - - -

                                                              Load exercises data from JSON file

                                                              - - - private - loadExercises() : array<string|int, mixed> - -
                                                              -
                                                              - - - - - - - -
                                                              -
                                                              Return values
                                                              - array<string|int, mixed> - — -

                                                              Array of exercises

                                                              -
                                                              - -
                                                              - -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              
                                                              -        
                                                              - -
                                                              -
                                                              - - - -
                                                              -
                                                              -
                                                              - -
                                                              - On this page - - -
                                                              - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -

                                                              Search results

                                                              - -
                                                              -
                                                              -
                                                                -
                                                                -
                                                                -
                                                                -
                                                                - - -
                                                                - - - - - - - - diff --git a/docs/classes/User.html b/docs/classes/User.html deleted file mode 100644 index 579e96e2..00000000 --- a/docs/classes/User.html +++ /dev/null @@ -1,1253 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                -

                                                                SAE Project Documentation

                                                                - - - - - -
                                                                - -
                                                                -
                                                                - - - - -
                                                                -
                                                                -
                                                                  -
                                                                - -
                                                                -

                                                                - User - - -
                                                                - in package - -
                                                                - - -

                                                                - -
                                                                - - -
                                                                - - - -

                                                                User Model - CRUD operations for users with PDO

                                                                - - - - - - - - - -

                                                                - Table of Contents - - -

                                                                - - - - - - - - - -

                                                                - Properties - - -

                                                                -
                                                                -
                                                                - $pdo - -  : mixed -
                                                                - -
                                                                - -

                                                                - Methods - - -

                                                                -
                                                                -
                                                                - __construct() - -  : mixed -
                                                                - -
                                                                - clearResetToken() - -  : bool -
                                                                -
                                                                UPDATE - Clear password reset token
                                                                - -
                                                                - create() - -  : bool -
                                                                -
                                                                CREATE - Create a new user
                                                                - -
                                                                - delete() - -  : bool -
                                                                -
                                                                DELETE - Delete a user
                                                                - -
                                                                - emailExists() - -  : bool -
                                                                -
                                                                READ - Check if an email exists
                                                                - -
                                                                - findByEmail() - -  : array<string|int, mixed>|false -
                                                                -
                                                                READ - Find a user by email
                                                                - -
                                                                - findById() - -  : array<string|int, mixed>|false -
                                                                -
                                                                READ - Find a user by ID
                                                                - -
                                                                - findByResetToken() - -  : array<string|int, mixed>|false -
                                                                -
                                                                READ - Find a user by reset token
                                                                - -
                                                                - setResetToken() - -  : bool -
                                                                -
                                                                UPDATE - Set password reset token
                                                                - -
                                                                - update() - -  : bool -
                                                                -
                                                                UPDATE - Update user information
                                                                - -
                                                                - updatePassword() - -  : bool -
                                                                -
                                                                UPDATE - Update user's password
                                                                - -
                                                                - verifyCredentials() - -  : array<string|int, mixed>|false -
                                                                -
                                                                Verify user credentials for login
                                                                - -
                                                                - - - - - - -
                                                                -

                                                                - Properties - - -

                                                                -
                                                                -

                                                                - $pdo - - - - -

                                                                - - - - - - private - mixed - $pdo - - - - - - - - - - -
                                                                -
                                                                - -
                                                                -

                                                                - Methods - - -

                                                                -
                                                                -

                                                                - __construct() - - -

                                                                - - - - - public - __construct() : mixed - -
                                                                -
                                                                - - - - - - - - -
                                                                -
                                                                -

                                                                - clearResetToken() - - -

                                                                - - -

                                                                UPDATE - Clear password reset token

                                                                - - - public - clearResetToken(int $id) : bool - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $id - : int -
                                                                -
                                                                -

                                                                User's ID

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - bool - — -

                                                                Success status

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - create() - - -

                                                                - - -

                                                                CREATE - Create a new user

                                                                - - - public - create(string $lastName, string $firstName, string $email, string $password[, string|null $verificationCode = null ][, int $isVerified = 0 ]) : bool - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $lastName - : string -
                                                                -
                                                                -

                                                                User's last name

                                                                -
                                                                - -
                                                                -
                                                                - $firstName - : string -
                                                                -
                                                                -

                                                                User's first name

                                                                -
                                                                - -
                                                                -
                                                                - $email - : string -
                                                                -
                                                                -

                                                                User's email address

                                                                -
                                                                - -
                                                                -
                                                                - $password - : string -
                                                                -
                                                                -

                                                                User's password (will be hashed)

                                                                -
                                                                - -
                                                                -
                                                                - $verificationCode - : string|null - = null
                                                                -
                                                                -

                                                                Verification code for email

                                                                -
                                                                - -
                                                                -
                                                                - $isVerified - : int - = 0
                                                                -
                                                                -

                                                                Whether email is verified (0 or 1)

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - bool - — -

                                                                Success status

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - delete() - - -

                                                                - - -

                                                                DELETE - Delete a user

                                                                - - - public - delete(int $id) : bool - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $id - : int -
                                                                -
                                                                -

                                                                User's ID

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - bool - — -

                                                                Success status

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - emailExists() - - -

                                                                - - -

                                                                READ - Check if an email exists

                                                                - - - public - emailExists(string $email) : bool - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $email - : string -
                                                                -
                                                                -

                                                                Email to check

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - bool - — -

                                                                True if email exists, false otherwise

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - findByEmail() - - -

                                                                - - -

                                                                READ - Find a user by email

                                                                - - - public - findByEmail(string $email) : array<string|int, mixed>|false - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $email - : string -
                                                                -
                                                                -

                                                                User's email address

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - array<string|int, mixed>|false - — -

                                                                User data or false if not found

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - findById() - - -

                                                                - - -

                                                                READ - Find a user by ID

                                                                - - - public - findById(int $id) : array<string|int, mixed>|false - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $id - : int -
                                                                -
                                                                -

                                                                User's ID

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - array<string|int, mixed>|false - — -

                                                                User data or false if not found

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - findByResetToken() - - -

                                                                - - -

                                                                READ - Find a user by reset token

                                                                - - - public - findByResetToken(string $token) : array<string|int, mixed>|false - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $token - : string -
                                                                -
                                                                -

                                                                Reset token

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - array<string|int, mixed>|false - — -

                                                                User data or false if not found

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - setResetToken() - - -

                                                                - - -

                                                                UPDATE - Set password reset token

                                                                - - - public - setResetToken(string $email, string $token, string $expiration) : bool - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $email - : string -
                                                                -
                                                                -

                                                                User's email

                                                                -
                                                                - -
                                                                -
                                                                - $token - : string -
                                                                -
                                                                -

                                                                Reset token

                                                                -
                                                                - -
                                                                -
                                                                - $expiration - : string -
                                                                -
                                                                -

                                                                Token expiration date

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - bool - — -

                                                                Success status

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - update() - - -

                                                                - - -

                                                                UPDATE - Update user information

                                                                - - - public - update(int $id, string $lastName, string $firstName, string $email) : bool - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $id - : int -
                                                                -
                                                                -

                                                                User's ID

                                                                -
                                                                - -
                                                                -
                                                                - $lastName - : string -
                                                                -
                                                                -

                                                                User's last name

                                                                -
                                                                - -
                                                                -
                                                                - $firstName - : string -
                                                                -
                                                                -

                                                                User's first name

                                                                -
                                                                - -
                                                                -
                                                                - $email - : string -
                                                                -
                                                                -

                                                                User's email

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - bool - — -

                                                                Success status

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - updatePassword() - - -

                                                                - - -

                                                                UPDATE - Update user's password

                                                                - - - public - updatePassword(int $id, string $newPassword) : bool - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $id - : int -
                                                                -
                                                                -

                                                                User's ID

                                                                -
                                                                - -
                                                                -
                                                                - $newPassword - : string -
                                                                -
                                                                -

                                                                New password (will be hashed)

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - bool - — -

                                                                Success status

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                -

                                                                - verifyCredentials() - - -

                                                                - - -

                                                                Verify user credentials for login

                                                                - - - public - verifyCredentials(string $email, string $password) : array<string|int, mixed>|false - -
                                                                -
                                                                - - -
                                                                Parameters
                                                                -
                                                                -
                                                                - $email - : string -
                                                                -
                                                                -

                                                                User's email

                                                                -
                                                                - -
                                                                -
                                                                - $password - : string -
                                                                -
                                                                -

                                                                User's password

                                                                -
                                                                - -
                                                                -
                                                                - - - - - -
                                                                -
                                                                Return values
                                                                - array<string|int, mixed>|false - — -

                                                                User data if valid, false otherwise

                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                - -
                                                                -
                                                                -
                                                                -
                                                                -
                                                                
                                                                -        
                                                                - -
                                                                -
                                                                - - - -
                                                                -
                                                                -
                                                                - -
                                                                - On this page - - -
                                                                - -
                                                                -
                                                                -
                                                                -
                                                                -
                                                                -

                                                                Search results

                                                                - -
                                                                -
                                                                -
                                                                  -
                                                                  -
                                                                  -
                                                                  -
                                                                  - - -
                                                                  - - - - - - - - diff --git a/docs/css/base.css b/docs/css/base.css deleted file mode 100644 index 030ba075..00000000 --- a/docs/css/base.css +++ /dev/null @@ -1,1236 +0,0 @@ - - -:root { - /* Typography */ - --font-primary: 'Open Sans', Helvetica, Arial, sans-serif; - --font-secondary: 'Open Sans', Helvetica, Arial, sans-serif; - --font-monospace: 'Source Code Pro', monospace; - --line-height--primary: 1.6; - --letter-spacing--primary: .05rem; - --text-base-size: 1em; - --text-scale-ratio: 1.2; - - --text-xxs: calc(var(--text-base-size) / var(--text-scale-ratio) / var(--text-scale-ratio) / var(--text-scale-ratio)); - --text-xs: calc(var(--text-base-size) / var(--text-scale-ratio) / var(--text-scale-ratio)); - --text-sm: calc(var(--text-base-size) / var(--text-scale-ratio)); - --text-md: var(--text-base-size); - --text-lg: calc(var(--text-base-size) * var(--text-scale-ratio)); - --text-xl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio)); - --text-xxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio)); - --text-xxxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio)); - --text-xxxxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio)); - --text-xxxxxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio)); - - --color-hue-red: 4; - --color-hue-pink: 340; - --color-hue-purple: 291; - --color-hue-deep-purple: 262; - --color-hue-indigo: 231; - --color-hue-blue: 207; - --color-hue-light-blue: 199; - --color-hue-cyan: 187; - --color-hue-teal: 174; - --color-hue-green: 122; - --color-hue-phpdocumentor-green: 96; - --color-hue-light-green: 88; - --color-hue-lime: 66; - --color-hue-yellow: 54; - --color-hue-amber: 45; - --color-hue-orange: 36; - --color-hue-deep-orange: 14; - --color-hue-brown: 16; - - /* Colors */ - --primary-color-hue: var(--color-hue-phpdocumentor-green, --color-hue-phpdocumentor-green); - --primary-color-saturation: 57%; - --primary-color: hsl(var(--primary-color-hue), var(--primary-color-saturation), 60%); - --primary-color-darken: hsl(var(--primary-color-hue), var(--primary-color-saturation), 40%); - --primary-color-darker: hsl(var(--primary-color-hue), var(--primary-color-saturation), 25%); - --primary-color-darkest: hsl(var(--primary-color-hue), var(--primary-color-saturation), 10%); - --primary-color-lighten: hsl(var(--primary-color-hue), calc(var(--primary-color-saturation) - 20%), 85%); - --primary-color-lighter: hsl(var(--primary-color-hue), calc(var(--primary-color-saturation) - 45%), 97.5%); - --dark-gray: #d1d1d1; - --light-gray: #f0f0f0; - - --text-color: var(--primary-color-darkest); - - --header-height: var(--spacing-xxxxl); - --header-bg-color: var(--primary-color); - --code-background-color: var(--primary-color-lighter); - --code-border-color: --primary-color-lighten; - --button-border-color: var(--primary-color-darken); - --button-color: transparent; - --button-color-primary: var(--primary-color); - --button-text-color: #555; - --button-text-color-primary: white; - --popover-background-color: rgba(255, 255, 255, 0.75); - --link-color-primary: var(--primary-color-darker); - --link-hover-color-primary: var(--primary-color-darkest); - --form-field-border-color: var(--dark-gray); - --form-field-color: #fff; - --admonition-success-color: var(--primary-color); - --admonition-border-color: silver; - --table-separator-color: var(--primary-color-lighten); - --title-text-color: var(--primary-color); - - --sidebar-border-color: var(--primary-color-lighten); - - /* Grid */ - --container-width: 1400px; - - /* Spacing */ - --spacing-base-size: 1rem; - --spacing-scale-ratio: 1.5; - - --spacing-xxxs: calc(var(--spacing-base-size) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio)); - --spacing-xxs: calc(var(--spacing-base-size) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio)); - --spacing-xs: calc(var(--spacing-base-size) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio)); - --spacing-sm: calc(var(--spacing-base-size) / var(--spacing-scale-ratio)); - --spacing-md: var(--spacing-base-size); - --spacing-lg: calc(var(--spacing-base-size) * var(--spacing-scale-ratio)); - --spacing-xl: calc(var(--spacing-base-size) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio)); - --spacing-xxl: calc(var(--spacing-base-size) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio)); - --spacing-xxxl: calc(var(--spacing-base-size) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio)); - --spacing-xxxxl: calc(var(--spacing-base-size) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio)); - - --border-radius-base-size: 3px; -} - -/* Base Styles --------------------------------------------------- */ -body { - background-color: #fff; - color: var(--text-color); - font-family: var(--font-primary); - font-size: var(--text-md); - letter-spacing: var(--letter-spacing--primary); - line-height: var(--line-height--primary); - width: 100%; -} - -.phpdocumentor h1, -.phpdocumentor h2, -.phpdocumentor h3, -.phpdocumentor h4, -.phpdocumentor h5, -.phpdocumentor h6 { - margin-bottom: var(--spacing-lg); - margin-top: var(--spacing-lg); - font-weight: 600; -} - -.phpdocumentor h1 { - font-size: var(--text-xxxxl); - letter-spacing: var(--letter-spacing--primary); - line-height: 1.2; - margin-top: 0; -} - -.phpdocumentor h2 { - font-size: var(--text-xxxl); - letter-spacing: var(--letter-spacing--primary); - line-height: 1.25; -} - -.phpdocumentor h3 { - font-size: var(--text-xxl); - letter-spacing: var(--letter-spacing--primary); - line-height: 1.3; -} - -.phpdocumentor h4 { - font-size: var(--text-xl); - letter-spacing: calc(var(--letter-spacing--primary) / 2); - line-height: 1.35; - margin-bottom: var(--spacing-md); -} - -.phpdocumentor h5 { - font-size: var(--text-lg); - letter-spacing: calc(var(--letter-spacing--primary) / 4); - line-height: 1.5; - margin-bottom: var(--spacing-md); - margin-top: var(--spacing-md); -} - -.phpdocumentor h6 { - font-size: var(--text-md); - letter-spacing: 0; - line-height: var(--line-height--primary); - margin-bottom: var(--spacing-md); - margin-top: var(--spacing-md); -} -.phpdocumentor h1 .headerlink, -.phpdocumentor h2 .headerlink, -.phpdocumentor h3 .headerlink, -.phpdocumentor h4 .headerlink, -.phpdocumentor h5 .headerlink, -.phpdocumentor h6 .headerlink -{ - display: none; -} - -@media (min-width: 550px) { - .phpdocumentor h1 .headerlink, - .phpdocumentor h2 .headerlink, - .phpdocumentor h3 .headerlink, - .phpdocumentor h4 .headerlink, - .phpdocumentor h5 .headerlink, - .phpdocumentor h6 .headerlink { - display: inline; - transition: all .3s ease-in-out; - opacity: 0; - text-decoration: none; - color: silver; - font-size: 80%; - } - - .phpdocumentor h1:hover .headerlink, - .phpdocumentor h2:hover .headerlink, - .phpdocumentor h3:hover .headerlink, - .phpdocumentor h4:hover .headerlink, - .phpdocumentor h5:hover .headerlink, - .phpdocumentor h6:hover .headerlink { - opacity: 1; - } -} -.phpdocumentor p { - margin-top: 0; - margin-bottom: var(--spacing-md); -} -.phpdocumentor figure { - margin-bottom: var(--spacing-md); -} - -.phpdocumentor figcaption { - text-align: center; - font-style: italic; - font-size: 80%; -} - -.phpdocumentor-uml-diagram svg { - max-width: 100%; - height: auto !important; -} -.phpdocumentor-line { - border-top: 1px solid #E1E1E1; - border-width: 0; - margin-bottom: var(--spacing-xxl); - margin-top: var(--spacing-xxl); -} -.phpdocumentor-section { - box-sizing: border-box; - margin: 0 auto; - max-width: var(--container-width); - padding: 0 var(--spacing-sm); - position: relative; - width: 100%; -} - -@media (min-width: 550px) { - .phpdocumentor-section { - padding: 0 var(--spacing-lg); - } -} - -@media (min-width: 1200px) { - .phpdocumentor-section { - padding: 0; - width: 95%; - } -} -.phpdocumentor-column { - box-sizing: border-box; - float: left; - width: 100%; -} - -@media (min-width: 550px) { - .phpdocumentor-column { - margin-left: 4%; - } - - .phpdocumentor-column:first-child { - margin-left: 0; - } - - .-one.phpdocumentor-column { - width: 4.66666666667%; - } - - .-two.phpdocumentor-column { - width: 13.3333333333%; - } - - .-three.phpdocumentor-column { - width: 22%; - } - - .-four.phpdocumentor-column { - width: 30.6666666667%; - } - - .-five.phpdocumentor-column { - width: 39.3333333333%; - } - - .-six.phpdocumentor-column { - width: 48%; - } - - .-seven.phpdocumentor-column { - width: 56.6666666667%; - } - - .-eight.phpdocumentor-column { - width: 65.3333333333%; - } - - .-nine.phpdocumentor-column { - width: 74.0%; - } - - .-ten.phpdocumentor-column { - width: 82.6666666667%; - } - - .-eleven.phpdocumentor-column { - width: 91.3333333333%; - } - - .-twelve.phpdocumentor-column { - margin-left: 0; - width: 100%; - } - - .-one-third.phpdocumentor-column { - width: 30.6666666667%; - } - - .-two-thirds.phpdocumentor-column { - width: 65.3333333333%; - } - - .-one-half.phpdocumentor-column { - width: 48%; - } - - /* Offsets */ - .-offset-by-one.phpdocumentor-column { - margin-left: 8.66666666667%; - } - - .-offset-by-two.phpdocumentor-column { - margin-left: 17.3333333333%; - } - - .-offset-by-three.phpdocumentor-column { - margin-left: 26%; - } - - .-offset-by-four.phpdocumentor-column { - margin-left: 34.6666666667%; - } - - .-offset-by-five.phpdocumentor-column { - margin-left: 43.3333333333%; - } - - .-offset-by-six.phpdocumentor-column { - margin-left: 52%; - } - - .-offset-by-seven.phpdocumentor-column { - margin-left: 60.6666666667%; - } - - .-offset-by-eight.phpdocumentor-column { - margin-left: 69.3333333333%; - } - - .-offset-by-nine.phpdocumentor-column { - margin-left: 78.0%; - } - - .-offset-by-ten.phpdocumentor-column { - margin-left: 86.6666666667%; - } - - .-offset-by-eleven.phpdocumentor-column { - margin-left: 95.3333333333%; - } - - .-offset-by-one-third.phpdocumentor-column { - margin-left: 34.6666666667%; - } - - .-offset-by-two-thirds.phpdocumentor-column { - margin-left: 69.3333333333%; - } - - .-offset-by-one-half.phpdocumentor-column { - margin-left: 52%; - } -} -.phpdocumentor a { - color: var(--link-color-primary); -} - -.phpdocumentor a:hover { - color: var(--link-hover-color-primary); -} -.phpdocumentor-button { - background-color: var(--button-color); - border: 1px solid var(--button-border-color); - border-radius: var(--border-radius-base-size); - box-sizing: border-box; - color: var(--button-text-color); - cursor: pointer; - display: inline-block; - font-size: var(--text-sm); - font-weight: 600; - height: 38px; - letter-spacing: .1rem; - line-height: 38px; - padding: 0 var(--spacing-xxl); - text-align: center; - text-decoration: none; - text-transform: uppercase; - white-space: nowrap; - margin-bottom: var(--spacing-md); -} - -.phpdocumentor-button .-wide { - width: 100%; -} - -.phpdocumentor-button:hover, -.phpdocumentor-button:focus { - border-color: #888; - color: #333; - outline: 0; -} - -.phpdocumentor-button.-primary { - background-color: var(--button-color-primary); - border-color: var(--button-color-primary); - color: var(--button-text-color-primary); -} - -.phpdocumentor-button.-primary:hover, -.phpdocumentor-button.-primary:focus { - background-color: var(--link-color-primary); - border-color: var(--link-color-primary); - color: var(--button-text-color-primary); -} -.phpdocumentor form { - margin-bottom: var(--spacing-md); -} - -.phpdocumentor-field { - background-color: var(--form-field-color); - border: 1px solid var(--form-field-border-color); - border-radius: var(--border-radius-base-size); - box-shadow: none; - box-sizing: border-box; - height: 38px; - padding: var(--spacing-xxxs) var(--spacing-xxs); /* The 6px vertically centers text on FF, ignored by Webkit */ - margin-bottom: var(--spacing-md); -} - -/* Removes awkward default styles on some inputs for iOS */ -input[type="email"], -input[type="number"], -input[type="search"], -input[type="text"], -input[type="tel"], -input[type="url"], -input[type="password"], -textarea { - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; -} - -.phpdocumentor-textarea { - min-height: 65px; - padding-bottom: var(--spacing-xxxs); - padding-top: var(--spacing-xxxs); -} - -.phpdocumentor-field:focus { - border: 1px solid var(--button-color-primary); - outline: 0; -} - -label.phpdocumentor-label { - display: block; - margin-bottom: var(--spacing-xs); -} - -.phpdocumentor-fieldset { - border-width: 0; - padding: 0; -} - -input[type="checkbox"].phpdocumentor-field, -input[type="radio"].phpdocumentor-field { - display: inline; -} -.phpdocumentor-column ul, -div.phpdocumentor-list > ul, -ul.phpdocumentor-list { - list-style: circle; -} - -.phpdocumentor-column ol, -div.phpdocumentor-list > ol, -ol.phpdocumentor-list { - list-style: decimal; -} - - -.phpdocumentor-column ul, -div.phpdocumentor-list > ul, -ol.phpdocumentor-list, -ul.phpdocumentor-list { - margin-top: 0; - padding-left: var(--spacing-lg); - margin-bottom: var(--spacing-sm); -} - -.phpdocumentor-column ul.-clean, -div.phpdocumentor-list > ul.-clean, -ul.phpdocumentor-list.-clean { - list-style: none; - padding-left: 0; -} - -dl { - margin-bottom: var(--spacing-md); -} - -.phpdocumentor-column ul ul, -div.phpdocumentor-list > ul ul, -ul.phpdocumentor-list ul.phpdocumentor-list, -ul.phpdocumentor-list ol.phpdocumentor-list, -ol.phpdocumentor-list ol.phpdocumentor-list, -ol.phpdocumentor-list ul.phpdocumentor-list { - font-size: var(--text-sm); - margin: 0 0 0 calc(var(--spacing-xs) * 2); -} - -.phpdocumentor-column ul li, -.phpdocumentor-list li { - padding-bottom: var(--spacing-xs); -} - -.phpdocumentor dl dt { - margin-bottom: var(--spacing-xs); -} - -.phpdocumentor dl dd { - margin-bottom: var(--spacing-md); -} -.phpdocumentor pre { - margin-bottom: var(--spacing-md); -} - -.phpdocumentor-code { - font-family: var(--font-monospace); - background: var(--code-background-color); - border: 1px solid var(--code-border-color); - border-radius: var(--border-radius-base-size); - font-size: var(--text-sm); - padding: var(--spacing-sm) var(--spacing-md); - width: 100%; - box-sizing: border-box; -} - -.phpdocumentor-code.-dark { - background: var(--primary-color-darkest); - color: var(--light-gray); - box-shadow: 0 2px 3px var(--dark-gray); -} - -pre > .phpdocumentor-code { - display: block; - white-space: pre; -} -.phpdocumentor blockquote { - border-left: 4px solid var(--primary-color-darken); - margin: var(--spacing-md) 0; - padding: var(--spacing-xs) var(--spacing-sm); - color: var(--primary-color-darker); - font-style: italic; -} - -.phpdocumentor blockquote p:last-of-type { - margin-bottom: 0; -} -.phpdocumentor table { - margin-bottom: var(--spacing-md); -} - -th.phpdocumentor-heading, -td.phpdocumentor-cell { - border-bottom: 1px solid var(--table-separator-color); - padding: var(--spacing-sm) var(--spacing-md); - text-align: left; -} - -th.phpdocumentor-heading:first-child, -td.phpdocumentor-cell:first-child { - padding-left: 0; -} - -th.phpdocumentor-heading:last-child, -td.phpdocumentor-cell:last-child { - padding-right: 0; -} -.phpdocumentor-label-line { - display: flex; - flex-direction: row; - gap: 1rem -} - -.phpdocumentor-label { - background: #f6f6f6; - border-radius: .25rem; - font-size: 80%; - display: inline-block; - overflow: hidden -} - -/* -It would be better if the phpdocumentor-element class were to become a flex element with a gap, but for #3337 that -is too big a fix and needs to be done in a new design iteration. -*/ -.phpdocumentor-signature + .phpdocumentor-label-line .phpdocumentor-label { - margin-top: var(--spacing-sm); -} - -.phpdocumentor-label span { - display: inline-block; - padding: .125rem .5rem; -} - -.phpdocumentor-label--success span:last-of-type { - background: #abe1ab; -} - -.phpdocumentor-header { - display: flex; - flex-direction: row; - align-items: stretch; - flex-wrap: wrap; - justify-content: space-between; - height: auto; - padding: var(--spacing-md) var(--spacing-md); -} - -.phpdocumentor-header__menu-button { - position: absolute; - top: -100%; - left: -100%; -} - -.phpdocumentor-header__menu-icon { - font-size: 2rem; - color: var(--primary-color); -} - -.phpdocumentor-header__menu-button:checked ~ .phpdocumentor-topnav { - max-height: 250px; - padding-top: var(--spacing-md); -} - -@media (min-width: 1000px) { - .phpdocumentor-header { - flex-direction: row; - padding: var(--spacing-lg) var(--spacing-lg); - min-height: var(--header-height); - } - - .phpdocumentor-header__menu-icon { - display: none; - } -} - -@media (min-width: 1000px) { - .phpdocumentor-header { - padding-top: 0; - padding-bottom: 0; - } -} -@media (min-width: 1200px) { - .phpdocumentor-header { - padding: 0; - } -} -.phpdocumentor-title { - box-sizing: border-box; - color: var(--title-text-color); - font-size: var(--text-xxl); - letter-spacing: .05rem; - font-weight: normal; - width: auto; - margin: 0; - display: flex; - align-items: center; -} - -.phpdocumentor-title.-without-divider { - border: none; -} - -.phpdocumentor-title__link { - transition: all .3s ease-out; - display: flex; - color: var(--title-text-color); - text-decoration: none; - font-weight: normal; - white-space: nowrap; - transform: scale(.75); - transform-origin: left; -} - -.phpdocumentor-title__link:hover { - transform: perspective(15rem) translateX(.5rem); - font-weight: 600; -} - -@media (min-width: 1000px) { - .phpdocumentor-title { - width: 22%; - border-right: var(--sidebar-border-color) solid 1px; - } - - .phpdocumentor-title__link { - transform-origin: left; - } -} - -@media (min-width: 1000px) { - .phpdocumentor-title__link { - transform: scale(.85); - } -} - -@media (min-width: 1200px) { - .phpdocumentor-title__link { - transform: scale(1); - } -} -.phpdocumentor-topnav { - display: flex; - align-items: center; - margin: 0; - max-height: 0; - overflow: hidden; - transition: max-height 0.2s ease-out; - flex-basis: 100%; -} - -.phpdocumentor-topnav__menu { - text-align: right; - list-style: none; - margin: 0; - padding: 0; - flex: 1; - display: flex; - flex-flow: row wrap; - justify-content: center; -} - -.phpdocumentor-topnav__menu-item { - margin: 0; - width: 100%; - display: inline-block; - text-align: center; - padding: var(--spacing-sm) 0 -} - -.phpdocumentor-topnav__menu-item.-social { - width: auto; - padding: var(--spacing-sm) -} - -.phpdocumentor-topnav__menu-item a { - display: inline-block; - color: var(--text-color); - text-decoration: none; - font-size: var(--text-lg); - transition: all .3s ease-out; - border-bottom: 1px dotted transparent; - line-height: 1; -} - -.phpdocumentor-topnav__menu-item a:hover { - transform: perspective(15rem) translateY(.1rem); - border-bottom: 1px dotted var(--text-color); -} - -@media (min-width: 1000px) { - .phpdocumentor-topnav { - max-height: none; - overflow: visible; - flex-basis: auto; - } - - .phpdocumentor-topnav__menu { - display: flex; - flex-flow: row wrap; - justify-content: flex-end; - } - - .phpdocumentor-topnav__menu-item, - .phpdocumentor-topnav__menu-item.-social { - width: auto; - display: inline; - text-align: right; - padding: 0 0 0 var(--spacing-md) - } -} -.phpdocumentor-sidebar { - margin: 0; - overflow: hidden; - max-height: 0; -} - -.phpdocumentor .phpdocumentor-sidebar .phpdocumentor-list { - padding: var(--spacing-xs) var(--spacing-md); - list-style: none; - margin: 0; -} - -.phpdocumentor .phpdocumentor-sidebar li { - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; - padding: 0 0 var(--spacing-xxxs) var(--spacing-md); -} - -.phpdocumentor .phpdocumentor-sidebar abbr, -.phpdocumentor .phpdocumentor-sidebar a { - text-decoration: none; - border-bottom: none; - color: var(--text-color); - font-size: var(--text-md); - padding-left: 0; - transition: padding-left .4s ease-out; -} - -.phpdocumentor .phpdocumentor-sidebar a:hover, -.phpdocumentor .phpdocumentor-sidebar a.-active { - padding-left: 5px; - font-weight: 600; -} - -.phpdocumentor .phpdocumentor-sidebar__category > * { - border-left: 1px solid var(--primary-color-lighten); -} - -.phpdocumentor .phpdocumentor-sidebar__category { - margin-bottom: var(--spacing-lg); -} - -.phpdocumentor .phpdocumentor-sidebar__category-header { - font-size: var(--text-md); - margin-top: 0; - margin-bottom: var(--spacing-xs); - color: var(--link-color-primary); - font-weight: 600; - border-left: 0; -} - -.phpdocumentor .phpdocumentor-sidebar__root-package, -.phpdocumentor .phpdocumentor-sidebar__root-namespace { - font-size: var(--text-md); - margin: 0; - padding-top: var(--spacing-xs); - padding-left: var(--spacing-md); - color: var(--text-color); - font-weight: normal; -} - -@media (min-width: 550px) { - .phpdocumentor-sidebar { - border-right: var(--sidebar-border-color) solid 1px; - } -} - -.phpdocumentor-sidebar__menu-button { - position: absolute; - top: -100%; - left: -100%; -} - -.phpdocumentor-sidebar__menu-icon { - font-size: var(--text-md); - font-weight: 600; - background: var(--primary-color); - color: white; - margin: 0 0 var(--spacing-lg); - display: block; - padding: var(--spacing-sm); - text-align: center; - border-radius: 3px; - text-transform: uppercase; - letter-spacing: .15rem; -} - -.phpdocumentor-sidebar__menu-button:checked ~ .phpdocumentor-sidebar { - max-height: 100%; - padding-top: var(--spacing-md); -} - -@media (min-width: 550px) { - .phpdocumentor-sidebar { - overflow: visible; - max-height: 100%; - } - - .phpdocumentor-sidebar__menu-icon { - display: none; - } -} -.phpdocumentor-admonition { - border: 1px solid var(--admonition-border-color); - border-radius: var(--border-radius-base-size); - border-color: var(--primary-color-lighten); - background-color: var(--primary-color-lighter); - padding: var(--spacing-lg); - margin: var(--spacing-lg) 0; - display: flex; - flex-direction: row; - align-items: flex-start; -} - -.phpdocumentor-admonition p:last-of-type { - margin-bottom: 0; -} - -.phpdocumentor-admonition--success, -.phpdocumentor-admonition.-success { - border-color: var(--admonition-success-color); -} - -.phpdocumentor-admonition__icon { - margin-right: var(--spacing-md); - color: var(--primary-color); - max-width: 3rem; -} -.phpdocumentor ul.phpdocumentor-breadcrumbs { - font-size: var(--text-md); - list-style: none; - margin: 0; - padding: 0; -} - -.phpdocumentor ul.phpdocumentor-breadcrumbs a { - color: var(--text-color); - text-decoration: none; -} - -.phpdocumentor ul.phpdocumentor-breadcrumbs > li { - display: inline-block; - margin: 0; -} - -.phpdocumentor ul.phpdocumentor-breadcrumbs > li + li:before { - color: var(--dark-gray); - content: "\\\A0"; - padding: 0; -} -.phpdocumentor .phpdocumentor-back-to-top { - position: fixed; - bottom: 2rem; - font-size: 2.5rem; - opacity: .25; - transition: all .3s ease-in-out; - right: 2rem; -} - -.phpdocumentor .phpdocumentor-back-to-top:hover { - color: var(--link-color-primary); - opacity: 1; -} -.phpdocumentor-search { - position: relative; - display: none; /** disable by default for non-js flow */ - opacity: .3; /** white-out default for loading indication */ - transition: opacity .3s, background .3s; - margin: var(--spacing-sm) 0; - flex: 1; - min-width: 100%; -} - -.phpdocumentor-search label { - display: flex; - align-items: center; - flex: 1; -} - -.phpdocumentor-search__icon { - color: var(--primary-color); - margin-right: var(--spacing-sm); - width: 1rem; - height: 1rem; -} - -.phpdocumentor-search--enabled { - display: flex; -} - -.phpdocumentor-search--active { - opacity: 1; -} - -.phpdocumentor-search input:disabled { - background-color: lightgray; -} - -.phpdocumentor-search__field:focus, -.phpdocumentor-search__field { - margin-bottom: 0; - border: 0; - border-bottom: 2px solid var(--primary-color); - padding: 0; - border-radius: 0; - flex: 1; -} - -@media (min-width: 1000px) { - .phpdocumentor-search { - min-width: auto; - max-width: 20rem; - margin: 0 0 0 auto; - } -} -.phpdocumentor-search-results { - backdrop-filter: blur(5px); - background: var(--popover-background-color); - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - padding: 0; - opacity: 1; - pointer-events: all; - - transition: opacity .3s, background .3s; -} - -.phpdocumentor-search-results--hidden { - background: transparent; - backdrop-filter: blur(0); - opacity: 0; - pointer-events: none; -} - -.phpdocumentor-search-results__dialog { - width: 100%; - background: white; - max-height: 100%; - display: flex; - flex-direction: column; -} - -.phpdocumentor-search-results__body { - overflow: auto; -} - -.phpdocumentor-search-results__header { - padding: var(--spacing-lg); - display: flex; - justify-content: space-between; - background: var(--primary-color-darken); - color: white; - align-items: center; -} - -.phpdocumentor-search-results__close { - font-size: var(--text-xl); - background: none; - border: none; - padding: 0; - margin: 0; -} - -.phpdocumentor .phpdocumentor-search-results__title { - font-size: var(--text-xl); - margin-bottom: 0; -} - -.phpdocumentor-search-results__entries { - list-style: none; - padding: 0 var(--spacing-lg); - margin: 0; -} - -.phpdocumentor-search-results__entry { - border-bottom: 1px solid var(--table-separator-color); - padding: var(--spacing-sm) 0; - text-align: left; -} - -.phpdocumentor-search-results__entry a { - display: block; -} - -.phpdocumentor-search-results__entry small { - margin-top: var(--spacing-xs); - margin-bottom: var(--spacing-md); - color: var(--primary-color-darker); - display: block; - word-break: break-word; -} - -.phpdocumentor-search-results__entry h3 { - font-size: var(--text-lg); - margin: 0; -} - -@media (min-width: 550px) { - .phpdocumentor-search-results { - padding: 0 var(--spacing-lg); - } - - .phpdocumentor-search-results__entry h3 { - font-size: var(--text-xxl); - } - - .phpdocumentor-search-results__dialog { - margin: var(--spacing-xl) auto; - max-width: 40rem; - background: white; - border: 1px solid silver; - box-shadow: 0 2px 5px silver; - max-height: 40rem; - border-radius: 3px; - } -} -.phpdocumentor-modal { - position: fixed; - width: 100vw; - height: 100vh; - opacity: 0; - visibility: hidden; - transition: all 0.3s ease; - top: 0; - left: 0; - display: flex; - align-items: center; - justify-content: center; - z-index: 1; -} - -.phpdocumentor-modal__open { - visibility: visible; - opacity: 1; - transition-delay: 0s; -} - -.phpdocumentor-modal-bg { - position: absolute; - background: gray; - opacity: 50%; - width: 100%; - height: 100%; -} - -.phpdocumentor-modal-container { - border-radius: 1em; - background: #fff; - position: relative; - padding: 2em; - box-sizing: border-box; - max-width:100vw; -} - -.phpdocumentor-modal__close { - position: absolute; - right: 0.75em; - top: 0.75em; - outline: none; - appearance: none; - color: var(--primary-color); - background: none; - border: 0px; - font-weight: bold; - cursor: pointer; -} -.phpdocumentor-on-this-page__sidebar { - display: none; -} - -.phpdocumentor-on-this-page__title { - display: block; - font-weight: bold; - margin-bottom: var(--spacing-sm); - color: var(--link-color-primary); -} - -@media (min-width: 1000px) { - .phpdocumentor-on-this-page__sidebar { - display: block; - position: relative; - } - - .phpdocumentor-on-this-page__content::-webkit-scrollbar, - [scrollbars]::-webkit-scrollbar { - height: 8px; - width: 8px; - } - - .phpdocumentor-on-this-page__content::-webkit-scrollbar-corner, - [scrollbars]::-webkit-scrollbar-corner { - background: 0; - } - - .phpdocumentor-on-this-page__content::-webkit-scrollbar-thumb, - [scrollbars]::-webkit-scrollbar-thumb { - background: rgba(128,134,139,0.26); - border-radius: 8px; - } - - .phpdocumentor-on-this-page__content { - position: sticky; - height: calc(100vh - var(--header-height)); - overflow-y: auto; - border-left: 1px solid var(--sidebar-border-color); - padding-left: var(--spacing-lg); - font-size: 90%; - top: -1px; /* Needed for the javascript to make the .-stuck trick work */ - flex: 0 1 auto; - width: 15vw; - } - - .phpdocumentor-on-this-page__content.-stuck { - height: 100vh; - } - - .phpdocumentor-on-this-page__content li { - word-break: break-all; - line-height: normal; - } - - .phpdocumentor-on-this-page__content li.-deprecated { - text-decoration: line-through; - } -} - -/* Used for screen readers and such */ -.visually-hidden { - display: none; -} - -.float-right { - float: right; -} - -.float-left { - float: left; -} diff --git a/docs/css/normalize.css b/docs/css/normalize.css deleted file mode 100644 index 653dc00a..00000000 --- a/docs/css/normalize.css +++ /dev/null @@ -1,427 +0,0 @@ -/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ - -/** - * 1. Set default font family to sans-serif. - * 2. Prevent iOS text size adjust after orientation change, without disabling - * user zoom. - */ - -html { - font-family: sans-serif; /* 1 */ - -ms-text-size-adjust: 100%; /* 2 */ - -webkit-text-size-adjust: 100%; /* 2 */ -} - -/** - * Remove default margin. - */ - -body { - margin: 0; -} - -/* HTML5 display definitions - ========================================================================== */ - -/** - * Correct `block` display not defined for any HTML5 element in IE 8/9. - * Correct `block` display not defined for `details` or `summary` in IE 10/11 - * and Firefox. - * Correct `block` display not defined for `main` in IE 11. - */ - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} - -/** - * 1. Correct `inline-block` display not defined in IE 8/9. - * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. - */ - -audio, -canvas, -progress, -video { - display: inline-block; /* 1 */ - vertical-align: baseline; /* 2 */ -} - -/** - * Prevent modern browsers from displaying `audio` without controls. - * Remove excess height in iOS 5 devices. - */ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** - * Address `[hidden]` styling not present in IE 8/9/10. - * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. - */ - -[hidden], -template { - display: none !important; -} - -/* Links - ========================================================================== */ - -/** - * Remove the gray background color from active links in IE 10. - */ - -a { - background-color: transparent; -} - -/** - * Improve readability when focused and also mouse hovered in all browsers. - */ - -a:active, -a:hover { - outline: 0; -} - -/* Text-level semantics - ========================================================================== */ - -/** - * Address styling not present in IE 8/9/10/11, Safari, and Chrome. - */ - -abbr[title] { - border-bottom: 1px dotted; -} - -/** - * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. - */ - -b, -strong { - font-weight: bold; -} - -/** - * Address styling not present in Safari and Chrome. - */ - -dfn { - font-style: italic; -} - -/** - * Address variable `h1` font-size and margin within `section` and `article` - * contexts in Firefox 4+, Safari, and Chrome. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/** - * Address styling not present in IE 8/9. - */ - -mark { - background: #ff0; - color: #000; -} - -/** - * Address inconsistent and variable font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` affecting `line-height` in all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -/* Embedded content - ========================================================================== */ - -/** - * Remove border when inside `a` element in IE 8/9/10. - */ - -img { - border: 0; -} - -/** - * Correct overflow not hidden in IE 9/10/11. - */ - -svg:not(:root) { - overflow: hidden; -} - -/* Grouping content - ========================================================================== */ - -/** - * Address margin not present in IE 8/9 and Safari. - */ - -figure { - margin: 1em 40px; -} - -/** - * Address differences between Firefox and other browsers. - */ - -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; -} - -/** - * Contain overflow in all browsers. - */ - -pre { - overflow: auto; -} - -/** - * Address odd `em`-unit font size rendering in all browsers. - */ - -code, -kbd, -pre, -samp { - font-family: var(--font-monospace); - font-size: 1em; -} - -/* Forms - ========================================================================== */ - -/** - * Known limitation: by default, Chrome and Safari on OS X allow very limited - * styling of `select`, unless a `border` property is set. - */ - -/** - * 1. Correct color not being inherited. - * Known issue: affects color of disabled elements. - * 2. Correct font properties not being inherited. - * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. - */ - -button, -input, -optgroup, -select, -textarea { - color: inherit; /* 1 */ - font: inherit; /* 2 */ - margin: 0; /* 3 */ -} - -/** - * Address `overflow` set to `hidden` in IE 8/9/10/11. - */ - -button { - overflow: visible; -} - -/** - * Address inconsistent `text-transform` inheritance for `button` and `select`. - * All other form control elements do not inherit `text-transform` values. - * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. - * Correct `select` style inheritance in Firefox. - */ - -button, -select { - text-transform: none; -} - -/** - * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` - * and `video` controls. - * 2. Correct inability to style clickable `input` types in iOS. - * 3. Improve usability and consistency of cursor style between image-type - * `input` and others. - */ - -button, -html input[type="button"], /* 1 */ -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; /* 2 */ - cursor: pointer; /* 3 */ -} - -/** - * Re-set default cursor for disabled elements. - */ - -button[disabled], -html input[disabled] { - cursor: default; -} - -/** - * Remove inner padding and border in Firefox 4+. - */ - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -/** - * Address Firefox 4+ setting `line-height` on `input` using `!important` in - * the UA stylesheet. - */ - -input { - line-height: normal; -} - -/** - * It's recommended that you don't attempt to style these elements. - * Firefox's implementation doesn't respect box-sizing, padding, or width. - * - * 1. Address box sizing set to `content-box` in IE 8/9/10. - * 2. Remove excess padding in IE 8/9/10. - */ - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ -} - -/** - * Fix the cursor style for Chrome's increment/decrement buttons. For certain - * `font-size` values of the `input`, it causes the cursor style of the - * decrement button to change from `default` to `text`. - */ - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Address `appearance` set to `searchfield` in Safari and Chrome. - * 2. Address `box-sizing` set to `border-box` in Safari and Chrome - * (include `-moz` to future-proof). - */ - -input[type="search"] { - -webkit-appearance: textfield; /* 1 */ - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; /* 2 */ - box-sizing: content-box; -} - -/** - * Remove inner padding and search cancel button in Safari and Chrome on OS X. - * Safari (but not Chrome) clips the cancel button when the search input has - * padding (and `textfield` appearance). - */ - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * Define consistent border, margin, and padding. - */ - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -/** - * 1. Correct `color` not being inherited in IE 8/9/10/11. - * 2. Remove padding so people aren't caught out if they zero out fieldsets. - */ - -legend { - border: 0; /* 1 */ - padding: 0; /* 2 */ -} - -/** - * Remove default vertical scrollbar in IE 8/9/10/11. - */ - -textarea { - overflow: auto; -} - -/** - * Don't inherit the `font-weight` (applied by a rule above). - * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. - */ - -optgroup { - font-weight: bold; -} - -/* Tables - ========================================================================== */ - -/** - * Remove most spacing between table cells. - */ - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} diff --git a/docs/css/template.css b/docs/css/template.css deleted file mode 100644 index 21919c08..00000000 --- a/docs/css/template.css +++ /dev/null @@ -1,279 +0,0 @@ - -.phpdocumentor-content { - position: relative; - display: flex; - gap: var(--spacing-md); -} - -.phpdocumentor-content > section:first-of-type { - width: 75%; - flex: 1 1 auto; -} - -@media (min-width: 1900px) { - .phpdocumentor-content > section:first-of-type { - width: 100%; - flex: 1 1 auto; - } -} - -.phpdocumentor .phpdocumentor-content__title { - margin-top: 0; -} -.phpdocumentor-summary { - font-style: italic; -} -.phpdocumentor-description { - margin-bottom: var(--spacing-md); -} -.phpdocumentor-element { - position: relative; -} - -.phpdocumentor-element .phpdocumentor-element { - border: 1px solid var(--primary-color-lighten); - margin-bottom: var(--spacing-md); - padding: var(--spacing-xs); - border-radius: 5px; -} - -.phpdocumentor-element.-deprecated .phpdocumentor-element__name { - text-decoration: line-through; -} - -@media (min-width: 550px) { - .phpdocumentor-element .phpdocumentor-element { - margin-bottom: var(--spacing-lg); - padding: var(--spacing-md); - } -} - -.phpdocumentor-element__modifier { - font-size: var(--text-xxs); - padding: calc(var(--spacing-base-size) / 4) calc(var(--spacing-base-size) / 2); - color: var(--text-color); - background-color: var(--light-gray); - border-radius: 3px; - text-transform: uppercase; -} - -.phpdocumentor .phpdocumentor-elements__header { - margin-top: var(--spacing-xxl); - margin-bottom: var(--spacing-lg); -} - -.phpdocumentor .phpdocumentor-element__name { - line-height: 1; - margin-top: 0; - font-weight: 300; - font-size: var(--text-lg); - word-break: break-all; - margin-bottom: var(--spacing-sm); -} - -@media (min-width: 550px) { - .phpdocumentor .phpdocumentor-element__name { - font-size: var(--text-xl); - margin-bottom: var(--spacing-xs); - } -} - -@media (min-width: 1200px) { - .phpdocumentor .phpdocumentor-element__name { - margin-bottom: var(--spacing-md); - } -} - -.phpdocumentor-element__package, -.phpdocumentor-element__extends, -.phpdocumentor-element__implements { - display: block; - font-size: var(--text-xxs); - font-weight: normal; - opacity: .7; -} - -.phpdocumentor-element__package .phpdocumentor-breadcrumbs { - display: inline; -} -.phpdocumentor .phpdocumentor-signature { - display: block; - font-size: var(--text-sm); - border: 1px solid #f0f0f0; - margin-bottom: calc(var(--spacing-sm)); -} - -.phpdocumentor .phpdocumentor-signature.-deprecated .phpdocumentor-signature__name { - text-decoration: line-through; -} - -@media (min-width: 550px) { - .phpdocumentor .phpdocumentor-signature { - margin-left: calc(var(--spacing-xl) * -1); - width: calc(100% + var(--spacing-xl)); - } -} - -.phpdocumentor-table-of-contents { -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry { - margin-bottom: var(--spacing-xxs); - margin-left: 2rem; - display: flex; -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry > a { - flex: 0 1 auto; -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry > a.-deprecated { - text-decoration: line-through; -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry > span { - flex: 1; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry:after { - content: ''; - height: 12px; - width: 12px; - left: 16px; - position: absolute; -} -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-private:after { - background: url('data:image/svg+xml;utf8,') no-repeat; -} -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-protected:after { - left: 13px; - background: url('data:image/svg+xml;utf8,') no-repeat; -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry:before { - width: 1.25rem; - height: 1.25rem; - line-height: 1.25rem; - background: transparent url('data:image/svg+xml;utf8,') no-repeat center center; - content: ''; - position: absolute; - left: 0; - border-radius: 50%; - font-weight: 600; - color: white; - text-align: center; - font-size: .75rem; - margin-top: .2rem; -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-method:before { - content: 'M'; - color: ''; - background-image: url('data:image/svg+xml;utf8,'); -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-function:before { - content: 'M'; - color: ' 96'; - background-image: url('data:image/svg+xml;utf8,'); -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-property:before { - content: 'P' -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-constant:before { - content: 'C'; - background-color: transparent; - background-image: url('data:image/svg+xml;utf8,'); -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-class:before { - content: 'C' -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-interface:before { - content: 'I' -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-trait:before { - content: 'T' -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-namespace:before { - content: 'N' -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-package:before { - content: 'P' -} - -.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-enum:before { - content: 'E' -} - -.phpdocumentor-table-of-contents dd { - font-style: italic; - margin-left: 2rem; -} -.phpdocumentor-element-found-in { - display: none; -} - -@media (min-width: 550px) { - .phpdocumentor-element-found-in { - display: block; - font-size: var(--text-sm); - color: gray; - margin-bottom: 1rem; - } -} - -@media (min-width: 1200px) { - .phpdocumentor-element-found-in { - position: absolute; - top: var(--spacing-sm); - right: var(--spacing-sm); - font-size: var(--text-sm); - margin-bottom: 0; - } -} - -.phpdocumentor-element-found-in .phpdocumentor-element-found-in__source { - flex: 0 1 auto; - display: inline-flex; -} - -.phpdocumentor-element-found-in .phpdocumentor-element-found-in__source:after { - width: 1.25rem; - height: 1.25rem; - line-height: 1.25rem; - background: transparent url('data:image/svg+xml;utf8,') no-repeat center center; - content: ''; - left: 0; - border-radius: 50%; - font-weight: 600; - text-align: center; - font-size: .75rem; - margin-top: .2rem; -} -.phpdocumentor-class-graph { - width: 100%; height: 600px; border:1px solid black; overflow: hidden -} - -.phpdocumentor-class-graph__graph { - width: 100%; -} -.phpdocumentor-tag-list__definition { - display: flex; -} - -.phpdocumentor-tag-link { - margin-right: var(--spacing-sm); -} -.phpdocumentor-uml-diagram svg { - cursor: zoom-in; -} \ No newline at end of file diff --git a/docs/files/config-router.html b/docs/files/config-router.html deleted file mode 100644 index 462eece3..00000000 --- a/docs/files/config-router.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                  -

                                                                  SAE Project Documentation

                                                                  - - - - - -
                                                                  - -
                                                                  -
                                                                  - - - - -
                                                                  -
                                                                  -
                                                                    -
                                                                  - -
                                                                  -

                                                                  router.php

                                                                  - - - - - - - - -

                                                                  - Table of Contents - - -

                                                                  - - - - -

                                                                  - Classes - - -

                                                                  -
                                                                  -
                                                                  Router
                                                                  Router class - Main application router -Handles URL routing and controller dispatching with namespaces
                                                                  - - - - - - - - - - - - -
                                                                  -
                                                                  -
                                                                  -
                                                                  -
                                                                  
                                                                  -        
                                                                  - -
                                                                  -
                                                                  - - - -
                                                                  -
                                                                  -
                                                                  - -
                                                                  - On this page - -
                                                                    -
                                                                  • Table Of Contents
                                                                  • -
                                                                  • - -
                                                                  • - - -
                                                                  -
                                                                  - -
                                                                  -
                                                                  -
                                                                  -
                                                                  -
                                                                  -

                                                                  Search results

                                                                  - -
                                                                  -
                                                                  -
                                                                    -
                                                                    -
                                                                    -
                                                                    -
                                                                    - - -
                                                                    - - - - - - - - diff --git a/docs/files/controllers-analysis-uploadcontroller.html b/docs/files/controllers-analysis-uploadcontroller.html deleted file mode 100644 index 6448c59b..00000000 --- a/docs/files/controllers-analysis-uploadcontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                    -

                                                                    SAE Project Documentation

                                                                    - - - - - -
                                                                    - -
                                                                    -
                                                                    - - - - -
                                                                    -
                                                                    -
                                                                      -
                                                                    - -
                                                                    -

                                                                    UploadController.php

                                                                    - - - - - - - - -

                                                                    - Table of Contents - - -

                                                                    - - - - -

                                                                    - Classes - - -

                                                                    -
                                                                    -
                                                                    UploadController
                                                                    Contrôleur pour l'upload des données de programmes étudiants
                                                                    - - - - - - - - - - - - -
                                                                    -
                                                                    -
                                                                    -
                                                                    -
                                                                    
                                                                    -        
                                                                    - -
                                                                    -
                                                                    - - - -
                                                                    -
                                                                    -
                                                                    - -
                                                                    - On this page - -
                                                                      -
                                                                    • Table Of Contents
                                                                    • -
                                                                    • - -
                                                                    • - - -
                                                                    -
                                                                    - -
                                                                    -
                                                                    -
                                                                    -
                                                                    -
                                                                    -

                                                                    Search results

                                                                    - -
                                                                    -
                                                                    -
                                                                      -
                                                                      -
                                                                      -
                                                                      -
                                                                      - - -
                                                                      - - - - - - - - diff --git a/docs/files/controllers-analysis-vectorcontroller.html b/docs/files/controllers-analysis-vectorcontroller.html deleted file mode 100644 index b3be75fd..00000000 --- a/docs/files/controllers-analysis-vectorcontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                      -

                                                                      SAE Project Documentation

                                                                      - - - - - -
                                                                      - -
                                                                      -
                                                                      - - - - -
                                                                      -
                                                                      -
                                                                        -
                                                                      - -
                                                                      -

                                                                      VectorController.php

                                                                      - - - - - - - - -

                                                                      - Table of Contents - - -

                                                                      - - - - -

                                                                      - Classes - - -

                                                                      -
                                                                      -
                                                                      VectorController
                                                                      Contrôleur pour la génération et la gestion des vecteurs
                                                                      - - - - - - - - - - - - -
                                                                      -
                                                                      -
                                                                      -
                                                                      -
                                                                      
                                                                      -        
                                                                      - -
                                                                      -
                                                                      - - - -
                                                                      -
                                                                      -
                                                                      - -
                                                                      - On this page - -
                                                                        -
                                                                      • Table Of Contents
                                                                      • -
                                                                      • - -
                                                                      • - - -
                                                                      -
                                                                      - -
                                                                      -
                                                                      -
                                                                      -
                                                                      -
                                                                      -

                                                                      Search results

                                                                      - -
                                                                      -
                                                                      -
                                                                        -
                                                                        -
                                                                        -
                                                                        -
                                                                        - - -
                                                                        - - - - - - - - diff --git a/docs/files/controllers-analysis-visualizationcontroller.html b/docs/files/controllers-analysis-visualizationcontroller.html deleted file mode 100644 index 895cbe4f..00000000 --- a/docs/files/controllers-analysis-visualizationcontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                        -

                                                                        SAE Project Documentation

                                                                        - - - - - -
                                                                        - -
                                                                        -
                                                                        - - - - -
                                                                        -
                                                                        -
                                                                          -
                                                                        - -
                                                                        -

                                                                        VisualizationController.php

                                                                        - - - - - - - - -

                                                                        - Table of Contents - - -

                                                                        - - - - -

                                                                        - Classes - - -

                                                                        -
                                                                        -
                                                                        VisualizationController
                                                                        Contrôleur pour la visualisation des données avec D3.js
                                                                        - - - - - - - - - - - - -
                                                                        -
                                                                        -
                                                                        -
                                                                        -
                                                                        
                                                                        -        
                                                                        - -
                                                                        -
                                                                        - - - -
                                                                        -
                                                                        -
                                                                        - -
                                                                        - On this page - -
                                                                          -
                                                                        • Table Of Contents
                                                                        • -
                                                                        • - -
                                                                        • - - -
                                                                        -
                                                                        - -
                                                                        -
                                                                        -
                                                                        -
                                                                        -
                                                                        -

                                                                        Search results

                                                                        - -
                                                                        -
                                                                        -
                                                                          -
                                                                          -
                                                                          -
                                                                          -
                                                                          - - -
                                                                          - - - - - - - - diff --git a/docs/files/controllers-auth-authcontroller.html b/docs/files/controllers-auth-authcontroller.html deleted file mode 100644 index 99145ee3..00000000 --- a/docs/files/controllers-auth-authcontroller.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                          -

                                                                          SAE Project Documentation

                                                                          - - - - - -
                                                                          - -
                                                                          -
                                                                          - - - - -
                                                                          -
                                                                          -
                                                                            -
                                                                          - -
                                                                          -

                                                                          AuthController.php

                                                                          - - - - - - - - -

                                                                          - Table of Contents - - -

                                                                          - - - - -

                                                                          - Classes - - -

                                                                          -
                                                                          -
                                                                          AuthController
                                                                          AuthController - Authentication service with CRUD operations -Handles user registration, login, and password management
                                                                          - - - - - - - - - - - - -
                                                                          -
                                                                          -
                                                                          -
                                                                          -
                                                                          
                                                                          -        
                                                                          - -
                                                                          -
                                                                          - - - -
                                                                          -
                                                                          -
                                                                          - -
                                                                          - On this page - -
                                                                            -
                                                                          • Table Of Contents
                                                                          • -
                                                                          • - -
                                                                          • - - -
                                                                          -
                                                                          - -
                                                                          -
                                                                          -
                                                                          -
                                                                          -
                                                                          -

                                                                          Search results

                                                                          - -
                                                                          -
                                                                          -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - -
                                                                            - - - - - - - - diff --git a/docs/files/controllers-auth-emailverificationcontroller.html b/docs/files/controllers-auth-emailverificationcontroller.html deleted file mode 100644 index 06090078..00000000 --- a/docs/files/controllers-auth-emailverificationcontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                            -

                                                                            SAE Project Documentation

                                                                            - - - - - -
                                                                            - -
                                                                            -
                                                                            - - - - -
                                                                            -
                                                                            -
                                                                              -
                                                                            - -
                                                                            -

                                                                            EmailVerificationController.php

                                                                            - - - - - - - - -

                                                                            - Table of Contents - - -

                                                                            - - - - -

                                                                            - Classes - - -

                                                                            -
                                                                            -
                                                                            EmailVerificationController
                                                                            EmailVerificationController - Handles email verification
                                                                            - - - - - - - - - - - - -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            
                                                                            -        
                                                                            - -
                                                                            -
                                                                            - - - -
                                                                            -
                                                                            -
                                                                            - -
                                                                            - On this page - -
                                                                              -
                                                                            • Table Of Contents
                                                                            • -
                                                                            • - -
                                                                            • - - -
                                                                            -
                                                                            - -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            -

                                                                            Search results

                                                                            - -
                                                                            -
                                                                            -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              - - -
                                                                              - - - - - - - - diff --git a/docs/files/controllers-auth-logincontroller.html b/docs/files/controllers-auth-logincontroller.html deleted file mode 100644 index 3dd2477c..00000000 --- a/docs/files/controllers-auth-logincontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                              -

                                                                              SAE Project Documentation

                                                                              - - - - - -
                                                                              - -
                                                                              -
                                                                              - - - - -
                                                                              -
                                                                              -
                                                                                -
                                                                              - -
                                                                              -

                                                                              LoginController.php

                                                                              - - - - - - - - -

                                                                              - Table of Contents - - -

                                                                              - - - - -

                                                                              - Classes - - -

                                                                              -
                                                                              -
                                                                              LoginController
                                                                              LoginController - Handles login display and authentication
                                                                              - - - - - - - - - - - - -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              
                                                                              -        
                                                                              - -
                                                                              -
                                                                              - - - -
                                                                              -
                                                                              -
                                                                              - -
                                                                              - On this page - -
                                                                                -
                                                                              • Table Of Contents
                                                                              • -
                                                                              • - -
                                                                              • - - -
                                                                              -
                                                                              - -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -

                                                                              Search results

                                                                              - -
                                                                              -
                                                                              -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - -
                                                                                - - - - - - - - diff --git a/docs/files/controllers-auth-logoutcontroller.html b/docs/files/controllers-auth-logoutcontroller.html deleted file mode 100644 index 36b42d1c..00000000 --- a/docs/files/controllers-auth-logoutcontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                -

                                                                                SAE Project Documentation

                                                                                - - - - - -
                                                                                - -
                                                                                -
                                                                                - - - - -
                                                                                -
                                                                                -
                                                                                  -
                                                                                - -
                                                                                -

                                                                                LogoutController.php

                                                                                - - - - - - - - -

                                                                                - Table of Contents - - -

                                                                                - - - - -

                                                                                - Classes - - -

                                                                                -
                                                                                -
                                                                                LogoutController
                                                                                LogoutController - Handles user logout
                                                                                - - - - - - - - - - - - -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                
                                                                                -        
                                                                                - -
                                                                                -
                                                                                - - - -
                                                                                -
                                                                                -
                                                                                - -
                                                                                - On this page - -
                                                                                  -
                                                                                • Table Of Contents
                                                                                • -
                                                                                • - -
                                                                                • - - -
                                                                                -
                                                                                - -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                -

                                                                                Search results

                                                                                - -
                                                                                -
                                                                                -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - -
                                                                                  - - - - - - - - diff --git a/docs/files/controllers-auth-passwordresetcontroller.html b/docs/files/controllers-auth-passwordresetcontroller.html deleted file mode 100644 index bb712c10..00000000 --- a/docs/files/controllers-auth-passwordresetcontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                  -

                                                                                  SAE Project Documentation

                                                                                  - - - - - -
                                                                                  - -
                                                                                  -
                                                                                  - - - - -
                                                                                  -
                                                                                  -
                                                                                    -
                                                                                  - -
                                                                                  -

                                                                                  PasswordResetController.php

                                                                                  - - - - - - - - -

                                                                                  - Table of Contents - - -

                                                                                  - - - - -

                                                                                  - Classes - - -

                                                                                  -
                                                                                  -
                                                                                  PasswordResetController
                                                                                  PasswordResetController - Handles password reset functionality
                                                                                  - - - - - - - - - - - - -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  
                                                                                  -        
                                                                                  - -
                                                                                  -
                                                                                  - - - -
                                                                                  -
                                                                                  -
                                                                                  - -
                                                                                  - On this page - -
                                                                                    -
                                                                                  • Table Of Contents
                                                                                  • -
                                                                                  • - -
                                                                                  • - - -
                                                                                  -
                                                                                  - -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -

                                                                                  Search results

                                                                                  - -
                                                                                  -
                                                                                  -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    - - -
                                                                                    - - - - - - - - diff --git a/docs/files/controllers-auth-registercontroller.html b/docs/files/controllers-auth-registercontroller.html deleted file mode 100644 index ff1ef95a..00000000 --- a/docs/files/controllers-auth-registercontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                    -

                                                                                    SAE Project Documentation

                                                                                    - - - - - -
                                                                                    - -
                                                                                    -
                                                                                    - - - - -
                                                                                    -
                                                                                    -
                                                                                      -
                                                                                    - -
                                                                                    -

                                                                                    RegisterController.php

                                                                                    - - - - - - - - -

                                                                                    - Table of Contents - - -

                                                                                    - - - - -

                                                                                    - Classes - - -

                                                                                    -
                                                                                    -
                                                                                    RegisterController
                                                                                    RegisterController - Handles user registration
                                                                                    - - - - - - - - - - - - -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    
                                                                                    -        
                                                                                    - -
                                                                                    -
                                                                                    - - - -
                                                                                    -
                                                                                    -
                                                                                    - -
                                                                                    - On this page - -
                                                                                      -
                                                                                    • Table Of Contents
                                                                                    • -
                                                                                    • - -
                                                                                    • - - -
                                                                                    -
                                                                                    - -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    -

                                                                                    Search results

                                                                                    - -
                                                                                    -
                                                                                    -
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      - - -
                                                                                      - - - - - - - - diff --git a/docs/files/controllers-basecontroller.html b/docs/files/controllers-basecontroller.html deleted file mode 100644 index 6a17776d..00000000 --- a/docs/files/controllers-basecontroller.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                      -

                                                                                      SAE Project Documentation

                                                                                      - - - - - -
                                                                                      - -
                                                                                      -
                                                                                      - - - - -
                                                                                      -
                                                                                      -
                                                                                        -
                                                                                      - -
                                                                                      -

                                                                                      BaseController.php

                                                                                      - - - - - - - - -

                                                                                      - Table of Contents - - -

                                                                                      - - - - -

                                                                                      - Classes - - -

                                                                                      -
                                                                                      -
                                                                                      BaseController
                                                                                      BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                      - - - - - - - - - - - - -
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      
                                                                                      -        
                                                                                      - -
                                                                                      -
                                                                                      - - - -
                                                                                      -
                                                                                      -
                                                                                      - -
                                                                                      - On this page - -
                                                                                        -
                                                                                      • Table Of Contents
                                                                                      • -
                                                                                      • - -
                                                                                      • - - -
                                                                                      -
                                                                                      - -
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      -

                                                                                      Search results

                                                                                      - -
                                                                                      -
                                                                                      -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        - - -
                                                                                        - - - - - - - - diff --git a/docs/files/controllers-homecontroller.html b/docs/files/controllers-homecontroller.html deleted file mode 100644 index ff99aca7..00000000 --- a/docs/files/controllers-homecontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                        -

                                                                                        SAE Project Documentation

                                                                                        - - - - - -
                                                                                        - -
                                                                                        -
                                                                                        - - - - -
                                                                                        -
                                                                                        -
                                                                                          -
                                                                                        - -
                                                                                        -

                                                                                        HomeController.php

                                                                                        - - - - - - - - -

                                                                                        - Table of Contents - - -

                                                                                        - - - - -

                                                                                        - Classes - - -

                                                                                        -
                                                                                        -
                                                                                        HomeController
                                                                                        HomeController - Handles home page routing
                                                                                        - - - - - - - - - - - - -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        
                                                                                        -        
                                                                                        - -
                                                                                        -
                                                                                        - - - -
                                                                                        -
                                                                                        -
                                                                                        - -
                                                                                        - On this page - -
                                                                                          -
                                                                                        • Table Of Contents
                                                                                        • -
                                                                                        • - -
                                                                                        • - - -
                                                                                        -
                                                                                        - -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        -

                                                                                        Search results

                                                                                        - -
                                                                                        -
                                                                                        -
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          - - -
                                                                                          - - - - - - - - diff --git a/docs/files/controllers-user-dashboardcontroller.html b/docs/files/controllers-user-dashboardcontroller.html deleted file mode 100644 index d11f3a3d..00000000 --- a/docs/files/controllers-user-dashboardcontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                          -

                                                                                          SAE Project Documentation

                                                                                          - - - - - -
                                                                                          - -
                                                                                          -
                                                                                          - - - - -
                                                                                          -
                                                                                          -
                                                                                            -
                                                                                          - -
                                                                                          -

                                                                                          DashboardController.php

                                                                                          - - - - - - - - -

                                                                                          - Table of Contents - - -

                                                                                          - - - - -

                                                                                          - Classes - - -

                                                                                          -
                                                                                          -
                                                                                          DashboardController
                                                                                          DashboardController - Handles user dashboard
                                                                                          - - - - - - - - - - - - -
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          
                                                                                          -        
                                                                                          - -
                                                                                          -
                                                                                          - - - -
                                                                                          -
                                                                                          -
                                                                                          - -
                                                                                          - On this page - -
                                                                                            -
                                                                                          • Table Of Contents
                                                                                          • -
                                                                                          • - -
                                                                                          • - - -
                                                                                          -
                                                                                          - -
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          -

                                                                                          Search results

                                                                                          - -
                                                                                          -
                                                                                          -
                                                                                            -
                                                                                            -
                                                                                            -
                                                                                            -
                                                                                            - - -
                                                                                            - - - - - - - - diff --git a/docs/files/controllers-user-resourcedetailscontroller.html b/docs/files/controllers-user-resourcedetailscontroller.html deleted file mode 100644 index a76fda99..00000000 --- a/docs/files/controllers-user-resourcedetailscontroller.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                            -

                                                                                            SAE Project Documentation

                                                                                            - - - - - -
                                                                                            - -
                                                                                            -
                                                                                            - - - - -
                                                                                            -
                                                                                            -
                                                                                              -
                                                                                            - -
                                                                                            -

                                                                                            ResourceDetailsController.php

                                                                                            - - - - - - - - -

                                                                                            - Table of Contents - - -

                                                                                            - - - - -

                                                                                            - Classes - - -

                                                                                            -
                                                                                            -
                                                                                            ResourceDetailsController
                                                                                            BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                            - - - - - - - - - - - - -
                                                                                            -
                                                                                            -
                                                                                            -
                                                                                            -
                                                                                            
                                                                                            -        
                                                                                            - -
                                                                                            -
                                                                                            - - - -
                                                                                            -
                                                                                            -
                                                                                            - -
                                                                                            - On this page - -
                                                                                              -
                                                                                            • Table Of Contents
                                                                                            • -
                                                                                            • - -
                                                                                            • - - -
                                                                                            -
                                                                                            - -
                                                                                            -
                                                                                            -
                                                                                            -
                                                                                            -
                                                                                            -

                                                                                            Search results

                                                                                            - -
                                                                                            -
                                                                                            -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - -
                                                                                              - - - - - - - - diff --git a/docs/files/controllers-user-resourcelistcontroller.html b/docs/files/controllers-user-resourcelistcontroller.html deleted file mode 100644 index a1532e2b..00000000 --- a/docs/files/controllers-user-resourcelistcontroller.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                              -

                                                                                              SAE Project Documentation

                                                                                              - - - - - -
                                                                                              - -
                                                                                              -
                                                                                              - - - - -
                                                                                              -
                                                                                              -
                                                                                                -
                                                                                              - -
                                                                                              -

                                                                                              ResourceListController.php

                                                                                              - - - - - - - - -

                                                                                              - Table of Contents - - -

                                                                                              - - - - -

                                                                                              - Classes - - -

                                                                                              -
                                                                                              -
                                                                                              ResourceListController
                                                                                              BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                              - - - - - - - - - - - - -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              
                                                                                              -        
                                                                                              - -
                                                                                              -
                                                                                              - - - -
                                                                                              -
                                                                                              -
                                                                                              - -
                                                                                              - On this page - -
                                                                                                -
                                                                                              • Table Of Contents
                                                                                              • -
                                                                                              • - -
                                                                                              • - - -
                                                                                              -
                                                                                              - -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -

                                                                                              Search results

                                                                                              - -
                                                                                              -
                                                                                              -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - -
                                                                                                - - - - - - - - diff --git a/docs/files/controllers-user-studentscontroller.html b/docs/files/controllers-user-studentscontroller.html deleted file mode 100644 index dff28ad4..00000000 --- a/docs/files/controllers-user-studentscontroller.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                -

                                                                                                SAE Project Documentation

                                                                                                - - - - - -
                                                                                                - -
                                                                                                -
                                                                                                - - - - -
                                                                                                -
                                                                                                -
                                                                                                  -
                                                                                                - -
                                                                                                -

                                                                                                StudentsController.php

                                                                                                - - - - - - - - -

                                                                                                - Table of Contents - - -

                                                                                                - - - - -

                                                                                                - Classes - - -

                                                                                                -
                                                                                                -
                                                                                                StudentsController
                                                                                                StudentsController - Handles student data API
                                                                                                - - - - - - - - - - - - -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                
                                                                                                -        
                                                                                                - -
                                                                                                -
                                                                                                - - - -
                                                                                                -
                                                                                                -
                                                                                                - -
                                                                                                - On this page - -
                                                                                                  -
                                                                                                • Table Of Contents
                                                                                                • -
                                                                                                • - -
                                                                                                • - - -
                                                                                                -
                                                                                                - -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -

                                                                                                Search results

                                                                                                - -
                                                                                                -
                                                                                                -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - -
                                                                                                  - - - - - - - - diff --git a/docs/files/cron-cleanup.html b/docs/files/cron-cleanup.html deleted file mode 100644 index add46f95..00000000 --- a/docs/files/cron-cleanup.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                  -

                                                                                                  SAE Project Documentation

                                                                                                  - - - - - -
                                                                                                  - -
                                                                                                  -
                                                                                                  - - - - -
                                                                                                  -
                                                                                                  -
                                                                                                    -
                                                                                                  - -
                                                                                                  -

                                                                                                  cleanup.php

                                                                                                  - -

                                                                                                  Cleanup Cron Job Script -Automatically deletes expired pending registrations (older than 15 minutes) -Should be run periodically via cron job

                                                                                                  - - - - - - - -

                                                                                                  - Table of Contents - - -

                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  
                                                                                                  -        
                                                                                                  - -
                                                                                                  -
                                                                                                  - - - -
                                                                                                  -
                                                                                                  -
                                                                                                  - -
                                                                                                  - On this page - -
                                                                                                    -
                                                                                                  • Table Of Contents
                                                                                                  • -
                                                                                                  • -
                                                                                                      -
                                                                                                    -
                                                                                                  • - - -
                                                                                                  -
                                                                                                  - -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -

                                                                                                  Search results

                                                                                                  - -
                                                                                                  -
                                                                                                  -
                                                                                                    -
                                                                                                    -
                                                                                                    -
                                                                                                    -
                                                                                                    - - -
                                                                                                    - - - - - - - - diff --git a/docs/files/index.html b/docs/files/index.html deleted file mode 100644 index a33b1fba..00000000 --- a/docs/files/index.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                    -

                                                                                                    SAE Project Documentation

                                                                                                    - - - - - -
                                                                                                    - -
                                                                                                    -
                                                                                                    - - - - -
                                                                                                    -
                                                                                                    -
                                                                                                      -
                                                                                                    - -
                                                                                                    -

                                                                                                    index.php

                                                                                                    - -

                                                                                                    Application Entry Point -Routes all requests through the main router

                                                                                                    - - - - - - - -

                                                                                                    - Table of Contents - - -

                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                    -
                                                                                                    -
                                                                                                    -
                                                                                                    -
                                                                                                    
                                                                                                    -        
                                                                                                    - -
                                                                                                    -
                                                                                                    - - - -
                                                                                                    -
                                                                                                    -
                                                                                                    - -
                                                                                                    - On this page - -
                                                                                                      -
                                                                                                    • Table Of Contents
                                                                                                    • -
                                                                                                    • -
                                                                                                        -
                                                                                                      -
                                                                                                    • - - -
                                                                                                    -
                                                                                                    - -
                                                                                                    -
                                                                                                    -
                                                                                                    -
                                                                                                    -
                                                                                                    -

                                                                                                    Search results

                                                                                                    - -
                                                                                                    -
                                                                                                    -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - -
                                                                                                      - - - - - - - - diff --git a/docs/files/models-code2vecservice.html b/docs/files/models-code2vecservice.html deleted file mode 100644 index 5c25871f..00000000 --- a/docs/files/models-code2vecservice.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                      -

                                                                                                      SAE Project Documentation

                                                                                                      - - - - - -
                                                                                                      - -
                                                                                                      -
                                                                                                      - - - - -
                                                                                                      -
                                                                                                      -
                                                                                                        -
                                                                                                      - -
                                                                                                      -

                                                                                                      Code2VecService.php

                                                                                                      - - - - - - - - -

                                                                                                      - Table of Contents - - -

                                                                                                      - - - - -

                                                                                                      - Classes - - -

                                                                                                      -
                                                                                                      -
                                                                                                      Code2VecService
                                                                                                      Service pour interagir avec code2aes2vec (Python) -Génère les vecteurs de grande dimension à partir des programmes étudiants
                                                                                                      - - - - - - - - - - - - -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      
                                                                                                      -        
                                                                                                      - -
                                                                                                      -
                                                                                                      - - - -
                                                                                                      -
                                                                                                      -
                                                                                                      - -
                                                                                                      - On this page - -
                                                                                                        -
                                                                                                      • Table Of Contents
                                                                                                      • -
                                                                                                      • - -
                                                                                                      • - - -
                                                                                                      -
                                                                                                      - -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -

                                                                                                      Search results

                                                                                                      - -
                                                                                                      -
                                                                                                      -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - -
                                                                                                        - - - - - - - - diff --git a/docs/files/models-database.html b/docs/files/models-database.html deleted file mode 100644 index 268e607a..00000000 --- a/docs/files/models-database.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                        -

                                                                                                        SAE Project Documentation

                                                                                                        - - - - - -
                                                                                                        - -
                                                                                                        -
                                                                                                        - - - - -
                                                                                                        -
                                                                                                        -
                                                                                                          -
                                                                                                        - -
                                                                                                        -

                                                                                                        Database.php

                                                                                                        - - - - - - - - -

                                                                                                        - Table of Contents - - -

                                                                                                        - - - - -

                                                                                                        - Classes - - -

                                                                                                        -
                                                                                                        -
                                                                                                        Database
                                                                                                        Database class - Database connection manager -Handles PDO connection with configuration from .env file
                                                                                                        - - - - - - - - - - - - -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        
                                                                                                        -        
                                                                                                        - -
                                                                                                        -
                                                                                                        - - - -
                                                                                                        -
                                                                                                        -
                                                                                                        - -
                                                                                                        - On this page - -
                                                                                                          -
                                                                                                        • Table Of Contents
                                                                                                        • -
                                                                                                        • - -
                                                                                                        • - - -
                                                                                                        -
                                                                                                        - -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -

                                                                                                        Search results

                                                                                                        - -
                                                                                                        -
                                                                                                        -
                                                                                                          -
                                                                                                          -
                                                                                                          -
                                                                                                          -
                                                                                                          - - -
                                                                                                          - - - - - - - - diff --git a/docs/files/models-dataset.html b/docs/files/models-dataset.html deleted file mode 100644 index 2ad964fe..00000000 --- a/docs/files/models-dataset.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                          -

                                                                                                          SAE Project Documentation

                                                                                                          - - - - - -
                                                                                                          - -
                                                                                                          -
                                                                                                          - - - - -
                                                                                                          -
                                                                                                          -
                                                                                                            -
                                                                                                          - -
                                                                                                          -

                                                                                                          Dataset.php

                                                                                                          - - - - - - - - -

                                                                                                          - Table of Contents - - -

                                                                                                          - - - - -

                                                                                                          - Classes - - -

                                                                                                          -
                                                                                                          -
                                                                                                          Dataset
                                                                                                          Modèle pour gérer les datasets -Utilise la structure BD existante
                                                                                                          - - - - - - - - - - - - -
                                                                                                          -
                                                                                                          -
                                                                                                          -
                                                                                                          -
                                                                                                          
                                                                                                          -        
                                                                                                          - -
                                                                                                          -
                                                                                                          - - - -
                                                                                                          -
                                                                                                          -
                                                                                                          - -
                                                                                                          - On this page - -
                                                                                                            -
                                                                                                          • Table Of Contents
                                                                                                          • -
                                                                                                          • - -
                                                                                                          • - - -
                                                                                                          -
                                                                                                          - -
                                                                                                          -
                                                                                                          -
                                                                                                          -
                                                                                                          -
                                                                                                          -

                                                                                                          Search results

                                                                                                          - -
                                                                                                          -
                                                                                                          -
                                                                                                            -
                                                                                                            -
                                                                                                            -
                                                                                                            -
                                                                                                            - - -
                                                                                                            - - - - - - - - diff --git a/docs/files/models-emailservice.html b/docs/files/models-emailservice.html deleted file mode 100644 index 4d855837..00000000 --- a/docs/files/models-emailservice.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                            -

                                                                                                            SAE Project Documentation

                                                                                                            - - - - - -
                                                                                                            - -
                                                                                                            -
                                                                                                            - - - - -
                                                                                                            -
                                                                                                            -
                                                                                                              -
                                                                                                            - -
                                                                                                            -

                                                                                                            EmailService.php

                                                                                                            - - - - - - - - -

                                                                                                            - Table of Contents - - -

                                                                                                            - - - - -

                                                                                                            - Classes - - -

                                                                                                            -
                                                                                                            -
                                                                                                            EmailService
                                                                                                            EmailService class - Email sending service -Handles email sending with PHPMailer
                                                                                                            - - - - - - - - - - - - -
                                                                                                            -
                                                                                                            -
                                                                                                            -
                                                                                                            -
                                                                                                            
                                                                                                            -        
                                                                                                            - -
                                                                                                            -
                                                                                                            - - - -
                                                                                                            -
                                                                                                            -
                                                                                                            - -
                                                                                                            - On this page - -
                                                                                                              -
                                                                                                            • Table Of Contents
                                                                                                            • -
                                                                                                            • - -
                                                                                                            • - - -
                                                                                                            -
                                                                                                            - -
                                                                                                            -
                                                                                                            -
                                                                                                            -
                                                                                                            -
                                                                                                            -

                                                                                                            Search results

                                                                                                            - -
                                                                                                            -
                                                                                                            -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              - - -
                                                                                                              - - - - - - - - diff --git a/docs/files/models-exercise.html b/docs/files/models-exercise.html deleted file mode 100644 index 346f014b..00000000 --- a/docs/files/models-exercise.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                              -

                                                                                                              SAE Project Documentation

                                                                                                              - - - - - -
                                                                                                              - -
                                                                                                              -
                                                                                                              - - - - -
                                                                                                              -
                                                                                                              -
                                                                                                                -
                                                                                                              - -
                                                                                                              -

                                                                                                              Exercise.php

                                                                                                              - - - - - - - - -

                                                                                                              - Table of Contents - - -

                                                                                                              - - - - -

                                                                                                              - Classes - - -

                                                                                                              -
                                                                                                              -
                                                                                                              Exercise
                                                                                                              - - - - - - - - - - - - -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              
                                                                                                              -        
                                                                                                              - -
                                                                                                              -
                                                                                                              - - - -
                                                                                                              -
                                                                                                              -
                                                                                                              - -
                                                                                                              - On this page - -
                                                                                                                -
                                                                                                              • Table Of Contents
                                                                                                              • -
                                                                                                              • - -
                                                                                                              • - - -
                                                                                                              -
                                                                                                              - -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              -

                                                                                                              Search results

                                                                                                              - -
                                                                                                              -
                                                                                                              -
                                                                                                                -
                                                                                                                -
                                                                                                                -
                                                                                                                -
                                                                                                                - - -
                                                                                                                - - - - - - - - diff --git a/docs/files/models-pendingregistration.html b/docs/files/models-pendingregistration.html deleted file mode 100644 index 4d2552c4..00000000 --- a/docs/files/models-pendingregistration.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                -

                                                                                                                SAE Project Documentation

                                                                                                                - - - - - -
                                                                                                                - -
                                                                                                                -
                                                                                                                - - - - -
                                                                                                                -
                                                                                                                -
                                                                                                                  -
                                                                                                                - -
                                                                                                                -

                                                                                                                PendingRegistration.php

                                                                                                                - - - - - - - - -

                                                                                                                - Table of Contents - - -

                                                                                                                - - - - -

                                                                                                                - Classes - - -

                                                                                                                -
                                                                                                                -
                                                                                                                PendingRegistration
                                                                                                                PendingRegistration Model - CRUD operations for pending registrations with PDO
                                                                                                                - - - - - - - - - - - - -
                                                                                                                -
                                                                                                                -
                                                                                                                -
                                                                                                                -
                                                                                                                
                                                                                                                -        
                                                                                                                - -
                                                                                                                -
                                                                                                                - - - -
                                                                                                                -
                                                                                                                -
                                                                                                                - -
                                                                                                                - On this page - -
                                                                                                                  -
                                                                                                                • Table Of Contents
                                                                                                                • -
                                                                                                                • - -
                                                                                                                • - - -
                                                                                                                -
                                                                                                                - -
                                                                                                                -
                                                                                                                -
                                                                                                                -
                                                                                                                -
                                                                                                                -

                                                                                                                Search results

                                                                                                                - -
                                                                                                                -
                                                                                                                -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  - - -
                                                                                                                  - - - - - - - - diff --git a/docs/files/models-resource.html b/docs/files/models-resource.html deleted file mode 100644 index af3ee5aa..00000000 --- a/docs/files/models-resource.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                  -

                                                                                                                  SAE Project Documentation

                                                                                                                  - - - - - -
                                                                                                                  - -
                                                                                                                  -
                                                                                                                  - - - - -
                                                                                                                  -
                                                                                                                  -
                                                                                                                    -
                                                                                                                  - -
                                                                                                                  -

                                                                                                                  Resource.php

                                                                                                                  - - - - - - - - -

                                                                                                                  - Table of Contents - - -

                                                                                                                  - - - - -

                                                                                                                  - Classes - - -

                                                                                                                  -
                                                                                                                  -
                                                                                                                  Resource
                                                                                                                  - - - - - - - - - - - - -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  
                                                                                                                  -        
                                                                                                                  - -
                                                                                                                  -
                                                                                                                  - - - -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  - -
                                                                                                                  - On this page - -
                                                                                                                    -
                                                                                                                  • Table Of Contents
                                                                                                                  • -
                                                                                                                  • - -
                                                                                                                  • - - -
                                                                                                                  -
                                                                                                                  - -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  -

                                                                                                                  Search results

                                                                                                                  - -
                                                                                                                  -
                                                                                                                  -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    - - -
                                                                                                                    - - - - - - - - diff --git a/docs/files/models-student.html b/docs/files/models-student.html deleted file mode 100644 index 6352629d..00000000 --- a/docs/files/models-student.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                    -

                                                                                                                    SAE Project Documentation

                                                                                                                    - - - - - -
                                                                                                                    - -
                                                                                                                    -
                                                                                                                    - - - - -
                                                                                                                    -
                                                                                                                    -
                                                                                                                      -
                                                                                                                    - -
                                                                                                                    -

                                                                                                                    Student.php

                                                                                                                    - - - - - - - - -

                                                                                                                    - Table of Contents - - -

                                                                                                                    - - - - -

                                                                                                                    - Classes - - -

                                                                                                                    -
                                                                                                                    -
                                                                                                                    Student
                                                                                                                    Student Model - Handles student data from JSON file
                                                                                                                    - - - - - - - - - - - - -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    
                                                                                                                    -        
                                                                                                                    - -
                                                                                                                    -
                                                                                                                    - - - -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    - -
                                                                                                                    - On this page - -
                                                                                                                      -
                                                                                                                    • Table Of Contents
                                                                                                                    • -
                                                                                                                    • - -
                                                                                                                    • - - -
                                                                                                                    -
                                                                                                                    - -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -

                                                                                                                    Search results

                                                                                                                    - -
                                                                                                                    -
                                                                                                                    -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - -
                                                                                                                      - - - - - - - - diff --git a/docs/files/models-user.html b/docs/files/models-user.html deleted file mode 100644 index 3c0fd9b3..00000000 --- a/docs/files/models-user.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                      -

                                                                                                                      SAE Project Documentation

                                                                                                                      - - - - - -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                        -
                                                                                                                      - -
                                                                                                                      -

                                                                                                                      User.php

                                                                                                                      - - - - - - - - -

                                                                                                                      - Table of Contents - - -

                                                                                                                      - - - - -

                                                                                                                      - Classes - - -

                                                                                                                      -
                                                                                                                      -
                                                                                                                      User
                                                                                                                      User Model - CRUD operations for users with PDO
                                                                                                                      - - - - - - - - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      
                                                                                                                      -        
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      - On this page - -
                                                                                                                        -
                                                                                                                      • Table Of Contents
                                                                                                                      • -
                                                                                                                      • - -
                                                                                                                      • - - -
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -

                                                                                                                      Search results

                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        - - -
                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-get-oauth-token.html b/docs/files/phpmailer-get-oauth-token.html deleted file mode 100644 index 1ddcefbd..00000000 --- a/docs/files/phpmailer-get-oauth-token.html +++ /dev/null @@ -1,400 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                        -

                                                                                                                        SAE Project Documentation

                                                                                                                        - - - - - -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - - - - -
                                                                                                                        -
                                                                                                                        -
                                                                                                                          -
                                                                                                                        - -
                                                                                                                        -

                                                                                                                        get_oauth_token.php

                                                                                                                        - -

                                                                                                                        PHPMailer - PHP email creation and transport class.

                                                                                                                        - - -

                                                                                                                        PHP Version 5.5

                                                                                                                        -
                                                                                                                        - - -
                                                                                                                        - Tags - - -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        - see -
                                                                                                                        -
                                                                                                                        - https://github.com/PHPMailer/PHPMailer/ - -

                                                                                                                        The PHPMailer GitHub project

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - author -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - author -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        Jim Jagielski (jimjag) jimjag@gmail.com

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - author -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - author -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        Brent R. Matzelle (original founder)

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - copyright -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        2012 - 2020 Marcus Bointon

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - copyright -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        2010 - 2012 Jim Jagielski

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - copyright -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        2004 - 2009 Andy Prevost

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - license -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - note -
                                                                                                                        -
                                                                                                                        - -

                                                                                                                        This program is distributed in the hope that it will be useful - WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE.

                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - - - -

                                                                                                                        - Table of Contents - - -

                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        
                                                                                                                        -        
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        - - - -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        - -
                                                                                                                        - On this page - -
                                                                                                                          -
                                                                                                                        • Table Of Contents
                                                                                                                        • -
                                                                                                                        • -
                                                                                                                            -
                                                                                                                          -
                                                                                                                        • - - -
                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        -

                                                                                                                        Search results

                                                                                                                        - -
                                                                                                                        -
                                                                                                                        -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          - - -
                                                                                                                          - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-af.html b/docs/files/phpmailer-language-phpmailer-lang-af.html deleted file mode 100644 index 66a21b07..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-af.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                          -

                                                                                                                          SAE Project Documentation

                                                                                                                          - - - - - -
                                                                                                                          - -
                                                                                                                          -
                                                                                                                          - - - - -
                                                                                                                          -
                                                                                                                          -
                                                                                                                            -
                                                                                                                          - -
                                                                                                                          -

                                                                                                                          phpmailer.lang-af.php

                                                                                                                          - -

                                                                                                                          Afrikaans PHPMailer language file: refer to English translation for definitive list

                                                                                                                          - - - - - - - -

                                                                                                                          - Table of Contents - - -

                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          
                                                                                                                          -        
                                                                                                                          - -
                                                                                                                          -
                                                                                                                          - - - -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          - -
                                                                                                                          - On this page - -
                                                                                                                            -
                                                                                                                          • Table Of Contents
                                                                                                                          • -
                                                                                                                          • -
                                                                                                                              -
                                                                                                                            -
                                                                                                                          • - - -
                                                                                                                          -
                                                                                                                          - -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          -

                                                                                                                          Search results

                                                                                                                          - -
                                                                                                                          -
                                                                                                                          -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            - - -
                                                                                                                            - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ar.html b/docs/files/phpmailer-language-phpmailer-lang-ar.html deleted file mode 100644 index ebee98c2..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ar.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                            -

                                                                                                                            SAE Project Documentation

                                                                                                                            - - - - - -
                                                                                                                            - -
                                                                                                                            -
                                                                                                                            - - - - -
                                                                                                                            -
                                                                                                                            -
                                                                                                                              -
                                                                                                                            - -
                                                                                                                            -

                                                                                                                            phpmailer.lang-ar.php

                                                                                                                            - -

                                                                                                                            Arabic PHPMailer language file: refer to English translation for definitive list

                                                                                                                            - - - - -
                                                                                                                            - Tags - - -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            - author -
                                                                                                                            -
                                                                                                                            - -

                                                                                                                            bahjat al mostafa bahjat983@hotmail.com

                                                                                                                            -
                                                                                                                            - -
                                                                                                                            -
                                                                                                                            - - - -

                                                                                                                            - Table of Contents - - -

                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            
                                                                                                                            -        
                                                                                                                            - -
                                                                                                                            -
                                                                                                                            - - - -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            - On this page - -
                                                                                                                              -
                                                                                                                            • Table Of Contents
                                                                                                                            • -
                                                                                                                            • -
                                                                                                                                -
                                                                                                                              -
                                                                                                                            • - - -
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            -

                                                                                                                            Search results

                                                                                                                            - -
                                                                                                                            -
                                                                                                                            -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              - - -
                                                                                                                              - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-as.html b/docs/files/phpmailer-language-phpmailer-lang-as.html deleted file mode 100644 index 98e857cc..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-as.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                              -

                                                                                                                              SAE Project Documentation

                                                                                                                              - - - - - -
                                                                                                                              - -
                                                                                                                              -
                                                                                                                              - - - - -
                                                                                                                              -
                                                                                                                              -
                                                                                                                                -
                                                                                                                              - -
                                                                                                                              -

                                                                                                                              phpmailer.lang-as.php

                                                                                                                              - -

                                                                                                                              Assamese PHPMailer language file: refer to English translation for definitive list

                                                                                                                              - - - - -
                                                                                                                              - Tags - - -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              - author -
                                                                                                                              -
                                                                                                                              - -

                                                                                                                              Manish Sarkar manish.n.manish@gmail.com

                                                                                                                              -
                                                                                                                              - -
                                                                                                                              -
                                                                                                                              - - - -

                                                                                                                              - Table of Contents - - -

                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              
                                                                                                                              -        
                                                                                                                              - -
                                                                                                                              -
                                                                                                                              - - - -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              - -
                                                                                                                              - On this page - -
                                                                                                                                -
                                                                                                                              • Table Of Contents
                                                                                                                              • -
                                                                                                                              • -
                                                                                                                                  -
                                                                                                                                -
                                                                                                                              • - - -
                                                                                                                              -
                                                                                                                              - -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              -

                                                                                                                              Search results

                                                                                                                              - -
                                                                                                                              -
                                                                                                                              -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                - - -
                                                                                                                                - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-az.html b/docs/files/phpmailer-language-phpmailer-lang-az.html deleted file mode 100644 index 1f758efb..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-az.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                -

                                                                                                                                SAE Project Documentation

                                                                                                                                - - - - - -
                                                                                                                                - -
                                                                                                                                -
                                                                                                                                - - - - -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                  -
                                                                                                                                - -
                                                                                                                                -

                                                                                                                                phpmailer.lang-az.php

                                                                                                                                - -

                                                                                                                                Azerbaijani PHPMailer language file: refer to English translation for definitive list

                                                                                                                                - - - - -
                                                                                                                                - Tags - - -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                - author -
                                                                                                                                -
                                                                                                                                - -

                                                                                                                                @mirjalal

                                                                                                                                -
                                                                                                                                - -
                                                                                                                                -
                                                                                                                                - - - -

                                                                                                                                - Table of Contents - - -

                                                                                                                                - - - - - - - - - - - - - - - - -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                
                                                                                                                                -        
                                                                                                                                - -
                                                                                                                                -
                                                                                                                                - - - -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                - -
                                                                                                                                - On this page - -
                                                                                                                                  -
                                                                                                                                • Table Of Contents
                                                                                                                                • -
                                                                                                                                • -
                                                                                                                                    -
                                                                                                                                  -
                                                                                                                                • - - -
                                                                                                                                -
                                                                                                                                - -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                -

                                                                                                                                Search results

                                                                                                                                - -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  - - -
                                                                                                                                  - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ba.html b/docs/files/phpmailer-language-phpmailer-lang-ba.html deleted file mode 100644 index 384fbd8b..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ba.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                  -

                                                                                                                                  SAE Project Documentation

                                                                                                                                  - - - - - -
                                                                                                                                  - -
                                                                                                                                  -
                                                                                                                                  - - - - -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                    -
                                                                                                                                  - -
                                                                                                                                  -

                                                                                                                                  phpmailer.lang-ba.php

                                                                                                                                  - -

                                                                                                                                  Bosnian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                  - - - - -
                                                                                                                                  - Tags - - -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  - author -
                                                                                                                                  -
                                                                                                                                  - -

                                                                                                                                  Ermin Islamagić ermin@islamagic.com

                                                                                                                                  -
                                                                                                                                  - -
                                                                                                                                  -
                                                                                                                                  - - - -

                                                                                                                                  - Table of Contents - - -

                                                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  
                                                                                                                                  -        
                                                                                                                                  - -
                                                                                                                                  -
                                                                                                                                  - - - -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  - -
                                                                                                                                  - On this page - -
                                                                                                                                    -
                                                                                                                                  • Table Of Contents
                                                                                                                                  • -
                                                                                                                                  • -
                                                                                                                                      -
                                                                                                                                    -
                                                                                                                                  • - - -
                                                                                                                                  -
                                                                                                                                  - -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -

                                                                                                                                  Search results

                                                                                                                                  - -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    - - -
                                                                                                                                    - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-be.html b/docs/files/phpmailer-language-phpmailer-lang-be.html deleted file mode 100644 index 5cf4a074..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-be.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                    -

                                                                                                                                    SAE Project Documentation

                                                                                                                                    - - - - - -
                                                                                                                                    - -
                                                                                                                                    -
                                                                                                                                    - - - - -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                      -
                                                                                                                                    - -
                                                                                                                                    -

                                                                                                                                    phpmailer.lang-be.php

                                                                                                                                    - -

                                                                                                                                    Belarusian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                    - - - - -
                                                                                                                                    - Tags - - -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    - author -
                                                                                                                                    -
                                                                                                                                    - -

                                                                                                                                    Aleksander Maksymiuk info@setpro.pl

                                                                                                                                    -
                                                                                                                                    - -
                                                                                                                                    -
                                                                                                                                    - - - -

                                                                                                                                    - Table of Contents - - -

                                                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    
                                                                                                                                    -        
                                                                                                                                    - -
                                                                                                                                    -
                                                                                                                                    - - - -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    - -
                                                                                                                                    - On this page - -
                                                                                                                                      -
                                                                                                                                    • Table Of Contents
                                                                                                                                    • -
                                                                                                                                    • -
                                                                                                                                        -
                                                                                                                                      -
                                                                                                                                    • - - -
                                                                                                                                    -
                                                                                                                                    - -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -

                                                                                                                                    Search results

                                                                                                                                    - -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      - - -
                                                                                                                                      - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-bg.html b/docs/files/phpmailer-language-phpmailer-lang-bg.html deleted file mode 100644 index eb18f72a..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-bg.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                      -

                                                                                                                                      SAE Project Documentation

                                                                                                                                      - - - - - -
                                                                                                                                      - -
                                                                                                                                      -
                                                                                                                                      - - - - -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                        -
                                                                                                                                      - -
                                                                                                                                      -

                                                                                                                                      phpmailer.lang-bg.php

                                                                                                                                      - -

                                                                                                                                      Bulgarian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                      - - - - -
                                                                                                                                      - Tags - - -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      - author -
                                                                                                                                      -
                                                                                                                                      - -

                                                                                                                                      Mikhail Kyosev mialygk@gmail.com

                                                                                                                                      -
                                                                                                                                      - -
                                                                                                                                      -
                                                                                                                                      - - - -

                                                                                                                                      - Table of Contents - - -

                                                                                                                                      - - - - - - - - - - - - - - - - -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      
                                                                                                                                      -        
                                                                                                                                      - -
                                                                                                                                      -
                                                                                                                                      - - - -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      - -
                                                                                                                                      - On this page - -
                                                                                                                                        -
                                                                                                                                      • Table Of Contents
                                                                                                                                      • -
                                                                                                                                      • -
                                                                                                                                          -
                                                                                                                                        -
                                                                                                                                      • - - -
                                                                                                                                      -
                                                                                                                                      - -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -

                                                                                                                                      Search results

                                                                                                                                      - -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        - - -
                                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-bn.html b/docs/files/phpmailer-language-phpmailer-lang-bn.html deleted file mode 100644 index 21ae0468..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-bn.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                        -

                                                                                                                                        SAE Project Documentation

                                                                                                                                        - - - - - -
                                                                                                                                        - -
                                                                                                                                        -
                                                                                                                                        - - - - -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                          -
                                                                                                                                        - -
                                                                                                                                        -

                                                                                                                                        phpmailer.lang-bn.php

                                                                                                                                        - -

                                                                                                                                        Bengali PHPMailer language file: refer to English translation for definitive list

                                                                                                                                        - - - - -
                                                                                                                                        - Tags - - -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        - author -
                                                                                                                                        -
                                                                                                                                        - -

                                                                                                                                        Manish Sarkar manish.n.manish@gmail.com

                                                                                                                                        -
                                                                                                                                        - -
                                                                                                                                        -
                                                                                                                                        - - - -

                                                                                                                                        - Table of Contents - - -

                                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        
                                                                                                                                        -        
                                                                                                                                        - -
                                                                                                                                        -
                                                                                                                                        - - - -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        - -
                                                                                                                                        - On this page - -
                                                                                                                                          -
                                                                                                                                        • Table Of Contents
                                                                                                                                        • -
                                                                                                                                        • -
                                                                                                                                            -
                                                                                                                                          -
                                                                                                                                        • - - -
                                                                                                                                        -
                                                                                                                                        - -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -

                                                                                                                                        Search results

                                                                                                                                        - -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          - - -
                                                                                                                                          - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ca.html b/docs/files/phpmailer-language-phpmailer-lang-ca.html deleted file mode 100644 index bcd17ee3..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ca.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                          -

                                                                                                                                          SAE Project Documentation

                                                                                                                                          - - - - - -
                                                                                                                                          - -
                                                                                                                                          -
                                                                                                                                          - - - - -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                            -
                                                                                                                                          - -
                                                                                                                                          -

                                                                                                                                          phpmailer.lang-ca.php

                                                                                                                                          - -

                                                                                                                                          Catalan PHPMailer language file: refer to English translation for definitive list

                                                                                                                                          - - - - -
                                                                                                                                          - Tags - - -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          - author -
                                                                                                                                          -
                                                                                                                                          - -

                                                                                                                                          Ivan <web AT microstudi DOT com>

                                                                                                                                          -
                                                                                                                                          - -
                                                                                                                                          -
                                                                                                                                          - - - -

                                                                                                                                          - Table of Contents - - -

                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          
                                                                                                                                          -        
                                                                                                                                          - -
                                                                                                                                          -
                                                                                                                                          - - - -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          - -
                                                                                                                                          - On this page - -
                                                                                                                                            -
                                                                                                                                          • Table Of Contents
                                                                                                                                          • -
                                                                                                                                          • -
                                                                                                                                              -
                                                                                                                                            -
                                                                                                                                          • - - -
                                                                                                                                          -
                                                                                                                                          - -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -

                                                                                                                                          Search results

                                                                                                                                          - -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            - - -
                                                                                                                                            - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-cs.html b/docs/files/phpmailer-language-phpmailer-lang-cs.html deleted file mode 100644 index e304b3a1..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-cs.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                            -

                                                                                                                                            SAE Project Documentation

                                                                                                                                            - - - - - -
                                                                                                                                            - -
                                                                                                                                            -
                                                                                                                                            - - - - -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                              -
                                                                                                                                            - -
                                                                                                                                            -

                                                                                                                                            phpmailer.lang-cs.php

                                                                                                                                            - -

                                                                                                                                            Czech PHPMailer language file: refer to English translation for definitive list

                                                                                                                                            - - - - - - - -

                                                                                                                                            - Table of Contents - - -

                                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            
                                                                                                                                            -        
                                                                                                                                            - -
                                                                                                                                            -
                                                                                                                                            - - - -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            - -
                                                                                                                                            - On this page - -
                                                                                                                                              -
                                                                                                                                            • Table Of Contents
                                                                                                                                            • -
                                                                                                                                            • -
                                                                                                                                                -
                                                                                                                                              -
                                                                                                                                            • - - -
                                                                                                                                            -
                                                                                                                                            - -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -

                                                                                                                                            Search results

                                                                                                                                            - -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              - - -
                                                                                                                                              - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-da.html b/docs/files/phpmailer-language-phpmailer-lang-da.html deleted file mode 100644 index 25e20f4e..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-da.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                              -

                                                                                                                                              SAE Project Documentation

                                                                                                                                              - - - - - -
                                                                                                                                              - -
                                                                                                                                              -
                                                                                                                                              - - - - -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                                -
                                                                                                                                              - -
                                                                                                                                              -

                                                                                                                                              phpmailer.lang-da.php

                                                                                                                                              - -

                                                                                                                                              Danish PHPMailer language file: refer to English translation for definitive list

                                                                                                                                              - - - - -
                                                                                                                                              - Tags - - -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              - author -
                                                                                                                                              -
                                                                                                                                              - -

                                                                                                                                              John Sebastian jms@iwb.dk -Rewrite and extension of the work by Mikael Stokkebro info@stokkebro.dk

                                                                                                                                              -
                                                                                                                                              - -
                                                                                                                                              -
                                                                                                                                              - - - -

                                                                                                                                              - Table of Contents - - -

                                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              
                                                                                                                                              -        
                                                                                                                                              - -
                                                                                                                                              -
                                                                                                                                              - - - -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              - -
                                                                                                                                              - On this page - -
                                                                                                                                                -
                                                                                                                                              • Table Of Contents
                                                                                                                                              • -
                                                                                                                                              • -
                                                                                                                                                  -
                                                                                                                                                -
                                                                                                                                              • - - -
                                                                                                                                              -
                                                                                                                                              - -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -

                                                                                                                                              Search results

                                                                                                                                              - -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                - - -
                                                                                                                                                - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-de.html b/docs/files/phpmailer-language-phpmailer-lang-de.html deleted file mode 100644 index 09b65f47..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-de.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                -

                                                                                                                                                SAE Project Documentation

                                                                                                                                                - - - - - -
                                                                                                                                                - -
                                                                                                                                                -
                                                                                                                                                - - - - -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                  -
                                                                                                                                                - -
                                                                                                                                                -

                                                                                                                                                phpmailer.lang-de.php

                                                                                                                                                - -

                                                                                                                                                German PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                - - - - - - - -

                                                                                                                                                - Table of Contents - - -

                                                                                                                                                - - - - - - - - - - - - - - - - -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                
                                                                                                                                                -        
                                                                                                                                                - -
                                                                                                                                                -
                                                                                                                                                - - - -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                - On this page - -
                                                                                                                                                  -
                                                                                                                                                • Table Of Contents
                                                                                                                                                • -
                                                                                                                                                • -
                                                                                                                                                    -
                                                                                                                                                  -
                                                                                                                                                • - - -
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -

                                                                                                                                                Search results

                                                                                                                                                - -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  - - -
                                                                                                                                                  - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-el.html b/docs/files/phpmailer-language-phpmailer-lang-el.html deleted file mode 100644 index b84f02d8..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-el.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                  -

                                                                                                                                                  SAE Project Documentation

                                                                                                                                                  - - - - - -
                                                                                                                                                  - -
                                                                                                                                                  -
                                                                                                                                                  - - - - -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                    -
                                                                                                                                                  - -
                                                                                                                                                  -

                                                                                                                                                  phpmailer.lang-el.php

                                                                                                                                                  - -

                                                                                                                                                  Greek PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                  - - - - - - - -

                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  
                                                                                                                                                  -        
                                                                                                                                                  - -
                                                                                                                                                  -
                                                                                                                                                  - - - -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  - -
                                                                                                                                                  - On this page - -
                                                                                                                                                    -
                                                                                                                                                  • Table Of Contents
                                                                                                                                                  • -
                                                                                                                                                  • -
                                                                                                                                                      -
                                                                                                                                                    -
                                                                                                                                                  • - - -
                                                                                                                                                  -
                                                                                                                                                  - -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  -

                                                                                                                                                  Search results

                                                                                                                                                  - -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - -
                                                                                                                                                    - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-eo.html b/docs/files/phpmailer-language-phpmailer-lang-eo.html deleted file mode 100644 index 7d53616b..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-eo.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                    -

                                                                                                                                                    SAE Project Documentation

                                                                                                                                                    - - - - - -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - - - - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                      -
                                                                                                                                                    - -
                                                                                                                                                    -

                                                                                                                                                    phpmailer.lang-eo.php

                                                                                                                                                    - -

                                                                                                                                                    Esperanto PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                    - - - - - - - -

                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    
                                                                                                                                                    -        
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - - - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    - On this page - -
                                                                                                                                                      -
                                                                                                                                                    • Table Of Contents
                                                                                                                                                    • -
                                                                                                                                                    • -
                                                                                                                                                        -
                                                                                                                                                      -
                                                                                                                                                    • - - -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    Search results

                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - -
                                                                                                                                                      - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-es.html b/docs/files/phpmailer-language-phpmailer-lang-es.html deleted file mode 100644 index 87759ba6..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-es.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                      -

                                                                                                                                                      SAE Project Documentation

                                                                                                                                                      - - - - - -
                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      - - - - -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                        -
                                                                                                                                                      - -
                                                                                                                                                      -

                                                                                                                                                      phpmailer.lang-es.php

                                                                                                                                                      - -

                                                                                                                                                      Spanish PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                      - - - - -
                                                                                                                                                      - Tags - - -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - author -
                                                                                                                                                      -
                                                                                                                                                      - -

                                                                                                                                                      Matt Sturdy matt.sturdy@gmail.com

                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      - author -
                                                                                                                                                      -
                                                                                                                                                      - -

                                                                                                                                                      Crystopher Glodzienski Cardoso crystopher.glodzienski@gmail.com

                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      - author -
                                                                                                                                                      -
                                                                                                                                                      - -

                                                                                                                                                      Daniel Cruz danicruz0415@gmail.com

                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      - - - -

                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                      - - - - - - - - - - - - - - - - -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      
                                                                                                                                                      -        
                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      - - - -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      - On this page - -
                                                                                                                                                        -
                                                                                                                                                      • Table Of Contents
                                                                                                                                                      • -
                                                                                                                                                      • -
                                                                                                                                                          -
                                                                                                                                                        -
                                                                                                                                                      • - - -
                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -

                                                                                                                                                      Search results

                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - - -
                                                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-et.html b/docs/files/phpmailer-language-phpmailer-lang-et.html deleted file mode 100644 index ad1bf815..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-et.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                        -

                                                                                                                                                        SAE Project Documentation

                                                                                                                                                        - - - - - -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - - -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                          -
                                                                                                                                                        - -
                                                                                                                                                        -

                                                                                                                                                        phpmailer.lang-et.php

                                                                                                                                                        - -

                                                                                                                                                        Estonian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                        - - - - -
                                                                                                                                                        - Tags - - -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - author -
                                                                                                                                                        -
                                                                                                                                                        - -

                                                                                                                                                        Indrek Päri

                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - author -
                                                                                                                                                        -
                                                                                                                                                        - -

                                                                                                                                                        Elan Ruusamäe glen@delfi.ee

                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - -

                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        
                                                                                                                                                        -        
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - On this page - -
                                                                                                                                                          -
                                                                                                                                                        • Table Of Contents
                                                                                                                                                        • -
                                                                                                                                                        • -
                                                                                                                                                            -
                                                                                                                                                          -
                                                                                                                                                        • - - -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        Search results

                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - - -
                                                                                                                                                          - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-fa.html b/docs/files/phpmailer-language-phpmailer-lang-fa.html deleted file mode 100644 index 2bc2db17..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-fa.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                          -

                                                                                                                                                          SAE Project Documentation

                                                                                                                                                          - - - - - -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - - - - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                            -
                                                                                                                                                          - -
                                                                                                                                                          -

                                                                                                                                                          phpmailer.lang-fa.php

                                                                                                                                                          - -

                                                                                                                                                          Persian/Farsi PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                          - - - - -
                                                                                                                                                          - Tags - - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - author -
                                                                                                                                                          -
                                                                                                                                                          - -

                                                                                                                                                          Ali Jazayeri jaza.ali@gmail.com

                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - author -
                                                                                                                                                          -
                                                                                                                                                          - -

                                                                                                                                                          Mohammad Hossein Mojtahedi mhm5000@gmail.com

                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - - - -

                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          
                                                                                                                                                          -        
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - - - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - On this page - -
                                                                                                                                                            -
                                                                                                                                                          • Table Of Contents
                                                                                                                                                          • -
                                                                                                                                                          • -
                                                                                                                                                              -
                                                                                                                                                            -
                                                                                                                                                          • - - -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -

                                                                                                                                                          Search results

                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - - -
                                                                                                                                                            - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-fi.html b/docs/files/phpmailer-language-phpmailer-lang-fi.html deleted file mode 100644 index be36857c..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-fi.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                            -

                                                                                                                                                            SAE Project Documentation

                                                                                                                                                            - - - - - -
                                                                                                                                                            - -
                                                                                                                                                            -
                                                                                                                                                            - - - - -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                              -
                                                                                                                                                            - -
                                                                                                                                                            -

                                                                                                                                                            phpmailer.lang-fi.php

                                                                                                                                                            - -

                                                                                                                                                            Finnish PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                            - - - - -
                                                                                                                                                            - Tags - - -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - author -
                                                                                                                                                            -
                                                                                                                                                            - -

                                                                                                                                                            Jyry Kuukanen

                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            -
                                                                                                                                                            - - - -

                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            
                                                                                                                                                            -        
                                                                                                                                                            - -
                                                                                                                                                            -
                                                                                                                                                            - - - -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            - On this page - -
                                                                                                                                                              -
                                                                                                                                                            • Table Of Contents
                                                                                                                                                            • -
                                                                                                                                                            • -
                                                                                                                                                                -
                                                                                                                                                              -
                                                                                                                                                            • - - -
                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -

                                                                                                                                                            Search results

                                                                                                                                                            - -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - -
                                                                                                                                                              - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-fo.html b/docs/files/phpmailer-language-phpmailer-lang-fo.html deleted file mode 100644 index a7b68dc8..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-fo.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                              -

                                                                                                                                                              SAE Project Documentation

                                                                                                                                                              - - - - - -
                                                                                                                                                              - -
                                                                                                                                                              -
                                                                                                                                                              - - - - -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                                -
                                                                                                                                                              - -
                                                                                                                                                              -

                                                                                                                                                              phpmailer.lang-fo.php

                                                                                                                                                              - -

                                                                                                                                                              Faroese PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                              - - - - -
                                                                                                                                                              - Tags - - -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - author -
                                                                                                                                                              -
                                                                                                                                                              - -

                                                                                                                                                              Dávur Sørensen http://www.profo-webdesign.dk

                                                                                                                                                              -
                                                                                                                                                              - -
                                                                                                                                                              -
                                                                                                                                                              - - - -

                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              
                                                                                                                                                              -        
                                                                                                                                                              - -
                                                                                                                                                              -
                                                                                                                                                              - - - -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - -
                                                                                                                                                              - On this page - -
                                                                                                                                                                -
                                                                                                                                                              • Table Of Contents
                                                                                                                                                              • -
                                                                                                                                                              • -
                                                                                                                                                                  -
                                                                                                                                                                -
                                                                                                                                                              • - - -
                                                                                                                                                              -
                                                                                                                                                              - -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              Search results

                                                                                                                                                              - -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                - - -
                                                                                                                                                                - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-fr.html b/docs/files/phpmailer-language-phpmailer-lang-fr.html deleted file mode 100644 index bf27ab63..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-fr.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                -

                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                - - - - - -
                                                                                                                                                                - -
                                                                                                                                                                -
                                                                                                                                                                - - - - -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                  -
                                                                                                                                                                - -
                                                                                                                                                                -

                                                                                                                                                                phpmailer.lang-fr.php

                                                                                                                                                                - -

                                                                                                                                                                French PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                - - - - - - - -

                                                                                                                                                                - Table of Contents - - -

                                                                                                                                                                - - - - - - - - - - - - - - - - -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                
                                                                                                                                                                -        
                                                                                                                                                                - -
                                                                                                                                                                -
                                                                                                                                                                - - - -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                - -
                                                                                                                                                                - On this page - -
                                                                                                                                                                  -
                                                                                                                                                                • Table Of Contents
                                                                                                                                                                • -
                                                                                                                                                                • -
                                                                                                                                                                    -
                                                                                                                                                                  -
                                                                                                                                                                • - - -
                                                                                                                                                                -
                                                                                                                                                                - -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -

                                                                                                                                                                Search results

                                                                                                                                                                - -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - -
                                                                                                                                                                  - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-gl.html b/docs/files/phpmailer-language-phpmailer-lang-gl.html deleted file mode 100644 index 5c934821..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-gl.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                  -

                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                  - - - - - -
                                                                                                                                                                  - -
                                                                                                                                                                  -
                                                                                                                                                                  - - - - -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                    -
                                                                                                                                                                  - -
                                                                                                                                                                  -

                                                                                                                                                                  phpmailer.lang-gl.php

                                                                                                                                                                  - -

                                                                                                                                                                  Galician PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                  - - - - -
                                                                                                                                                                  - Tags - - -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - author -
                                                                                                                                                                  -
                                                                                                                                                                  - -

                                                                                                                                                                  by Donato Rouco donatorouco@gmail.com

                                                                                                                                                                  -
                                                                                                                                                                  - -
                                                                                                                                                                  -
                                                                                                                                                                  - - - -

                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  
                                                                                                                                                                  -        
                                                                                                                                                                  - -
                                                                                                                                                                  -
                                                                                                                                                                  - - - -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - -
                                                                                                                                                                  - On this page - -
                                                                                                                                                                    -
                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                  • -
                                                                                                                                                                  • -
                                                                                                                                                                      -
                                                                                                                                                                    -
                                                                                                                                                                  • - - -
                                                                                                                                                                  -
                                                                                                                                                                  - -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -

                                                                                                                                                                  Search results

                                                                                                                                                                  - -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - -
                                                                                                                                                                    - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-he.html b/docs/files/phpmailer-language-phpmailer-lang-he.html deleted file mode 100644 index be08bad0..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-he.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                    -

                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                    - - - - - -
                                                                                                                                                                    - -
                                                                                                                                                                    -
                                                                                                                                                                    - - - - -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                      -
                                                                                                                                                                    - -
                                                                                                                                                                    -

                                                                                                                                                                    phpmailer.lang-he.php

                                                                                                                                                                    - -

                                                                                                                                                                    Hebrew PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                    - - - - -
                                                                                                                                                                    - Tags - - -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - author -
                                                                                                                                                                    -
                                                                                                                                                                    - -

                                                                                                                                                                    Ronny Sherer ronny@hoojima.com

                                                                                                                                                                    -
                                                                                                                                                                    - -
                                                                                                                                                                    -
                                                                                                                                                                    - - - -

                                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    
                                                                                                                                                                    -        
                                                                                                                                                                    - -
                                                                                                                                                                    -
                                                                                                                                                                    - - - -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - -
                                                                                                                                                                    - On this page - -
                                                                                                                                                                      -
                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                    • -
                                                                                                                                                                    • -
                                                                                                                                                                        -
                                                                                                                                                                      -
                                                                                                                                                                    • - - -
                                                                                                                                                                    -
                                                                                                                                                                    - -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -

                                                                                                                                                                    Search results

                                                                                                                                                                    - -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - -
                                                                                                                                                                      - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-hi.html b/docs/files/phpmailer-language-phpmailer-lang-hi.html deleted file mode 100644 index fa058970..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-hi.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                      -

                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                      - - - - - -
                                                                                                                                                                      - -
                                                                                                                                                                      -
                                                                                                                                                                      - - - - -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                        -
                                                                                                                                                                      - -
                                                                                                                                                                      -

                                                                                                                                                                      phpmailer.lang-hi.php

                                                                                                                                                                      - -

                                                                                                                                                                      Hindi PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                      - - - - -
                                                                                                                                                                      - Tags - - -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - author -
                                                                                                                                                                      -
                                                                                                                                                                      - -

                                                                                                                                                                      Yash Karanke mr.karanke@gmail.com -Rewrite and extension of the work by Jayanti Suthar suthar.jayanti93@gmail.com

                                                                                                                                                                      -
                                                                                                                                                                      - -
                                                                                                                                                                      -
                                                                                                                                                                      - - - -

                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                      - - - - - - - - - - - - - - - - -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      
                                                                                                                                                                      -        
                                                                                                                                                                      - -
                                                                                                                                                                      -
                                                                                                                                                                      - - - -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - -
                                                                                                                                                                      - On this page - -
                                                                                                                                                                        -
                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                      • -
                                                                                                                                                                      • -
                                                                                                                                                                          -
                                                                                                                                                                        -
                                                                                                                                                                      • - - -
                                                                                                                                                                      -
                                                                                                                                                                      - -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -

                                                                                                                                                                      Search results

                                                                                                                                                                      - -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - -
                                                                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-hr.html b/docs/files/phpmailer-language-phpmailer-lang-hr.html deleted file mode 100644 index 522467b7..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-hr.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                        -

                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                        - - - - - -
                                                                                                                                                                        - -
                                                                                                                                                                        -
                                                                                                                                                                        - - - - -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                          -
                                                                                                                                                                        - -
                                                                                                                                                                        -

                                                                                                                                                                        phpmailer.lang-hr.php

                                                                                                                                                                        - -

                                                                                                                                                                        Croatian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                        - - - - -
                                                                                                                                                                        - Tags - - -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - author -
                                                                                                                                                                        -
                                                                                                                                                                        - -

                                                                                                                                                                        Hrvoj3e hrvoj3e@gmail.com

                                                                                                                                                                        -
                                                                                                                                                                        - -
                                                                                                                                                                        -
                                                                                                                                                                        - - - -

                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        
                                                                                                                                                                        -        
                                                                                                                                                                        - -
                                                                                                                                                                        -
                                                                                                                                                                        - - - -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - -
                                                                                                                                                                        - On this page - -
                                                                                                                                                                          -
                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                        • -
                                                                                                                                                                        • -
                                                                                                                                                                            -
                                                                                                                                                                          -
                                                                                                                                                                        • - - -
                                                                                                                                                                        -
                                                                                                                                                                        - -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -

                                                                                                                                                                        Search results

                                                                                                                                                                        - -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - -
                                                                                                                                                                          - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-hu.html b/docs/files/phpmailer-language-phpmailer-lang-hu.html deleted file mode 100644 index 6f5aca11..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-hu.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                          -

                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                          - - - - - -
                                                                                                                                                                          - -
                                                                                                                                                                          -
                                                                                                                                                                          - - - - -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                            -
                                                                                                                                                                          - -
                                                                                                                                                                          -

                                                                                                                                                                          phpmailer.lang-hu.php

                                                                                                                                                                          - -

                                                                                                                                                                          Hungarian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                          - - - - -
                                                                                                                                                                          - Tags - - -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - author -
                                                                                                                                                                          -
                                                                                                                                                                          - -

                                                                                                                                                                          @dominicus-75

                                                                                                                                                                          -
                                                                                                                                                                          - -
                                                                                                                                                                          -
                                                                                                                                                                          - - - -

                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          
                                                                                                                                                                          -        
                                                                                                                                                                          - -
                                                                                                                                                                          -
                                                                                                                                                                          - - - -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - -
                                                                                                                                                                          - On this page - -
                                                                                                                                                                            -
                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                          • -
                                                                                                                                                                          • -
                                                                                                                                                                              -
                                                                                                                                                                            -
                                                                                                                                                                          • - - -
                                                                                                                                                                          -
                                                                                                                                                                          - -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -

                                                                                                                                                                          Search results

                                                                                                                                                                          - -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - -
                                                                                                                                                                            - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-hy.html b/docs/files/phpmailer-language-phpmailer-lang-hy.html deleted file mode 100644 index df3c3917..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-hy.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                            -

                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                            - - - - - -
                                                                                                                                                                            - -
                                                                                                                                                                            -
                                                                                                                                                                            - - - - -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                              -
                                                                                                                                                                            - -
                                                                                                                                                                            -

                                                                                                                                                                            phpmailer.lang-hy.php

                                                                                                                                                                            - -

                                                                                                                                                                            Armenian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                            - - - - -
                                                                                                                                                                            - Tags - - -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - author -
                                                                                                                                                                            -
                                                                                                                                                                            - -

                                                                                                                                                                            Hrayr Grigoryan hrayr@bits.am

                                                                                                                                                                            -
                                                                                                                                                                            - -
                                                                                                                                                                            -
                                                                                                                                                                            - - - -

                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            
                                                                                                                                                                            -        
                                                                                                                                                                            - -
                                                                                                                                                                            -
                                                                                                                                                                            - - - -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - -
                                                                                                                                                                            - On this page - -
                                                                                                                                                                              -
                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                            • -
                                                                                                                                                                            • -
                                                                                                                                                                                -
                                                                                                                                                                              -
                                                                                                                                                                            • - - -
                                                                                                                                                                            -
                                                                                                                                                                            - -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -

                                                                                                                                                                            Search results

                                                                                                                                                                            - -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - -
                                                                                                                                                                              - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-id.html b/docs/files/phpmailer-language-phpmailer-lang-id.html deleted file mode 100644 index b0ce68d3..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-id.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                              -

                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                              - - - - - -
                                                                                                                                                                              - -
                                                                                                                                                                              -
                                                                                                                                                                              - - - - -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                                -
                                                                                                                                                                              - -
                                                                                                                                                                              -

                                                                                                                                                                              phpmailer.lang-id.php

                                                                                                                                                                              - -

                                                                                                                                                                              Indonesian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                              - - - - -
                                                                                                                                                                              - Tags - - -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - author -
                                                                                                                                                                              -
                                                                                                                                                                              - -

                                                                                                                                                                              Cecep Prawiro cecep.prawiro@gmail.com

                                                                                                                                                                              -
                                                                                                                                                                              - -
                                                                                                                                                                              -
                                                                                                                                                                              - author -
                                                                                                                                                                              -
                                                                                                                                                                              - -

                                                                                                                                                                              @januridp

                                                                                                                                                                              -
                                                                                                                                                                              - -
                                                                                                                                                                              -
                                                                                                                                                                              - author -
                                                                                                                                                                              -
                                                                                                                                                                              - -

                                                                                                                                                                              Ian Mustafa mail@ianmustafa.com

                                                                                                                                                                              -
                                                                                                                                                                              - -
                                                                                                                                                                              -
                                                                                                                                                                              - - - -

                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              
                                                                                                                                                                              -        
                                                                                                                                                                              - -
                                                                                                                                                                              -
                                                                                                                                                                              - - - -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - -
                                                                                                                                                                              - On this page - -
                                                                                                                                                                                -
                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                              • -
                                                                                                                                                                              • -
                                                                                                                                                                                  -
                                                                                                                                                                                -
                                                                                                                                                                              • - - -
                                                                                                                                                                              -
                                                                                                                                                                              - -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -

                                                                                                                                                                              Search results

                                                                                                                                                                              - -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - -
                                                                                                                                                                                - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-it.html b/docs/files/phpmailer-language-phpmailer-lang-it.html deleted file mode 100644 index 71f26948..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-it.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                -

                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                - - - - - -
                                                                                                                                                                                - -
                                                                                                                                                                                -
                                                                                                                                                                                - - - - -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                  -
                                                                                                                                                                                - -
                                                                                                                                                                                -

                                                                                                                                                                                phpmailer.lang-it.php

                                                                                                                                                                                - -

                                                                                                                                                                                Italian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                - - - - -
                                                                                                                                                                                - Tags - - -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - author -
                                                                                                                                                                                -
                                                                                                                                                                                - -

                                                                                                                                                                                Ilias Bartolini brain79@inwind.it

                                                                                                                                                                                -
                                                                                                                                                                                - -
                                                                                                                                                                                -
                                                                                                                                                                                - author -
                                                                                                                                                                                -
                                                                                                                                                                                - -

                                                                                                                                                                                Stefano Sabatini sabas88@gmail.com

                                                                                                                                                                                -
                                                                                                                                                                                - -
                                                                                                                                                                                -
                                                                                                                                                                                - - - -

                                                                                                                                                                                - Table of Contents - - -

                                                                                                                                                                                - - - - - - - - - - - - - - - - -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                
                                                                                                                                                                                -        
                                                                                                                                                                                - -
                                                                                                                                                                                -
                                                                                                                                                                                - - - -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - -
                                                                                                                                                                                - On this page - -
                                                                                                                                                                                  -
                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                • -
                                                                                                                                                                                • -
                                                                                                                                                                                    -
                                                                                                                                                                                  -
                                                                                                                                                                                • - - -
                                                                                                                                                                                -
                                                                                                                                                                                - -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -

                                                                                                                                                                                Search results

                                                                                                                                                                                - -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  - - -
                                                                                                                                                                                  - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ja.html b/docs/files/phpmailer-language-phpmailer-lang-ja.html deleted file mode 100644 index 1cfc03c2..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ja.html +++ /dev/null @@ -1,341 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                  -

                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - - - - -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                    -
                                                                                                                                                                                  - -
                                                                                                                                                                                  -

                                                                                                                                                                                  phpmailer.lang-ja.php

                                                                                                                                                                                  - -

                                                                                                                                                                                  Japanese PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                  - - - - -
                                                                                                                                                                                  - Tags - - -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  - author -
                                                                                                                                                                                  -
                                                                                                                                                                                  - -

                                                                                                                                                                                  Mitsuhiro Yoshida https://mitstek.com

                                                                                                                                                                                  -
                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - author -
                                                                                                                                                                                  -
                                                                                                                                                                                  - -

                                                                                                                                                                                  Yoshi Sakai http://bluemooninc.jp/

                                                                                                                                                                                  -
                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - author -
                                                                                                                                                                                  -
                                                                                                                                                                                  - -

                                                                                                                                                                                  Arisophy https://github.com/arisophy/

                                                                                                                                                                                  -
                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - author -
                                                                                                                                                                                  -
                                                                                                                                                                                  - -

                                                                                                                                                                                  ARAKI Musashi https://github.com/arakim/

                                                                                                                                                                                  -
                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - - - -

                                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  
                                                                                                                                                                                  -        
                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - - - -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  - -
                                                                                                                                                                                  - On this page - -
                                                                                                                                                                                    -
                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                  • -
                                                                                                                                                                                  • -
                                                                                                                                                                                      -
                                                                                                                                                                                    -
                                                                                                                                                                                  • - - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -

                                                                                                                                                                                  Search results

                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    - - -
                                                                                                                                                                                    - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ka.html b/docs/files/phpmailer-language-phpmailer-lang-ka.html deleted file mode 100644 index bf1dfe4b..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ka.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                    -

                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                    - -
                                                                                                                                                                                    -
                                                                                                                                                                                    - - - - -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                      -
                                                                                                                                                                                    - -
                                                                                                                                                                                    -

                                                                                                                                                                                    phpmailer.lang-ka.php

                                                                                                                                                                                    - -

                                                                                                                                                                                    Georgian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                    - - - - -
                                                                                                                                                                                    - Tags - - -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    - author -
                                                                                                                                                                                    -
                                                                                                                                                                                    - -

                                                                                                                                                                                    Avtandil Kikabidze aka LONGMAN akalongman@gmail.com

                                                                                                                                                                                    -
                                                                                                                                                                                    - -
                                                                                                                                                                                    -
                                                                                                                                                                                    - - - -

                                                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    
                                                                                                                                                                                    -        
                                                                                                                                                                                    - -
                                                                                                                                                                                    -
                                                                                                                                                                                    - - - -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    - -
                                                                                                                                                                                    - On this page - -
                                                                                                                                                                                      -
                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                    • -
                                                                                                                                                                                    • -
                                                                                                                                                                                        -
                                                                                                                                                                                      -
                                                                                                                                                                                    • - - -
                                                                                                                                                                                    -
                                                                                                                                                                                    - -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    -

                                                                                                                                                                                    Search results

                                                                                                                                                                                    - -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      - - -
                                                                                                                                                                                      - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ko.html b/docs/files/phpmailer-language-phpmailer-lang-ko.html deleted file mode 100644 index 06dcd8c2..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ko.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                      -

                                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                                      - - - - - -
                                                                                                                                                                                      - -
                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                        -
                                                                                                                                                                                      - -
                                                                                                                                                                                      -

                                                                                                                                                                                      phpmailer.lang-ko.php

                                                                                                                                                                                      - -

                                                                                                                                                                                      Korean PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                      - - - - -
                                                                                                                                                                                      - Tags - - -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      - author -
                                                                                                                                                                                      -
                                                                                                                                                                                      - -

                                                                                                                                                                                      ChalkPE amato0617@gmail.com

                                                                                                                                                                                      -
                                                                                                                                                                                      - -
                                                                                                                                                                                      -
                                                                                                                                                                                      - - - -

                                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                                      - - - - - - - - - - - - - - - - -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      
                                                                                                                                                                                      -        
                                                                                                                                                                                      - -
                                                                                                                                                                                      -
                                                                                                                                                                                      - - - -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      - -
                                                                                                                                                                                      - On this page - -
                                                                                                                                                                                        -
                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                      • -
                                                                                                                                                                                      • -
                                                                                                                                                                                          -
                                                                                                                                                                                        -
                                                                                                                                                                                      • - - -
                                                                                                                                                                                      -
                                                                                                                                                                                      - -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      -

                                                                                                                                                                                      Search results

                                                                                                                                                                                      - -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        - - -
                                                                                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ku.html b/docs/files/phpmailer-language-phpmailer-lang-ku.html deleted file mode 100644 index 58647821..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ku.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                        -

                                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                                        - - - - - -
                                                                                                                                                                                        - -
                                                                                                                                                                                        -
                                                                                                                                                                                        - - - - -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                          -
                                                                                                                                                                                        - -
                                                                                                                                                                                        -

                                                                                                                                                                                        phpmailer.lang-ku.php

                                                                                                                                                                                        - -

                                                                                                                                                                                        Kurdish (Sorani) PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                        - - - - -
                                                                                                                                                                                        - Tags - - -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        - author -
                                                                                                                                                                                        -
                                                                                                                                                                                        - -

                                                                                                                                                                                        Halo Salman halo@home4t.com

                                                                                                                                                                                        -
                                                                                                                                                                                        - -
                                                                                                                                                                                        -
                                                                                                                                                                                        - - - -

                                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        
                                                                                                                                                                                        -        
                                                                                                                                                                                        - -
                                                                                                                                                                                        -
                                                                                                                                                                                        - - - -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        - -
                                                                                                                                                                                        - On this page - -
                                                                                                                                                                                          -
                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                        • -
                                                                                                                                                                                        • -
                                                                                                                                                                                            -
                                                                                                                                                                                          -
                                                                                                                                                                                        • - - -
                                                                                                                                                                                        -
                                                                                                                                                                                        - -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        -

                                                                                                                                                                                        Search results

                                                                                                                                                                                        - -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          - - -
                                                                                                                                                                                          - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-lt.html b/docs/files/phpmailer-language-phpmailer-lang-lt.html deleted file mode 100644 index 5e3aa969..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-lt.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                          -

                                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                                          - - - - - -
                                                                                                                                                                                          - -
                                                                                                                                                                                          -
                                                                                                                                                                                          - - - - -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                            -
                                                                                                                                                                                          - -
                                                                                                                                                                                          -

                                                                                                                                                                                          phpmailer.lang-lt.php

                                                                                                                                                                                          - -

                                                                                                                                                                                          Lithuanian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                          - - - - -
                                                                                                                                                                                          - Tags - - -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          - author -
                                                                                                                                                                                          -
                                                                                                                                                                                          - -

                                                                                                                                                                                          Dainius Kaupaitis dk@sum.lt

                                                                                                                                                                                          -
                                                                                                                                                                                          - -
                                                                                                                                                                                          -
                                                                                                                                                                                          - - - -

                                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          
                                                                                                                                                                                          -        
                                                                                                                                                                                          - -
                                                                                                                                                                                          -
                                                                                                                                                                                          - - - -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          - -
                                                                                                                                                                                          - On this page - -
                                                                                                                                                                                            -
                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                          • -
                                                                                                                                                                                          • -
                                                                                                                                                                                              -
                                                                                                                                                                                            -
                                                                                                                                                                                          • - - -
                                                                                                                                                                                          -
                                                                                                                                                                                          - -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          -

                                                                                                                                                                                          Search results

                                                                                                                                                                                          - -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            - - -
                                                                                                                                                                                            - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-lv.html b/docs/files/phpmailer-language-phpmailer-lang-lv.html deleted file mode 100644 index c82107d4..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-lv.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                            -

                                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                                            - - - - - -
                                                                                                                                                                                            - -
                                                                                                                                                                                            -
                                                                                                                                                                                            - - - - -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                              -
                                                                                                                                                                                            - -
                                                                                                                                                                                            -

                                                                                                                                                                                            phpmailer.lang-lv.php

                                                                                                                                                                                            - -

                                                                                                                                                                                            Latvian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                            - - - - -
                                                                                                                                                                                            - Tags - - -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            - author -
                                                                                                                                                                                            -
                                                                                                                                                                                            - -

                                                                                                                                                                                            Eduards M. e@npd.lv

                                                                                                                                                                                            -
                                                                                                                                                                                            - -
                                                                                                                                                                                            -
                                                                                                                                                                                            - - - -

                                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            
                                                                                                                                                                                            -        
                                                                                                                                                                                            - -
                                                                                                                                                                                            -
                                                                                                                                                                                            - - - -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            - -
                                                                                                                                                                                            - On this page - -
                                                                                                                                                                                              -
                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                            • -
                                                                                                                                                                                            • -
                                                                                                                                                                                                -
                                                                                                                                                                                              -
                                                                                                                                                                                            • - - -
                                                                                                                                                                                            -
                                                                                                                                                                                            - -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            -

                                                                                                                                                                                            Search results

                                                                                                                                                                                            - -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              - - -
                                                                                                                                                                                              - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-mg.html b/docs/files/phpmailer-language-phpmailer-lang-mg.html deleted file mode 100644 index d7462103..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-mg.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                              -

                                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                              - -
                                                                                                                                                                                              -
                                                                                                                                                                                              - - - - -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                                -
                                                                                                                                                                                              - -
                                                                                                                                                                                              -

                                                                                                                                                                                              phpmailer.lang-mg.php

                                                                                                                                                                                              - -

                                                                                                                                                                                              Malagasy PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                              - - - - -
                                                                                                                                                                                              - Tags - - -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              - author -
                                                                                                                                                                                              -
                                                                                                                                                                                              - -

                                                                                                                                                                                              Hackinet piyushjha8164@gmail.com

                                                                                                                                                                                              -
                                                                                                                                                                                              - -
                                                                                                                                                                                              -
                                                                                                                                                                                              - - - -

                                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              
                                                                                                                                                                                              -        
                                                                                                                                                                                              - -
                                                                                                                                                                                              -
                                                                                                                                                                                              - - - -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              - -
                                                                                                                                                                                              - On this page - -
                                                                                                                                                                                                -
                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                              • -
                                                                                                                                                                                              • -
                                                                                                                                                                                                  -
                                                                                                                                                                                                -
                                                                                                                                                                                              • - - -
                                                                                                                                                                                              -
                                                                                                                                                                                              - -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -

                                                                                                                                                                                              Search results

                                                                                                                                                                                              - -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - -
                                                                                                                                                                                                - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-mn.html b/docs/files/phpmailer-language-phpmailer-lang-mn.html deleted file mode 100644 index fa12c038..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-mn.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                -

                                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                                - - - - - -
                                                                                                                                                                                                - -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                  -
                                                                                                                                                                                                - -
                                                                                                                                                                                                -

                                                                                                                                                                                                phpmailer.lang-mn.php

                                                                                                                                                                                                - -

                                                                                                                                                                                                Mongolian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                - Tags - - -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - author -
                                                                                                                                                                                                -
                                                                                                                                                                                                - -

                                                                                                                                                                                                @wispas

                                                                                                                                                                                                -
                                                                                                                                                                                                - -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - - -

                                                                                                                                                                                                - Table of Contents - - -

                                                                                                                                                                                                - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                
                                                                                                                                                                                                -        
                                                                                                                                                                                                - -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - - -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - -
                                                                                                                                                                                                - On this page - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                • -
                                                                                                                                                                                                • -
                                                                                                                                                                                                    -
                                                                                                                                                                                                  -
                                                                                                                                                                                                • - - -
                                                                                                                                                                                                -
                                                                                                                                                                                                - -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -

                                                                                                                                                                                                Search results

                                                                                                                                                                                                - -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - -
                                                                                                                                                                                                  - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ms.html b/docs/files/phpmailer-language-phpmailer-lang-ms.html deleted file mode 100644 index 99e9cf8e..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ms.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                  -

                                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                  - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                    -
                                                                                                                                                                                                  - -
                                                                                                                                                                                                  -

                                                                                                                                                                                                  phpmailer.lang-ms.php

                                                                                                                                                                                                  - -

                                                                                                                                                                                                  Malaysian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                  - Tags - - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - author -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - -

                                                                                                                                                                                                  Nawawi Jamili nawawi@rutweb.com

                                                                                                                                                                                                  -
                                                                                                                                                                                                  - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - - -

                                                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  
                                                                                                                                                                                                  -        
                                                                                                                                                                                                  - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - -
                                                                                                                                                                                                  - On this page - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                  • -
                                                                                                                                                                                                  • -
                                                                                                                                                                                                      -
                                                                                                                                                                                                    -
                                                                                                                                                                                                  • - - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -

                                                                                                                                                                                                  Search results

                                                                                                                                                                                                  - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - -
                                                                                                                                                                                                    - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-nb.html b/docs/files/phpmailer-language-phpmailer-lang-nb.html deleted file mode 100644 index 41a891cf..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-nb.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                    -

                                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                                    - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                      -
                                                                                                                                                                                                    - -
                                                                                                                                                                                                    -

                                                                                                                                                                                                    phpmailer.lang-nb.php

                                                                                                                                                                                                    - -

                                                                                                                                                                                                    Norwegian Bokmål PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                    - - - - - - - -

                                                                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    
                                                                                                                                                                                                    -        
                                                                                                                                                                                                    - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - -
                                                                                                                                                                                                    - On this page - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                    • -
                                                                                                                                                                                                    • -
                                                                                                                                                                                                        -
                                                                                                                                                                                                      -
                                                                                                                                                                                                    • - - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -

                                                                                                                                                                                                    Search results

                                                                                                                                                                                                    - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - -
                                                                                                                                                                                                      - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-nl.html b/docs/files/phpmailer-language-phpmailer-lang-nl.html deleted file mode 100644 index 72cac74a..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-nl.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                      -

                                                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                                                      - - - - - -
                                                                                                                                                                                                      - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                        -
                                                                                                                                                                                                      - -
                                                                                                                                                                                                      -

                                                                                                                                                                                                      phpmailer.lang-nl.php

                                                                                                                                                                                                      - -

                                                                                                                                                                                                      Dutch PHPMailer language file: refer to PHPMailer.php for definitive list.

                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                      - Tags - - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - author -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - -

                                                                                                                                                                                                      Tuxion team@tuxion.nl

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - -

                                                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                                                      - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      
                                                                                                                                                                                                      -        
                                                                                                                                                                                                      - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - -
                                                                                                                                                                                                      - On this page - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                      • -
                                                                                                                                                                                                      • -
                                                                                                                                                                                                          -
                                                                                                                                                                                                        -
                                                                                                                                                                                                      • - - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -

                                                                                                                                                                                                      Search results

                                                                                                                                                                                                      - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - -
                                                                                                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-pl.html b/docs/files/phpmailer-language-phpmailer-lang-pl.html deleted file mode 100644 index b4cfcd84..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-pl.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                        -

                                                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                                                        - - - - - -
                                                                                                                                                                                                        - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                          -
                                                                                                                                                                                                        - -
                                                                                                                                                                                                        -

                                                                                                                                                                                                        phpmailer.lang-pl.php

                                                                                                                                                                                                        - -

                                                                                                                                                                                                        Polish PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                        - - - - - - - -

                                                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        
                                                                                                                                                                                                        -        
                                                                                                                                                                                                        - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - -
                                                                                                                                                                                                        - On this page - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                        • -
                                                                                                                                                                                                        • -
                                                                                                                                                                                                            -
                                                                                                                                                                                                          -
                                                                                                                                                                                                        • - - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -

                                                                                                                                                                                                        Search results

                                                                                                                                                                                                        - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - -
                                                                                                                                                                                                          - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-pt-br.html b/docs/files/phpmailer-language-phpmailer-lang-pt-br.html deleted file mode 100644 index b52ce54b..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-pt-br.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                          -

                                                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                                                          - - - - - -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                            -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -

                                                                                                                                                                                                          phpmailer.lang-pt_br.php

                                                                                                                                                                                                          - -

                                                                                                                                                                                                          Brazilian Portuguese PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                          - Tags - - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - author -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -

                                                                                                                                                                                                          Paulo Henrique Garcia paulo@controllerweb.com.br

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - author -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -

                                                                                                                                                                                                          Lucas Guimarães lucas@lucasguimaraes.com

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - author -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -

                                                                                                                                                                                                          Phelipe Alves phelipealvesdesouza@gmail.com

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - author -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -

                                                                                                                                                                                                          Fabio Beneditto fabiobeneditto@gmail.com

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - author -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -

                                                                                                                                                                                                          Geidson Benício Coelho geidsonc@gmail.com

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - -

                                                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          
                                                                                                                                                                                                          -        
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          - On this page - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                          • -
                                                                                                                                                                                                          • -
                                                                                                                                                                                                              -
                                                                                                                                                                                                            -
                                                                                                                                                                                                          • - - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -

                                                                                                                                                                                                          Search results

                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - -
                                                                                                                                                                                                            - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-pt.html b/docs/files/phpmailer-language-phpmailer-lang-pt.html deleted file mode 100644 index eb44f0bb..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-pt.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                            -

                                                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                                                            - - - - - -
                                                                                                                                                                                                            - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                              -
                                                                                                                                                                                                            - -
                                                                                                                                                                                                            -

                                                                                                                                                                                                            phpmailer.lang-pt.php

                                                                                                                                                                                                            - -

                                                                                                                                                                                                            Portuguese (European) PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                            - Tags - - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - author -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - -

                                                                                                                                                                                                            João Vieira mail@joaovieira.eu

                                                                                                                                                                                                            -
                                                                                                                                                                                                            - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - -

                                                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            
                                                                                                                                                                                                            -        
                                                                                                                                                                                                            - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - -
                                                                                                                                                                                                            - On this page - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                            • -
                                                                                                                                                                                                            • -
                                                                                                                                                                                                                -
                                                                                                                                                                                                              -
                                                                                                                                                                                                            • - - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -

                                                                                                                                                                                                            Search results

                                                                                                                                                                                                            - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - -
                                                                                                                                                                                                              - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ro.html b/docs/files/phpmailer-language-phpmailer-lang-ro.html deleted file mode 100644 index 701b8e64..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ro.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                              -

                                                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                                              - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                                -
                                                                                                                                                                                                              - -
                                                                                                                                                                                                              -

                                                                                                                                                                                                              phpmailer.lang-ro.php

                                                                                                                                                                                                              - -

                                                                                                                                                                                                              Romanian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                              - - - - - - - -

                                                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              
                                                                                                                                                                                                              -        
                                                                                                                                                                                                              - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - -
                                                                                                                                                                                                              - On this page - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                              • -
                                                                                                                                                                                                              • -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                -
                                                                                                                                                                                                              • - - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -

                                                                                                                                                                                                              Search results

                                                                                                                                                                                                              - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ru.html b/docs/files/phpmailer-language-phpmailer-lang-ru.html deleted file mode 100644 index 02f42fa5..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ru.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                -

                                                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                                                - - - - - -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -

                                                                                                                                                                                                                phpmailer.lang-ru.php

                                                                                                                                                                                                                - -

                                                                                                                                                                                                                Russian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                - Tags - - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -

                                                                                                                                                                                                                Alexey Chumakov alex@chumakov.ru

                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -

                                                                                                                                                                                                                Foster Snowhill i18n@forstwoof.ru

                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -

                                                                                                                                                                                                                ProjectSoft projectsoft2009@yandex.ru

                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - -

                                                                                                                                                                                                                - Table of Contents - - -

                                                                                                                                                                                                                - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                
                                                                                                                                                                                                                -        
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                - On this page - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                • -
                                                                                                                                                                                                                • -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                • - - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -

                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                  - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-si.html b/docs/files/phpmailer-language-phpmailer-lang-si.html deleted file mode 100644 index 2d149cf4..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-si.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  phpmailer.lang-si.php

                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                  Sinhalese PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                  - Tags - - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - author -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                  Ayesh Karunaratne ayesh@aye.sh

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - -

                                                                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  
                                                                                                                                                                                                                  -        
                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                  - On this page - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                  • - - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                    - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-sk.html b/docs/files/phpmailer-language-phpmailer-lang-sk.html deleted file mode 100644 index 91dc7ff3..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-sk.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    phpmailer.lang-sk.php

                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                    Slovak PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                    - Tags - - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - author -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                    Michal Tinka michaltinka@gmail.com

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - author -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                    Peter Orlický pcmanik91@gmail.com

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - -

                                                                                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    
                                                                                                                                                                                                                    -        
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    - On this page - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                    • - - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                      - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-sl.html b/docs/files/phpmailer-language-phpmailer-lang-sl.html deleted file mode 100644 index 4eac7de4..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-sl.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                                                                      - - - - - -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      phpmailer.lang-sl.php

                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                      Slovene PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                      - Tags - - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - author -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                      Klemen Tušar techouse@gmail.com

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - author -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                      Filip Š projects@filips.si

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - author -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                      Blaž Oražem blaz@orazem.si

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - - -

                                                                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      
                                                                                                                                                                                                                      -        
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      - On this page - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                      • - - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-sr-latn.html b/docs/files/phpmailer-language-phpmailer-lang-sr-latn.html deleted file mode 100644 index e84c2e01..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-sr-latn.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                        -

                                                                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                                                                        - - - - - -
                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        -

                                                                                                                                                                                                                        phpmailer.lang-sr_latn.php

                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        Serbian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                        - Tags - - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        Александар Јевремовић ajevremovic@gmail.com

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        Miloš Milanović mmilanovic016@gmail.com

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - -

                                                                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        
                                                                                                                                                                                                                        -        
                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        - On this page - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                        • - - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -

                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - -
                                                                                                                                                                                                                          - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-sr.html b/docs/files/phpmailer-language-phpmailer-lang-sr.html deleted file mode 100644 index 62c4e1b0..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-sr.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                          -

                                                                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                                                                          - - - - - -
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          -

                                                                                                                                                                                                                          phpmailer.lang-sr.php

                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                          Serbian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                          - Tags - - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - author -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                          Александар Јевремовић ajevremovic@gmail.com

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - author -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                          Miloš Milanović mmilanovic016@gmail.com

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - -

                                                                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          
                                                                                                                                                                                                                          -        
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          - On this page - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                          • - - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -

                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - -
                                                                                                                                                                                                                            - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-sv.html b/docs/files/phpmailer-language-phpmailer-lang-sv.html deleted file mode 100644 index 6f506047..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-sv.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                                                                            - - - - - -
                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            phpmailer.lang-sv.php

                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                            Swedish PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                            - Tags - - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - author -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                            Johan Linnér johan@linner.biz

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - - -

                                                                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            
                                                                                                                                                                                                                            -        
                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                            - On this page - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                            • - - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                              - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-tl.html b/docs/files/phpmailer-language-phpmailer-lang-tl.html deleted file mode 100644 index 04634353..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-tl.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              phpmailer.lang-tl.php

                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                              Tagalog PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                              @package PHPMailer

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                              - Tags - - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - author -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                              Adriane Justine Tan eidoriantan@gmail.com

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - - -

                                                                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              
                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                              - On this page - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                              • - - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-tr.html b/docs/files/phpmailer-language-phpmailer-lang-tr.html deleted file mode 100644 index 54950b7d..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-tr.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                                                                - - - - - -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                phpmailer.lang-tr.php

                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                Turkish PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                - Tags - - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                Elçin Özel

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                Can Yılmaz

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                Mehmet Benlioğlu

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                @yasinaydin

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                Ogün Karakuş

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - -

                                                                                                                                                                                                                                - Table of Contents - - -

                                                                                                                                                                                                                                - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                
                                                                                                                                                                                                                                -        
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                - On this page - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                • - - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                  - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-uk.html b/docs/files/phpmailer-language-phpmailer-lang-uk.html deleted file mode 100644 index e0621602..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-uk.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                  phpmailer.lang-uk.php

                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                  Ukrainian PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                  - Tags - - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - author -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                  Yuriy Rudyy yrudyy@prs.net.ua

                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - fixed -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                  by Boris Yurchenko boris@yurchenko.pp.ua

                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - - - -

                                                                                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                  -        
                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  - On this page - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                  • - - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                    - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-ur.html b/docs/files/phpmailer-language-phpmailer-lang-ur.html deleted file mode 100644 index ba301dab..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-ur.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    phpmailer.lang-ur.php

                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                    Urdu PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                    - Tags - - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - author -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                    Saqib Ali Siddiqui saqibsra@gmail.com

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - - - -

                                                                                                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                    -        
                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                    - On this page - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                    • - - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                                      - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-vi.html b/docs/files/phpmailer-language-phpmailer-lang-vi.html deleted file mode 100644 index 2ef076b7..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-vi.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                                                                                      - - - - - -
                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      phpmailer.lang-vi.php

                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                      Vietnamese (Tiếng Việt) PHPMailer language file: refer to English translation for definitive list.

                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                      - Tags - - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - author -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                      VINADES.,JSC contact@vinades.vn

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - - - -

                                                                                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                      -        
                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                      - On this page - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                      • - - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-zh-cn.html b/docs/files/phpmailer-language-phpmailer-lang-zh-cn.html deleted file mode 100644 index d4757fab..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-zh-cn.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                                                                                        - - - - - -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        phpmailer.lang-zh_cn.php

                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                        Simplified Chinese PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                        - Tags - - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                        liqwei liqwei@liqwei.com

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                        young masxy@foxmail.com

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                        Teddysun i@teddysun.com

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - - - -

                                                                                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                        -        
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        - On this page - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                        • - - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - -
                                                                                                                                                                                                                                          - - - - - - - - diff --git a/docs/files/phpmailer-language-phpmailer-lang-zh.html b/docs/files/phpmailer-language-phpmailer-lang-zh.html deleted file mode 100644 index 862f0c3d..00000000 --- a/docs/files/phpmailer-language-phpmailer-lang-zh.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                                                                                          - - - - - -
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          phpmailer.lang-zh.php

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          Traditional Chinese PHPMailer language file: refer to English translation for definitive list

                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                          - Tags - - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - author -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          liqwei liqwei@liqwei.com

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - author -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          Peter Dave Hello <@PeterDaveHello/>

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - author -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          Jason Chiang xcojad@gmail.com

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - -

                                                                                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                          -        
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          - On this page - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                          • - - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - - -
                                                                                                                                                                                                                                            - - - - - - - - diff --git a/docs/files/phpmailer-src-dsnconfigurator.html b/docs/files/phpmailer-src-dsnconfigurator.html deleted file mode 100644 index 931093a1..00000000 --- a/docs/files/phpmailer-src-dsnconfigurator.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                                                                                            - - - - - -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            DSNConfigurator.php

                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            PHPMailer - PHP email creation and transport class.

                                                                                                                                                                                                                                            - - -

                                                                                                                                                                                                                                            PHP Version 5.5.

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - - -
                                                                                                                                                                                                                                            - Tags - - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - see -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - https://github.com/PHPMailer/PHPMailer/ - -

                                                                                                                                                                                                                                            The PHPMailer GitHub project

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - author -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - author -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            Jim Jagielski (jimjag) jimjag@gmail.com

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - author -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - author -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            Brent R. Matzelle (original founder)

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - copyright -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            2012 - 2023 Marcus Bointon

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - copyright -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            2010 - 2012 Jim Jagielski

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - copyright -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            2004 - 2009 Andy Prevost

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - license -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - note -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                            This program is distributed in the hope that it will be useful - WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE.

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - - - -

                                                                                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                                                                                            - - - - -

                                                                                                                                                                                                                                            - Classes - - -

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            DSNConfigurator
                                                                                                                                                                                                                                            Configure PHPMailer with DSN string.
                                                                                                                                                                                                                                            - - - - - - - - - - - - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                            -        
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            - On this page - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                            • - -
                                                                                                                                                                                                                                            • - - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                              - - - - - - - - diff --git a/docs/files/phpmailer-src-exception.html b/docs/files/phpmailer-src-exception.html deleted file mode 100644 index 06382876..00000000 --- a/docs/files/phpmailer-src-exception.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Exception.php

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              PHPMailer Exception class.

                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              PHP Version 5.5.

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                              - Tags - - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - see -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - https://github.com/PHPMailer/PHPMailer/ - -

                                                                                                                                                                                                                                              The PHPMailer GitHub project

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - author -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - author -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              Jim Jagielski (jimjag) jimjag@gmail.com

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - author -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - author -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              Brent R. Matzelle (original founder)

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - copyright -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              2012 - 2020 Marcus Bointon

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - copyright -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              2010 - 2012 Jim Jagielski

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - copyright -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              2004 - 2009 Andy Prevost

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - license -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - note -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              This program is distributed in the hope that it will be useful - WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE.

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - - -

                                                                                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                                                                                              - - - - -

                                                                                                                                                                                                                                              - Classes - - -

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              Exception
                                                                                                                                                                                                                                              PHPMailer exception handler.
                                                                                                                                                                                                                                              - - - - - - - - - - - - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              - On this page - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                              • - -
                                                                                                                                                                                                                                              • - - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                - - - - - - - - diff --git a/docs/files/phpmailer-src-oauth.html b/docs/files/phpmailer-src-oauth.html deleted file mode 100644 index f5daf52b..00000000 --- a/docs/files/phpmailer-src-oauth.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                                                                                - - - - - -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                OAuth.php

                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                PHPMailer - PHP email creation and transport class.

                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                PHP Version 5.5.

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                - Tags - - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - see -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - https://github.com/PHPMailer/PHPMailer/ - -

                                                                                                                                                                                                                                                The PHPMailer GitHub project

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                Jim Jagielski (jimjag) jimjag@gmail.com

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - author -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                Brent R. Matzelle (original founder)

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - copyright -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                2012 - 2020 Marcus Bointon

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - copyright -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                2010 - 2012 Jim Jagielski

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - copyright -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                2004 - 2009 Andy Prevost

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - license -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - note -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                This program is distributed in the hope that it will be useful - WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE.

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - - -

                                                                                                                                                                                                                                                - Table of Contents - - -

                                                                                                                                                                                                                                                - - - - -

                                                                                                                                                                                                                                                - Classes - - -

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                OAuth
                                                                                                                                                                                                                                                OAuth - OAuth2 authentication wrapper class.
                                                                                                                                                                                                                                                - - - - - - - - - - - - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                -        
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                - On this page - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                • - -
                                                                                                                                                                                                                                                • - - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                                  - - - - - - - - diff --git a/docs/files/phpmailer-src-oauthtokenprovider.html b/docs/files/phpmailer-src-oauthtokenprovider.html deleted file mode 100644 index e2f655f7..00000000 --- a/docs/files/phpmailer-src-oauthtokenprovider.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  OAuthTokenProvider.php

                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  PHPMailer - PHP email creation and transport class.

                                                                                                                                                                                                                                                  - - -

                                                                                                                                                                                                                                                  PHP Version 5.5.

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                                  - Tags - - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - see -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - https://github.com/PHPMailer/PHPMailer/ - -

                                                                                                                                                                                                                                                  The PHPMailer GitHub project

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - author -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - author -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  Jim Jagielski (jimjag) jimjag@gmail.com

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - author -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - author -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  Brent R. Matzelle (original founder)

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - copyright -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  2012 - 2020 Marcus Bointon

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - copyright -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  2010 - 2012 Jim Jagielski

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - copyright -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  2004 - 2009 Andy Prevost

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - license -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - note -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                  This program is distributed in the hope that it will be useful - WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE.

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - - - -

                                                                                                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                                                                                                  - - - -

                                                                                                                                                                                                                                                  - Interfaces - - -

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  OAuthTokenProvider
                                                                                                                                                                                                                                                  OAuthTokenProvider - OAuth2 token provider interface.
                                                                                                                                                                                                                                                  - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                  -        
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  - On this page - - -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                    - - - - - - - - diff --git a/docs/files/phpmailer-src-phpmailer.html b/docs/files/phpmailer-src-phpmailer.html deleted file mode 100644 index be747fdf..00000000 --- a/docs/files/phpmailer-src-phpmailer.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    PHPMailer.php

                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    PHPMailer - PHP email creation and transport class.

                                                                                                                                                                                                                                                    - - -

                                                                                                                                                                                                                                                    PHP Version 5.5.

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                    - Tags - - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - see -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - https://github.com/PHPMailer/PHPMailer/ - -

                                                                                                                                                                                                                                                    The PHPMailer GitHub project

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - author -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - author -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    Jim Jagielski (jimjag) jimjag@gmail.com

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - author -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - author -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    Brent R. Matzelle (original founder)

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - copyright -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    2012 - 2020 Marcus Bointon

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - copyright -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    2010 - 2012 Jim Jagielski

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - copyright -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    2004 - 2009 Andy Prevost

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - license -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - note -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    This program is distributed in the hope that it will be useful - WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE.

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - - - -

                                                                                                                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                                                                                                                    - - - - -

                                                                                                                                                                                                                                                    - Classes - - -

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    PHPMailer
                                                                                                                                                                                                                                                    PHPMailer - PHP email creation and transport class.
                                                                                                                                                                                                                                                    - - - - - - - - - - - - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                    -        
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    - On this page - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                    • - -
                                                                                                                                                                                                                                                    • - - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                                                      - - - - - - - - diff --git a/docs/files/phpmailer-src-pop3.html b/docs/files/phpmailer-src-pop3.html deleted file mode 100644 index 1df92501..00000000 --- a/docs/files/phpmailer-src-pop3.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                                                                                                      - - - - - -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      POP3.php

                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      PHPMailer POP-Before-SMTP Authentication Class.

                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                      PHP Version 5.5.

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                                                      - Tags - - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - see -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - https://github.com/PHPMailer/PHPMailer/ - -

                                                                                                                                                                                                                                                      The PHPMailer GitHub project

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - author -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - author -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      Jim Jagielski (jimjag) jimjag@gmail.com

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - author -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - author -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      Brent R. Matzelle (original founder)

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - copyright -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      2012 - 2020 Marcus Bointon

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - copyright -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      2010 - 2012 Jim Jagielski

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - copyright -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      2004 - 2009 Andy Prevost

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - license -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - note -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      This program is distributed in the hope that it will be useful - WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE.

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - - -

                                                                                                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                                                                                                      - - - - -

                                                                                                                                                                                                                                                      - Classes - - -

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      POP3
                                                                                                                                                                                                                                                      PHPMailer POP-Before-SMTP Authentication Class.
                                                                                                                                                                                                                                                      - - - - - - - - - - - - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      -        
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      - On this page - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                      • - -
                                                                                                                                                                                                                                                      • - - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                                                        - - - - - - - - diff --git a/docs/files/phpmailer-src-smtp.html b/docs/files/phpmailer-src-smtp.html deleted file mode 100644 index 80928ae0..00000000 --- a/docs/files/phpmailer-src-smtp.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                                                                                                        - - - - - -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                        SMTP.php

                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        PHPMailer RFC821 SMTP email transport class.

                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                        PHP Version 5.5.

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                                                        - Tags - - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - see -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - https://github.com/PHPMailer/PHPMailer/ - -

                                                                                                                                                                                                                                                        The PHPMailer GitHub project

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        Marcus Bointon (Synchro/coolbru) phpmailer@synchromedia.co.uk

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        Jim Jagielski (jimjag) jimjag@gmail.com

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - author -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        Brent R. Matzelle (original founder)

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - copyright -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        2012 - 2020 Marcus Bointon

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - copyright -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        2010 - 2012 Jim Jagielski

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - copyright -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        2004 - 2009 Andy Prevost

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - license -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - note -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        This program is distributed in the hope that it will be useful - WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE.

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - - -

                                                                                                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                                                                                                        - - - - -

                                                                                                                                                                                                                                                        - Classes - - -

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        SMTP
                                                                                                                                                                                                                                                        PHPMailer RFC821 SMTP email transport class.
                                                                                                                                                                                                                                                        - - - - - - - - - - - - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                        -        
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        - On this page - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                        • - -
                                                                                                                                                                                                                                                        • - - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - -
                                                                                                                                                                                                                                                          - - - - - - - - diff --git a/docs/files/sitemap.html b/docs/files/sitemap.html deleted file mode 100644 index db2e39dd..00000000 --- a/docs/files/sitemap.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                                                                                                          - - - - - -
                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          sitemap.php

                                                                                                                                                                                                                                                          - - - - - - - - -

                                                                                                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                          -        
                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                          - On this page - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                          • - - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - - -
                                                                                                                                                                                                                                                            - - - - - - - - diff --git a/docs/files/views-auth-email-verification.html b/docs/files/views-auth-email-verification.html deleted file mode 100644 index 4fdb9bc2..00000000 --- a/docs/files/views-auth-email-verification.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                                                                                                            - - - - - -
                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            email-verification.php

                                                                                                                                                                                                                                                            - - - - - - - - -

                                                                                                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                            -        
                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                            - On this page - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                            • - - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                              - - - - - - - - diff --git a/docs/files/views-auth-forgot-password.html b/docs/files/views-auth-forgot-password.html deleted file mode 100644 index d180c61a..00000000 --- a/docs/files/views-auth-forgot-password.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              forgot-password.php

                                                                                                                                                                                                                                                              - - - - - - - - -

                                                                                                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - On this page - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                              • - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                                - - - - - - - - diff --git a/docs/files/views-auth-login.html b/docs/files/views-auth-login.html deleted file mode 100644 index 98a4928e..00000000 --- a/docs/files/views-auth-login.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                                                                                                - - - - - -
                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                login.php

                                                                                                                                                                                                                                                                - - - - - - - - -

                                                                                                                                                                                                                                                                - Table of Contents - - -

                                                                                                                                                                                                                                                                - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                -        
                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                - On this page - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                • - - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                                                  - - - - - - - - diff --git a/docs/files/views-auth-register.html b/docs/files/views-auth-register.html deleted file mode 100644 index 534c76ed..00000000 --- a/docs/files/views-auth-register.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                  register.php

                                                                                                                                                                                                                                                                  - - - - - - - - -

                                                                                                                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                  -        
                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                  - On this page - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                  • - - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                    - - - - - - - - diff --git a/docs/files/views-auth-reset-password.html b/docs/files/views-auth-reset-password.html deleted file mode 100644 index e04e0b90..00000000 --- a/docs/files/views-auth-reset-password.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    reset-password.php

                                                                                                                                                                                                                                                                    - - - - - - - - -

                                                                                                                                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                                                                                                                                    - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                    -        
                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                    - On this page - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                    • - - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                                                                      - - - - - - - - diff --git a/docs/files/views-layouts-footer.html b/docs/files/views-layouts-footer.html deleted file mode 100644 index f91d2910..00000000 --- a/docs/files/views-layouts-footer.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                                                                                                                      - - - - - -
                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      footer.php

                                                                                                                                                                                                                                                                      - - - - - - - - -

                                                                                                                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                      -        
                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                      - On this page - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                      • - - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                                                                        - - - - - - - - diff --git a/docs/files/views-pages-mentions-legales.html b/docs/files/views-pages-mentions-legales.html deleted file mode 100644 index 61af0b05..00000000 --- a/docs/files/views-pages-mentions-legales.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                                                                                                                        - - - - - -
                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                        mentions-legales.php

                                                                                                                                                                                                                                                                        - - - - - - - - -

                                                                                                                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                        -        
                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                        - On this page - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                        • - - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - -
                                                                                                                                                                                                                                                                          - - - - - - - - diff --git a/docs/files/views-user-dashboard.html b/docs/files/views-user-dashboard.html deleted file mode 100644 index e7d4a575..00000000 --- a/docs/files/views-user-dashboard.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                                                                                                                          - - - - - -
                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          dashboard.php

                                                                                                                                                                                                                                                                          - - - - - - - - -

                                                                                                                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                          -        
                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                          - On this page - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                          • - - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - -
                                                                                                                                                                                                                                                                            - - - - - - - - diff --git a/docs/files/views-user-resource-details.html b/docs/files/views-user-resource-details.html deleted file mode 100644 index f333631a..00000000 --- a/docs/files/views-user-resource-details.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                                                                                                                            - - - - - -
                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            resource_details.php

                                                                                                                                                                                                                                                                            - - - - - - - - -

                                                                                                                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                                                                                                                            - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                            -        
                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                            - On this page - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                            • - - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                                              - - - - - - - - diff --git a/docs/files/views-user-resources-list.html b/docs/files/views-user-resources-list.html deleted file mode 100644 index 47aaf3e0..00000000 --- a/docs/files/views-user-resources-list.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              resources_list.php

                                                                                                                                                                                                                                                                              - - - - - - - - -

                                                                                                                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                                                                                                                              - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                              - On this page - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • - - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                                                - - - - - - - - diff --git a/docs/graphs/classes.html b/docs/graphs/classes.html deleted file mode 100644 index a8a4f94f..00000000 --- a/docs/graphs/classes.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                                                                                                                - - - - - -
                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                                                                  - - - - - - - - diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index f326277c..00000000 --- a/docs/index.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  Documentation

                                                                                                                                                                                                                                                                                  - - - -

                                                                                                                                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - Packages - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  Application
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  PHPMailer
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  PHPMailerSomeFrenchpunctuationrequiresathinnon
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - Namespaces - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  Controllers
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  PHPMailer
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - -

                                                                                                                                                                                                                                                                                  - Classes - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  Router
                                                                                                                                                                                                                                                                                  Router class - Main application router -Handles URL routing and controller dispatching with namespaces
                                                                                                                                                                                                                                                                                  BaseController
                                                                                                                                                                                                                                                                                  BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                                                                                                                                                                                                                  HomeController
                                                                                                                                                                                                                                                                                  HomeController - Handles home page routing
                                                                                                                                                                                                                                                                                  Code2VecService
                                                                                                                                                                                                                                                                                  Service pour interagir avec code2aes2vec (Python) -Génère les vecteurs de grande dimension à partir des programmes étudiants
                                                                                                                                                                                                                                                                                  Database
                                                                                                                                                                                                                                                                                  Database class - Database connection manager -Handles PDO connection with configuration from .env file
                                                                                                                                                                                                                                                                                  Dataset
                                                                                                                                                                                                                                                                                  Modèle pour gérer les datasets -Utilise la structure BD existante
                                                                                                                                                                                                                                                                                  EmailService
                                                                                                                                                                                                                                                                                  EmailService class - Email sending service -Handles email sending with PHPMailer
                                                                                                                                                                                                                                                                                  Exercise
                                                                                                                                                                                                                                                                                  PendingRegistration
                                                                                                                                                                                                                                                                                  PendingRegistration Model - CRUD operations for pending registrations with PDO
                                                                                                                                                                                                                                                                                  Resource
                                                                                                                                                                                                                                                                                  Student
                                                                                                                                                                                                                                                                                  Student Model - Handles student data from JSON file
                                                                                                                                                                                                                                                                                  User
                                                                                                                                                                                                                                                                                  User Model - CRUD operations for users with PDO
                                                                                                                                                                                                                                                                                  - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                                    - - - - - - - - diff --git a/docs/indices/files.html b/docs/indices/files.html deleted file mode 100644 index abe7e8c5..00000000 --- a/docs/indices/files.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    Files

                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                    A

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    B

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    C

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    D

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    E

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    F

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    G

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    H

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    I

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    L

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    M

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    O

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    P

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    R

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    S

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    U

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    V

                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                                                                                      - - - - - - - - diff --git a/docs/js/search.js b/docs/js/search.js deleted file mode 100644 index 093d6d03..00000000 --- a/docs/js/search.js +++ /dev/null @@ -1,173 +0,0 @@ -// Search module for phpDocumentor -// -// This module is a wrapper around fuse.js that will use a given index and attach itself to a -// search form and to a search results pane identified by the following data attributes: -// -// 1. data-search-form -// 2. data-search-results -// -// The data-search-form is expected to have a single input element of type 'search' that will trigger searching for -// a series of results, were the data-search-results pane is expected to have a direct UL child that will be populated -// with rendered results. -// -// The search has various stages, upon loading this stage the data-search-form receives the CSS class -// 'phpdocumentor-search--enabled'; this indicates that JS is allowed and indices are being loaded. It is recommended -// to hide the form by default and show it when it receives this class to achieve progressive enhancement for this -// feature. -// -// After loading this module, it is expected to load a search index asynchronously, for example: -// -// -// -// In this script the generated index should attach itself to the search module using the `appendIndex` function. By -// doing it like this the page will continue loading, unhindered by the loading of the search. -// -// After the page has fully loaded, and all these deferred indexes loaded, the initialization of the search module will -// be called and the form will receive the class 'phpdocumentor-search--active', indicating search is ready. At this -// point, the input field will also have it's 'disabled' attribute removed. -var Search = (function () { - var fuse; - var index = []; - var options = { - shouldSort: true, - threshold: 0.6, - location: 0, - distance: 100, - maxPatternLength: 32, - minMatchCharLength: 1, - keys: [ - "fqsen", - "name", - "summary", - "url" - ] - }; - - // Credit David Walsh (https://davidwalsh.name/javascript-debounce-function) - // Returns a function, that, as long as it continues to be invoked, will not - // be triggered. The function will be called after it stops being called for - // N milliseconds. If `immediate` is passed, trigger the function on the - // leading edge, instead of the trailing. - function debounce(func, wait, immediate) { - var timeout; - - return function executedFunction() { - var context = this; - var args = arguments; - - var later = function () { - timeout = null; - if (!immediate) func.apply(context, args); - }; - - var callNow = immediate && !timeout; - clearTimeout(timeout); - timeout = setTimeout(later, wait); - if (callNow) func.apply(context, args); - }; - } - - function close() { - // Start scroll prevention: https://css-tricks.com/prevent-page-scrolling-when-a-modal-is-open/ - const scrollY = document.body.style.top; - document.body.style.position = ''; - document.body.style.top = ''; - window.scrollTo(0, parseInt(scrollY || '0') * -1); - // End scroll prevention - - var form = document.querySelector('[data-search-form]'); - var searchResults = document.querySelector('[data-search-results]'); - - form.classList.toggle('phpdocumentor-search--has-results', false); - searchResults.classList.add('phpdocumentor-search-results--hidden'); - var searchField = document.querySelector('[data-search-form] input[type="search"]'); - searchField.blur(); - } - - function search(event) { - // Start scroll prevention: https://css-tricks.com/prevent-page-scrolling-when-a-modal-is-open/ - document.body.style.position = 'fixed'; - document.body.style.top = `-${window.scrollY}px`; - // End scroll prevention - - // prevent enter's from autosubmitting - event.stopPropagation(); - - var form = document.querySelector('[data-search-form]'); - var searchResults = document.querySelector('[data-search-results]'); - var searchResultEntries = document.querySelector('[data-search-results] .phpdocumentor-search-results__entries'); - - searchResultEntries.innerHTML = ''; - - if (!event.target.value) { - close(); - return; - } - - form.classList.toggle('phpdocumentor-search--has-results', true); - searchResults.classList.remove('phpdocumentor-search-results--hidden'); - var results = fuse.search(event.target.value, {limit: 25}); - - results.forEach(function (result) { - var entry = document.createElement("li"); - entry.classList.add("phpdocumentor-search-results__entry"); - entry.innerHTML += '

                                                                                                                                                                                                                                                                                      ' + result.name + "

                                                                                                                                                                                                                                                                                      \n"; - entry.innerHTML += '' + result.fqsen + "\n"; - entry.innerHTML += '
                                                                                                                                                                                                                                                                                      ' + result.summary + '
                                                                                                                                                                                                                                                                                      '; - searchResultEntries.appendChild(entry) - }); - } - - function appendIndex(added) { - index = index.concat(added); - - // re-initialize search engine when appending an index after initialisation - if (typeof fuse !== 'undefined') { - fuse = new Fuse(index, options); - } - } - - function init() { - fuse = new Fuse(index, options); - - var form = document.querySelector('[data-search-form]'); - var searchField = document.querySelector('[data-search-form] input[type="search"]'); - - var closeButton = document.querySelector('.phpdocumentor-search-results__close'); - closeButton.addEventListener('click', function() { close() }.bind(this)); - - var searchResults = document.querySelector('[data-search-results]'); - searchResults.addEventListener('click', function() { close() }.bind(this)); - - form.classList.add('phpdocumentor-search--active'); - - searchField.setAttribute('placeholder', 'Search (Press "/" to focus)'); - searchField.removeAttribute('disabled'); - searchField.addEventListener('keyup', debounce(search, 300)); - - window.addEventListener('keyup', function (event) { - if (event.key === '/') { - searchField.focus(); - } - if (event.code === 'Escape') { - close(); - } - }.bind(this)); - } - - return { - appendIndex, - init - } -})(); - -window.addEventListener('DOMContentLoaded', function () { - var form = document.querySelector('[data-search-form]'); - - // When JS is supported; show search box. Must be before including the search for it to take effect immediately - form.classList.add('phpdocumentor-search--enabled'); -}); - -window.addEventListener('load', function () { - Search.init(); -}); diff --git a/docs/js/searchIndex.js b/docs/js/searchIndex.js deleted file mode 100644 index 7a9858e7..00000000 --- a/docs/js/searchIndex.js +++ /dev/null @@ -1,2724 +0,0 @@ -Search.appendIndex( - [ - { - "fqsen": "\\Router", - "name": "Router", - "summary": "Router\u0020class\u0020\u002D\u0020Main\u0020application\u0020router\nHandles\u0020URL\u0020routing\u0020and\u0020controller\u0020dispatching\u0020with\u0020namespaces", - "url": "classes/Router.html" - }, { - "fqsen": "\\Router\u003A\u003Aroute\u0028\u0029", - "name": "route", - "summary": "Route\u0020the\u0020request\u0020to\u0020the\u0020appropriate\u0020controller", - "url": "classes/Router.html#method_route" - }, { - "fqsen": "\\Router\u003A\u003AloadController\u0028\u0029", - "name": "loadController", - "summary": "Load\u0020and\u0020execute\u0020controller\u0020method\u0020\u0028legacy\u0020\u002D\u0020old\u0020controllers\u0029", - "url": "classes/Router.html#method_loadController" - }, { - "fqsen": "\\Router\u003A\u003AloadNamespacedController\u0028\u0029", - "name": "loadNamespacedController", - "summary": "Load\u0020and\u0020execute\u0020namespaced\u0020controller\u0020method\u0020\u0028new\u0020MVC\u0020structure\u0029", - "url": "classes/Router.html#method_loadNamespacedController" - }, { - "fqsen": "\\Router\u003A\u003AloadView\u0028\u0029", - "name": "loadView", - "summary": "Load\u0020a\u0020static\u0020view\u0020directly", - "url": "classes/Router.html#method_loadView" - }, { - "fqsen": "\\Controllers\\Analysis\\UploadController", - "name": "UploadController", - "summary": "Contr\u00F4leur\u0020pour\u0020l\u0027upload\u0020des\u0020donn\u00E9es\u0020de\u0020programmes\u0020\u00E9tudiants", - "url": "classes/Controllers-Analysis-UploadController.html" - }, { - "fqsen": "\\Controllers\\Analysis\\UploadController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-Analysis-UploadController.html#method___construct" - }, { - "fqsen": "\\Controllers\\Analysis\\UploadController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Affiche\u0020la\u0020page\u0020d\u0027upload", - "url": "classes/Controllers-Analysis-UploadController.html#method_index" - }, { - "fqsen": "\\Controllers\\Analysis\\UploadController\u003A\u003Aupload\u0028\u0029", - "name": "upload", - "summary": "Traite\u0020l\u0027upload\u0020du\u0020fichier\u0020JSON", - "url": "classes/Controllers-Analysis-UploadController.html#method_upload" - }, { - "fqsen": "\\Controllers\\Analysis\\UploadController\u003A\u003A\u0024code2vecService", - "name": "code2vecService", - "summary": "", - "url": "classes/Controllers-Analysis-UploadController.html#property_code2vecService" - }, { - "fqsen": "\\Controllers\\Analysis\\VectorController", - "name": "VectorController", - "summary": "Contr\u00F4leur\u0020pour\u0020la\u0020g\u00E9n\u00E9ration\u0020et\u0020la\u0020gestion\u0020des\u0020vecteurs", - "url": "classes/Controllers-Analysis-VectorController.html" - }, { - "fqsen": "\\Controllers\\Analysis\\VectorController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-Analysis-VectorController.html#method___construct" - }, { - "fqsen": "\\Controllers\\Analysis\\VectorController\u003A\u003Agenerate\u0028\u0029", - "name": "generate", - "summary": "Lance\u0020la\u0020g\u00E9n\u00E9ration\u0020de\u0020vecteurs\u0020pour\u0020un\u0020dataset", - "url": "classes/Controllers-Analysis-VectorController.html#method_generate" - }, { - "fqsen": "\\Controllers\\Analysis\\VectorController\u003A\u003Aprocessing\u0028\u0029", - "name": "processing", - "summary": "Page\u0020de\u0020traitement\u0020avec\u0020barre\u0020de\u0020progression", - "url": "classes/Controllers-Analysis-VectorController.html#method_processing" - }, { - "fqsen": "\\Controllers\\Analysis\\VectorController\u003A\u003Astatus\u0028\u0029", - "name": "status", - "summary": "API\u0020pour\u0020v\u00E9rifier\u0020le\u0020statut\u0020du\u0020traitement\u0020\u0028AJAX\u0029", - "url": "classes/Controllers-Analysis-VectorController.html#method_status" - }, { - "fqsen": "\\Controllers\\Analysis\\VectorController\u003A\u003AgetVectors\u0028\u0029", - "name": "getVectors", - "summary": "R\u00E9cup\u00E8re\u0020les\u0020vecteurs\u0020g\u00E9n\u00E9r\u00E9s", - "url": "classes/Controllers-Analysis-VectorController.html#method_getVectors" - }, { - "fqsen": "\\Controllers\\Analysis\\VectorController\u003A\u003A\u0024code2vecService", - "name": "code2vecService", - "summary": "", - "url": "classes/Controllers-Analysis-VectorController.html#property_code2vecService" - }, { - "fqsen": "\\Controllers\\Analysis\\VectorController\u003A\u003A\u0024datasetModel", - "name": "datasetModel", - "summary": "", - "url": "classes/Controllers-Analysis-VectorController.html#property_datasetModel" - }, { - "fqsen": "\\Controllers\\Analysis\\VisualizationController", - "name": "VisualizationController", - "summary": "Contr\u00F4leur\u0020pour\u0020la\u0020visualisation\u0020des\u0020donn\u00E9es\u0020avec\u0020D3.js", - "url": "classes/Controllers-Analysis-VisualizationController.html" - }, { - "fqsen": "\\Controllers\\Analysis\\VisualizationController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-Analysis-VisualizationController.html#method___construct" - }, { - "fqsen": "\\Controllers\\Analysis\\VisualizationController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Affiche\u0020la\u0020page\u0020de\u0020visualisation", - "url": "classes/Controllers-Analysis-VisualizationController.html#method_index" - }, { - "fqsen": "\\Controllers\\Analysis\\VisualizationController\u003A\u003AgetData\u0028\u0029", - "name": "getData", - "summary": "API\u0020pour\u0020r\u00E9cup\u00E9rer\u0020les\u0020donn\u00E9es\u0020format\u00E9es\u0020pour\u0020D3.js", - "url": "classes/Controllers-Analysis-VisualizationController.html#method_getData" - }, { - "fqsen": "\\Controllers\\Analysis\\VisualizationController\u003A\u003A\u0024datasetModel", - "name": "datasetModel", - "summary": "", - "url": "classes/Controllers-Analysis-VisualizationController.html#property_datasetModel" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController", - "name": "AuthController", - "summary": "AuthController\u0020\u002D\u0020Authentication\u0020service\u0020with\u0020CRUD\u0020operations\nHandles\u0020user\u0020registration,\u0020login,\u0020and\u0020password\u0020management", - "url": "classes/Controllers-Auth-AuthController.html" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-Auth-AuthController.html#method___construct" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003Aregister\u0028\u0029", - "name": "register", - "summary": "CREATE\u0020\u002D\u0020Register\u0020a\u0020new\u0020user", - "url": "classes/Controllers-Auth-AuthController.html#method_register" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003AvalidateCode\u0028\u0029", - "name": "validateCode", - "summary": "CREATE\u0020\u002D\u0020Validate\u0020verification\u0020code\u0020and\u0020create\u0020user\u0020account", - "url": "classes/Controllers-Auth-AuthController.html#method_validateCode" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003Alogin\u0028\u0029", - "name": "login", - "summary": "READ\u0020\u002D\u0020Login\u0020user", - "url": "classes/Controllers-Auth-AuthController.html#method_login" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003AresendCode\u0028\u0029", - "name": "resendCode", - "summary": "UPDATE\u0020\u002D\u0020Resend\u0020verification\u0020code", - "url": "classes/Controllers-Auth-AuthController.html#method_resendCode" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003ArequestPasswordReset\u0028\u0029", - "name": "requestPasswordReset", - "summary": "UPDATE\u0020\u002D\u0020Request\u0020password\u0020reset", - "url": "classes/Controllers-Auth-AuthController.html#method_requestPasswordReset" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003AresetPassword\u0028\u0029", - "name": "resetPassword", - "summary": "UPDATE\u0020\u002D\u0020Reset\u0020password\u0020with\u0020token", - "url": "classes/Controllers-Auth-AuthController.html#method_resetPassword" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003AcreateSession\u0028\u0029", - "name": "createSession", - "summary": "Create\u0020user\u0020session", - "url": "classes/Controllers-Auth-AuthController.html#method_createSession" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003A\u0024userModel", - "name": "userModel", - "summary": "", - "url": "classes/Controllers-Auth-AuthController.html#property_userModel" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003A\u0024pendingRegistrationModel", - "name": "pendingRegistrationModel", - "summary": "", - "url": "classes/Controllers-Auth-AuthController.html#property_pendingRegistrationModel" - }, { - "fqsen": "\\Controllers\\Auth\\AuthController\u003A\u003A\u0024emailService", - "name": "emailService", - "summary": "", - "url": "classes/Controllers-Auth-AuthController.html#property_emailService" - }, { - "fqsen": "\\Controllers\\Auth\\EmailVerificationController", - "name": "EmailVerificationController", - "summary": "EmailVerificationController\u0020\u002D\u0020Handles\u0020email\u0020verification", - "url": "classes/Controllers-Auth-EmailVerificationController.html" - }, { - "fqsen": "\\Controllers\\Auth\\EmailVerificationController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-Auth-EmailVerificationController.html#method___construct" - }, { - "fqsen": "\\Controllers\\Auth\\EmailVerificationController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Show\u0020email\u0020verification\u0020page", - "url": "classes/Controllers-Auth-EmailVerificationController.html#method_index" - }, { - "fqsen": "\\Controllers\\Auth\\EmailVerificationController\u003A\u003Averify\u0028\u0029", - "name": "verify", - "summary": "Verify\u0020email\u0020code", - "url": "classes/Controllers-Auth-EmailVerificationController.html#method_verify" - }, { - "fqsen": "\\Controllers\\Auth\\EmailVerificationController\u003A\u003AresendCode\u0028\u0029", - "name": "resendCode", - "summary": "Resend\u0020verification\u0020code", - "url": "classes/Controllers-Auth-EmailVerificationController.html#method_resendCode" - }, { - "fqsen": "\\Controllers\\Auth\\EmailVerificationController\u003A\u003AgetErrorMessage\u0028\u0029", - "name": "getErrorMessage", - "summary": "Get\u0020error\u0020message\u0020from\u0020error\u0020code", - "url": "classes/Controllers-Auth-EmailVerificationController.html#method_getErrorMessage" - }, { - "fqsen": "\\Controllers\\Auth\\EmailVerificationController\u003A\u003AgetSuccessMessage\u0028\u0029", - "name": "getSuccessMessage", - "summary": "Get\u0020success\u0020message\u0020from\u0020success\u0020code", - "url": "classes/Controllers-Auth-EmailVerificationController.html#method_getSuccessMessage" - }, { - "fqsen": "\\Controllers\\Auth\\EmailVerificationController\u003A\u003A\u0024authController", - "name": "authController", - "summary": "", - "url": "classes/Controllers-Auth-EmailVerificationController.html#property_authController" - }, { - "fqsen": "\\Controllers\\Auth\\LoginController", - "name": "LoginController", - "summary": "LoginController\u0020\u002D\u0020Handles\u0020login\u0020display\u0020and\u0020authentication", - "url": "classes/Controllers-Auth-LoginController.html" - }, { - "fqsen": "\\Controllers\\Auth\\LoginController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-Auth-LoginController.html#method___construct" - }, { - "fqsen": "\\Controllers\\Auth\\LoginController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Show\u0020login\u0020page", - "url": "classes/Controllers-Auth-LoginController.html#method_index" - }, { - "fqsen": "\\Controllers\\Auth\\LoginController\u003A\u003Aauthenticate\u0028\u0029", - "name": "authenticate", - "summary": "Process\u0020login\u0020form", - "url": "classes/Controllers-Auth-LoginController.html#method_authenticate" - }, { - "fqsen": "\\Controllers\\Auth\\LoginController\u003A\u003AgetErrorMessage\u0028\u0029", - "name": "getErrorMessage", - "summary": "Get\u0020error\u0020message\u0020from\u0020error\u0020code", - "url": "classes/Controllers-Auth-LoginController.html#method_getErrorMessage" - }, { - "fqsen": "\\Controllers\\Auth\\LoginController\u003A\u003AgetSuccessMessage\u0028\u0029", - "name": "getSuccessMessage", - "summary": "Get\u0020success\u0020message\u0020from\u0020success\u0020code", - "url": "classes/Controllers-Auth-LoginController.html#method_getSuccessMessage" - }, { - "fqsen": "\\Controllers\\Auth\\LoginController\u003A\u003A\u0024authController", - "name": "authController", - "summary": "", - "url": "classes/Controllers-Auth-LoginController.html#property_authController" - }, { - "fqsen": "\\Controllers\\Auth\\LogoutController", - "name": "LogoutController", - "summary": "LogoutController\u0020\u002D\u0020Handles\u0020user\u0020logout", - "url": "classes/Controllers-Auth-LogoutController.html" - }, { - "fqsen": "\\Controllers\\Auth\\LogoutController\u003A\u003Alogout\u0028\u0029", - "name": "logout", - "summary": "Logout\u0020user\u0020and\u0020destroy\u0020session", - "url": "classes/Controllers-Auth-LogoutController.html#method_logout" - }, { - "fqsen": "\\Controllers\\Auth\\PasswordResetController", - "name": "PasswordResetController", - "summary": "PasswordResetController\u0020\u002D\u0020Handles\u0020password\u0020reset\u0020functionality", - "url": "classes/Controllers-Auth-PasswordResetController.html" - }, { - "fqsen": "\\Controllers\\Auth\\PasswordResetController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-Auth-PasswordResetController.html#method___construct" - }, { - "fqsen": "\\Controllers\\Auth\\PasswordResetController\u003A\u003AforgotPassword\u0028\u0029", - "name": "forgotPassword", - "summary": "Show\u0020forgot\u0020password\u0020page", - "url": "classes/Controllers-Auth-PasswordResetController.html#method_forgotPassword" - }, { - "fqsen": "\\Controllers\\Auth\\PasswordResetController\u003A\u003ArequestReset\u0028\u0029", - "name": "requestReset", - "summary": "Request\u0020password\u0020reset", - "url": "classes/Controllers-Auth-PasswordResetController.html#method_requestReset" - }, { - "fqsen": "\\Controllers\\Auth\\PasswordResetController\u003A\u003AshowResetForm\u0028\u0029", - "name": "showResetForm", - "summary": "Show\u0020reset\u0020password\u0020page\u0020with\u0020token", - "url": "classes/Controllers-Auth-PasswordResetController.html#method_showResetForm" - }, { - "fqsen": "\\Controllers\\Auth\\PasswordResetController\u003A\u003AresetPassword\u0028\u0029", - "name": "resetPassword", - "summary": "Reset\u0020password\u0020with\u0020token", - "url": "classes/Controllers-Auth-PasswordResetController.html#method_resetPassword" - }, { - "fqsen": "\\Controllers\\Auth\\PasswordResetController\u003A\u003AgetErrorMessage\u0028\u0029", - "name": "getErrorMessage", - "summary": "Get\u0020error\u0020message\u0020from\u0020error\u0020code", - "url": "classes/Controllers-Auth-PasswordResetController.html#method_getErrorMessage" - }, { - "fqsen": "\\Controllers\\Auth\\PasswordResetController\u003A\u003A\u0024authController", - "name": "authController", - "summary": "", - "url": "classes/Controllers-Auth-PasswordResetController.html#property_authController" - }, { - "fqsen": "\\Controllers\\Auth\\RegisterController", - "name": "RegisterController", - "summary": "RegisterController\u0020\u002D\u0020Handles\u0020user\u0020registration", - "url": "classes/Controllers-Auth-RegisterController.html" - }, { - "fqsen": "\\Controllers\\Auth\\RegisterController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-Auth-RegisterController.html#method___construct" - }, { - "fqsen": "\\Controllers\\Auth\\RegisterController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Show\u0020registration\u0020page", - "url": "classes/Controllers-Auth-RegisterController.html#method_index" - }, { - "fqsen": "\\Controllers\\Auth\\RegisterController\u003A\u003Aregister\u0028\u0029", - "name": "register", - "summary": "Process\u0020registration\u0020form", - "url": "classes/Controllers-Auth-RegisterController.html#method_register" - }, { - "fqsen": "\\Controllers\\Auth\\RegisterController\u003A\u003AgetErrorMessage\u0028\u0029", - "name": "getErrorMessage", - "summary": "Get\u0020error\u0020message\u0020from\u0020error\u0020code", - "url": "classes/Controllers-Auth-RegisterController.html#method_getErrorMessage" - }, { - "fqsen": "\\Controllers\\Auth\\RegisterController\u003A\u003A\u0024authController", - "name": "authController", - "summary": "", - "url": "classes/Controllers-Auth-RegisterController.html#property_authController" - }, { - "fqsen": "\\BaseController", - "name": "BaseController", - "summary": "BaseController\u0020\u002D\u0020Base\u0020controller\u0020class\u0020with\u0020common\u0020methods\nAll\u0020controllers\u0020should\u0020extend\u0020this\u0020class", - "url": "classes/BaseController.html" - }, { - "fqsen": "\\BaseController\u003A\u003AloadView\u0028\u0029", - "name": "loadView", - "summary": "Load\u0020a\u0020view\u0020file\u0020with\u0020data", - "url": "classes/BaseController.html#method_loadView" - }, { - "fqsen": "\\BaseController\u003A\u003Aredirect\u0028\u0029", - "name": "redirect", - "summary": "Redirect\u0020to\u0020a\u0020specific\u0020action", - "url": "classes/BaseController.html#method_redirect" - }, { - "fqsen": "\\BaseController\u003A\u003AisAuthenticated\u0028\u0029", - "name": "isAuthenticated", - "summary": "Check\u0020if\u0020user\u0020is\u0020authenticated", - "url": "classes/BaseController.html#method_isAuthenticated" - }, { - "fqsen": "\\BaseController\u003A\u003ArequireAuth\u0028\u0029", - "name": "requireAuth", - "summary": "Require\u0020authentication\u0020\u002D\u0020redirect\u0020to\u0020login\u0020if\u0020not\u0020authenticated", - "url": "classes/BaseController.html#method_requireAuth" - }, { - "fqsen": "\\HomeController", - "name": "HomeController", - "summary": "HomeController\u0020\u002D\u0020Handles\u0020home\u0020page\u0020routing", - "url": "classes/HomeController.html" - }, { - "fqsen": "\\HomeController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Main\u0020index\u0020action\nRedirects\u0020authenticated\u0020users\u0020to\u0020dashboard,\u0020others\u0020to\u0020public\u0020home\u0020page", - "url": "classes/HomeController.html#method_index" - }, { - "fqsen": "\\Controllers\\User\\DashboardController", - "name": "DashboardController", - "summary": "DashboardController\u0020\u002D\u0020Handles\u0020user\u0020dashboard", - "url": "classes/Controllers-User-DashboardController.html" - }, { - "fqsen": "\\Controllers\\User\\DashboardController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Show\u0020dashboard\u0020page", - "url": "classes/Controllers-User-DashboardController.html#method_index" - }, { - "fqsen": "\\Controllers\\User\\ResourceDetailsController", - "name": "ResourceDetailsController", - "summary": "BaseController\u0020\u002D\u0020Base\u0020controller\u0020class\u0020with\u0020common\u0020methods\nAll\u0020controllers\u0020should\u0020extend\u0020this\u0020class", - "url": "classes/Controllers-User-ResourceDetailsController.html" - }, { - "fqsen": "\\Controllers\\User\\ResourceDetailsController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Show\u0020dashboard\u0020page", - "url": "classes/Controllers-User-ResourceDetailsController.html#method_index" - }, { - "fqsen": "\\Controllers\\User\\ResourceListController", - "name": "ResourceListController", - "summary": "BaseController\u0020\u002D\u0020Base\u0020controller\u0020class\u0020with\u0020common\u0020methods\nAll\u0020controllers\u0020should\u0020extend\u0020this\u0020class", - "url": "classes/Controllers-User-ResourceListController.html" - }, { - "fqsen": "\\Controllers\\User\\ResourceListController\u003A\u003Aindex\u0028\u0029", - "name": "index", - "summary": "Show\u0020dashboard\u0020page", - "url": "classes/Controllers-User-ResourceListController.html#method_index" - }, { - "fqsen": "\\Controllers\\User\\StudentsController", - "name": "StudentsController", - "summary": "StudentsController\u0020\u002D\u0020Handles\u0020student\u0020data\u0020API", - "url": "classes/Controllers-User-StudentsController.html" - }, { - "fqsen": "\\Controllers\\User\\StudentsController\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Controllers-User-StudentsController.html#method___construct" - }, { - "fqsen": "\\Controllers\\User\\StudentsController\u003A\u003AgetStudents\u0028\u0029", - "name": "getStudents", - "summary": "Get\u0020paginated\u0020list\u0020of\u0020students", - "url": "classes/Controllers-User-StudentsController.html#method_getStudents" - }, { - "fqsen": "\\Controllers\\User\\StudentsController\u003A\u003AgetStudent\u0028\u0029", - "name": "getStudent", - "summary": "Get\u0020student\u0020details\u0020and\u0020all\u0020attempts\u0020by\u0020ID", - "url": "classes/Controllers-User-StudentsController.html#method_getStudent" - }, { - "fqsen": "\\Controllers\\User\\StudentsController\u003A\u003A\u0024studentModel", - "name": "studentModel", - "summary": "", - "url": "classes/Controllers-User-StudentsController.html#property_studentModel" - }, { - "fqsen": "\\Code2VecService", - "name": "Code2VecService", - "summary": "Service\u0020pour\u0020interagir\u0020avec\u0020code2aes2vec\u0020\u0028Python\u0029\nG\u00E9n\u00E8re\u0020les\u0020vecteurs\u0020de\u0020grande\u0020dimension\u0020\u00E0\u0020partir\u0020des\u0020programmes\u0020\u00E9tudiants", - "url": "classes/Code2VecService.html" - }, { - "fqsen": "\\Code2VecService\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Code2VecService.html#method___construct" - }, { - "fqsen": "\\Code2VecService\u003A\u003AexportDatasetToJSON\u0028\u0029", - "name": "exportDatasetToJSON", - "summary": "Exporte\u0020un\u0020dataset\u0020au\u0020format\u0020JSON\u0020compatible\u0020avec\u0020code2aes2vec", - "url": "classes/Code2VecService.html#method_exportDatasetToJSON" - }, { - "fqsen": "\\Code2VecService\u003A\u003AexportExercisesToJSON\u0028\u0029", - "name": "exportExercisesToJSON", - "summary": "Exporte\u0020les\u0020exercices\u0020d\u0027un\u0020dataset\u0020au\u0020format\u0020compatible\u0020code2aes2vec", - "url": "classes/Code2VecService.html#method_exportExercisesToJSON" - }, { - "fqsen": "\\Code2VecService\u003A\u003AgenerateAES\u0028\u0029", - "name": "generateAES", - "summary": "G\u00E9n\u00E8re\u0020les\u0020AES\u0020pour\u0020toutes\u0020les\u0020tentatives\u0020d\u0027un\u0020dataset\nMet\u0020\u00E0\u0020jour\u0020la\u0020colonne\u0020aes2\u0020dans\u0020la\u0020table\u0020attempts", - "url": "classes/Code2VecService.html#method_generateAES" - }, { - "fqsen": "\\Code2VecService\u003A\u003AimportAESToDB\u0028\u0029", - "name": "importAESToDB", - "summary": "Importe\u0020les\u0020AES\u0020depuis\u0020le\u0020fichier\u0020JSON\u0020vers\u0020la\u0020base\u0020de\u0020donn\u00E9es", - "url": "classes/Code2VecService.html#method_importAESToDB" - }, { - "fqsen": "\\Code2VecService\u003A\u003AinferVectors\u0028\u0029", - "name": "inferVectors", - "summary": "G\u00E9n\u00E8re\u0020les\u0020vecteurs\u0020de\u0020grande\u0020dimension\u0020\u00E0\u0020partir\u0020des\u0020AES", - "url": "classes/Code2VecService.html#method_inferVectors" - }, { - "fqsen": "\\Code2VecService\u003A\u003AgetProcessingStatus\u0028\u0029", - "name": "getProcessingStatus", - "summary": "V\u00E9rifie\u0020l\u0027\u00E9tat\u0020du\u0020traitement", - "url": "classes/Code2VecService.html#method_getProcessingStatus" - }, { - "fqsen": "\\Code2VecService\u003A\u003AprocessInBackground\u0028\u0029", - "name": "processInBackground", - "summary": "Lance\u0020le\u0020traitement\u0020complet\u0020en\u0020arri\u00E8re\u002Dplan", - "url": "classes/Code2VecService.html#method_processInBackground" - }, { - "fqsen": "\\Code2VecService\u003A\u003A\u0024pythonPath", - "name": "pythonPath", - "summary": "", - "url": "classes/Code2VecService.html#property_pythonPath" - }, { - "fqsen": "\\Code2VecService\u003A\u003A\u0024scriptsPath", - "name": "scriptsPath", - "summary": "", - "url": "classes/Code2VecService.html#property_scriptsPath" - }, { - "fqsen": "\\Code2VecService\u003A\u003A\u0024dataPath", - "name": "dataPath", - "summary": "", - "url": "classes/Code2VecService.html#property_dataPath" - }, { - "fqsen": "\\Code2VecService\u003A\u003A\u0024modelsPath", - "name": "modelsPath", - "summary": "", - "url": "classes/Code2VecService.html#property_modelsPath" - }, { - "fqsen": "\\Database", - "name": "Database", - "summary": "Database\u0020class\u0020\u002D\u0020Database\u0020connection\u0020manager\nHandles\u0020PDO\u0020connection\u0020with\u0020configuration\u0020from\u0020.env\u0020file", - "url": "classes/Database.html" - }, { - "fqsen": "\\Database\u003A\u003AgetConnection\u0028\u0029", - "name": "getConnection", - "summary": "Get\u0020PDO\u0020database\u0020connection", - "url": "classes/Database.html#method_getConnection" - }, { - "fqsen": "\\Dataset", - "name": "Dataset", - "summary": "Mod\u00E8le\u0020pour\u0020g\u00E9rer\u0020les\u0020datasets\nUtilise\u0020la\u0020structure\u0020BD\u0020existante", - "url": "classes/Dataset.html" - }, { - "fqsen": "\\Dataset\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Dataset.html#method___construct" - }, { - "fqsen": "\\Dataset\u003A\u003AgetByTeacher\u0028\u0029", - "name": "getByTeacher", - "summary": "R\u00E9cup\u00E8re\u0020tous\u0020les\u0020datasets\u0020d\u0027un\u0020enseignant", - "url": "classes/Dataset.html#method_getByTeacher" - }, { - "fqsen": "\\Dataset\u003A\u003AgetById\u0028\u0029", - "name": "getById", - "summary": "R\u00E9cup\u00E8re\u0020un\u0020dataset\u0020par\u0020son\u0020ID", - "url": "classes/Dataset.html#method_getById" - }, { - "fqsen": "\\Dataset\u003A\u003AgetAttemptsWithVectors\u0028\u0029", - "name": "getAttemptsWithVectors", - "summary": "R\u00E9cup\u00E8re\u0020toutes\u0020les\u0020tentatives\u0020d\u0027un\u0020dataset\u0020avec\u0020vecteurs", - "url": "classes/Dataset.html#method_getAttemptsWithVectors" - }, { - "fqsen": "\\Dataset\u003A\u003AhasAccess\u0028\u0029", - "name": "hasAccess", - "summary": "V\u00E9rifie\u0020si\u0020l\u0027enseignant\u0020a\u0020acc\u00E8s\u0020au\u0020dataset", - "url": "classes/Dataset.html#method_hasAccess" - }, { - "fqsen": "\\Dataset\u003A\u003A\u0024pdo", - "name": "pdo", - "summary": "", - "url": "classes/Dataset.html#property_pdo" - }, { - "fqsen": "\\EmailService", - "name": "EmailService", - "summary": "EmailService\u0020class\u0020\u002D\u0020Email\u0020sending\u0020service\nHandles\u0020email\u0020sending\u0020with\u0020PHPMailer", - "url": "classes/EmailService.html" - }, { - "fqsen": "\\EmailService\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/EmailService.html#method___construct" - }, { - "fqsen": "\\EmailService\u003A\u003AconfigureMail\u0028\u0029", - "name": "configureMail", - "summary": "Configure\u0020PHPMailer\u0020with\u0020SMTP\u0020settings", - "url": "classes/EmailService.html#method_configureMail" - }, { - "fqsen": "\\EmailService\u003A\u003AsendVerificationCode\u0028\u0029", - "name": "sendVerificationCode", - "summary": "Send\u0020verification\u0020code\u0020email", - "url": "classes/EmailService.html#method_sendVerificationCode" - }, { - "fqsen": "\\EmailService\u003A\u003AsendResetLink\u0028\u0029", - "name": "sendResetLink", - "summary": "Send\u0020password\u0020reset\u0020link\u0020email", - "url": "classes/EmailService.html#method_sendResetLink" - }, { - "fqsen": "\\EmailService\u003A\u003A\u0024env", - "name": "env", - "summary": "", - "url": "classes/EmailService.html#property_env" - }, { - "fqsen": "\\Exercise", - "name": "Exercise", - "summary": "", - "url": "classes/Exercise.html" - }, { - "fqsen": "\\Exercise\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Exercise.html#method___construct" - }, { - "fqsen": "\\Exercise\u003A\u003Ahydrate\u0028\u0029", - "name": "hydrate", - "summary": "", - "url": "classes/Exercise.html#method_hydrate" - }, { - "fqsen": "\\Exercise\u003A\u003AgetExercisesByResourceId\u0028\u0029", - "name": "getExercisesByResourceId", - "summary": "", - "url": "classes/Exercise.html#method_getExercisesByResourceId" - }, { - "fqsen": "\\Exercise\u003A\u003AgetExerciseById\u0028\u0029", - "name": "getExerciseById", - "summary": "", - "url": "classes/Exercise.html#method_getExerciseById" - }, { - "fqsen": "\\Exercise\u003A\u003AgetByDataset\u0028\u0029", - "name": "getByDataset", - "summary": "R\u00E9cup\u00E8re\u0020tous\u0020les\u0020exercices\u0020d\u0027un\u0020dataset", - "url": "classes/Exercise.html#method_getByDataset" - }, { - "fqsen": "\\Exercise\u003A\u003AgetById\u0028\u0029", - "name": "getById", - "summary": "R\u00E9cup\u00E8re\u0020un\u0020exercice\u0020par\u0020son\u0020ID", - "url": "classes/Exercise.html#method_getById" - }, { - "fqsen": "\\Exercise\u003A\u003AgetTestCases\u0028\u0029", - "name": "getTestCases", - "summary": "R\u00E9cup\u00E8re\u0020les\u0020test\u0020cases\u0020d\u0027un\u0020exercice", - "url": "classes/Exercise.html#method_getTestCases" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024db", - "name": "db", - "summary": "", - "url": "classes/Exercise.html#property_db" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024exercise_id", - "name": "exercise_id", - "summary": "", - "url": "classes/Exercise.html#property_exercise_id" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024resource_id", - "name": "resource_id", - "summary": "", - "url": "classes/Exercise.html#property_resource_id" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024exo_name", - "name": "exo_name", - "summary": "", - "url": "classes/Exercise.html#property_exo_name" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024funcname", - "name": "funcname", - "summary": "", - "url": "classes/Exercise.html#property_funcname" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024solution", - "name": "solution", - "summary": "", - "url": "classes/Exercise.html#property_solution" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024description", - "name": "description", - "summary": "", - "url": "classes/Exercise.html#property_description" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024difficulte", - "name": "difficulte", - "summary": "", - "url": "classes/Exercise.html#property_difficulte" - }, { - "fqsen": "\\Exercise\u003A\u003A\u0024date_creation", - "name": "date_creation", - "summary": "", - "url": "classes/Exercise.html#property_date_creation" - }, { - "fqsen": "\\PendingRegistration", - "name": "PendingRegistration", - "summary": "PendingRegistration\u0020Model\u0020\u002D\u0020CRUD\u0020operations\u0020for\u0020pending\u0020registrations\u0020with\u0020PDO", - "url": "classes/PendingRegistration.html" - }, { - "fqsen": "\\PendingRegistration\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/PendingRegistration.html#method___construct" - }, { - "fqsen": "\\PendingRegistration\u003A\u003Acreate\u0028\u0029", - "name": "create", - "summary": "CREATE\u0020\u002D\u0020Create\u0020a\u0020new\u0020pending\u0020registration", - "url": "classes/PendingRegistration.html#method_create" - }, { - "fqsen": "\\PendingRegistration\u003A\u003AfindByEmail\u0028\u0029", - "name": "findByEmail", - "summary": "READ\u0020\u002D\u0020Find\u0020a\u0020pending\u0020registration\u0020by\u0020email", - "url": "classes/PendingRegistration.html#method_findByEmail" - }, { - "fqsen": "\\PendingRegistration\u003A\u003AemailExists\u0028\u0029", - "name": "emailExists", - "summary": "READ\u0020\u002D\u0020Check\u0020if\u0020an\u0020email\u0020exists\u0020in\u0020pending\u0020registrations", - "url": "classes/PendingRegistration.html#method_emailExists" - }, { - "fqsen": "\\PendingRegistration\u003A\u003AupdateCode\u0028\u0029", - "name": "updateCode", - "summary": "UPDATE\u0020\u002D\u0020Update\u0020verification\u0020code", - "url": "classes/PendingRegistration.html#method_updateCode" - }, { - "fqsen": "\\PendingRegistration\u003A\u003Adelete\u0028\u0029", - "name": "delete", - "summary": "DELETE\u0020\u002D\u0020Delete\u0020a\u0020pending\u0020registration\u0020by\u0020email", - "url": "classes/PendingRegistration.html#method_delete" - }, { - "fqsen": "\\PendingRegistration\u003A\u003AdeleteExpired\u0028\u0029", - "name": "deleteExpired", - "summary": "DELETE\u0020\u002D\u0020Delete\u0020expired\u0020pending\u0020registrations\u0020\u0028older\u0020than\u002015\u0020minutes\u0029", - "url": "classes/PendingRegistration.html#method_deleteExpired" - }, { - "fqsen": "\\PendingRegistration\u003A\u003AverifyCode\u0028\u0029", - "name": "verifyCode", - "summary": "Verify\u0020verification\u0020code", - "url": "classes/PendingRegistration.html#method_verifyCode" - }, { - "fqsen": "\\PendingRegistration\u003A\u003A\u0024pdo", - "name": "pdo", - "summary": "", - "url": "classes/PendingRegistration.html#property_pdo" - }, { - "fqsen": "\\Resource", - "name": "Resource", - "summary": "", - "url": "classes/Resource.html" - }, { - "fqsen": "\\Resource\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Resource.html#method___construct" - }, { - "fqsen": "\\Resource\u003A\u003Ahydrate\u0028\u0029", - "name": "hydrate", - "summary": "", - "url": "classes/Resource.html#method_hydrate" - }, { - "fqsen": "\\Resource\u003A\u003AgetAllAccessibleResources\u0028\u0029", - "name": "getAllAccessibleResources", - "summary": "", - "url": "classes/Resource.html#method_getAllAccessibleResources" - }, { - "fqsen": "\\Resource\u003A\u003AgetResourceById\u0028\u0029", - "name": "getResourceById", - "summary": "", - "url": "classes/Resource.html#method_getResourceById" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024db", - "name": "db", - "summary": "", - "url": "classes/Resource.html#property_db" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024resource_id", - "name": "resource_id", - "summary": "", - "url": "classes/Resource.html#property_resource_id" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024owner_user_id", - "name": "owner_user_id", - "summary": "", - "url": "classes/Resource.html#property_owner_user_id" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024resource_name", - "name": "resource_name", - "summary": "", - "url": "classes/Resource.html#property_resource_name" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024description", - "name": "description", - "summary": "", - "url": "classes/Resource.html#property_description" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024image_path", - "name": "image_path", - "summary": "", - "url": "classes/Resource.html#property_image_path" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024date_creation", - "name": "date_creation", - "summary": "", - "url": "classes/Resource.html#property_date_creation" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024owner_firstname", - "name": "owner_firstname", - "summary": "", - "url": "classes/Resource.html#property_owner_firstname" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024owner_lastname", - "name": "owner_lastname", - "summary": "", - "url": "classes/Resource.html#property_owner_lastname" - }, { - "fqsen": "\\Resource\u003A\u003A\u0024access_type", - "name": "access_type", - "summary": "", - "url": "classes/Resource.html#property_access_type" - }, { - "fqsen": "\\Student", - "name": "Student", - "summary": "Student\u0020Model\u0020\u002D\u0020Handles\u0020student\u0020data\u0020from\u0020JSON\u0020file", - "url": "classes/Student.html" - }, { - "fqsen": "\\Student\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/Student.html#method___construct" - }, { - "fqsen": "\\Student\u003A\u003AgetAllAttempts\u0028\u0029", - "name": "getAllAttempts", - "summary": "Get\u0020all\u0020attempts\u0020from\u0020JSON\u0020file", - "url": "classes/Student.html#method_getAllAttempts" - }, { - "fqsen": "\\Student\u003A\u003AloadExercises\u0028\u0029", - "name": "loadExercises", - "summary": "Load\u0020exercises\u0020data\u0020from\u0020JSON\u0020file", - "url": "classes/Student.html#method_loadExercises" - }, { - "fqsen": "\\Student\u003A\u003AgetExerciseByName\u0028\u0029", - "name": "getExerciseByName", - "summary": "Get\u0020exercise\u0020details\u0020by\u0020exercise\u0020name", - "url": "classes/Student.html#method_getExerciseByName" - }, { - "fqsen": "\\Student\u003A\u003AgetAllStudents\u0028\u0029", - "name": "getAllStudents", - "summary": "Get\u0020all\u0020unique\u0020students\u0020\u0028users\u0029", - "url": "classes/Student.html#method_getAllStudents" - }, { - "fqsen": "\\Student\u003A\u003AgetPaginatedStudents\u0028\u0029", - "name": "getPaginatedStudents", - "summary": "Get\u0020paginated\u0020students\u0020\u0028unique\u0020users\u0029", - "url": "classes/Student.html#method_getPaginatedStudents" - }, { - "fqsen": "\\Student\u003A\u003AgetStudentAttempts\u0028\u0029", - "name": "getStudentAttempts", - "summary": "Get\u0020all\u0020attempts\u0020for\u0020a\u0020specific\u0020student\u0020\u0028user\u0029", - "url": "classes/Student.html#method_getStudentAttempts" - }, { - "fqsen": "\\Student\u003A\u003AgetStudentStats\u0028\u0029", - "name": "getStudentStats", - "summary": "Get\u0020statistics\u0020for\u0020a\u0020student", - "url": "classes/Student.html#method_getStudentStats" - }, { - "fqsen": "\\Student\u003A\u003A\u0024dataFile", - "name": "dataFile", - "summary": "", - "url": "classes/Student.html#property_dataFile" - }, { - "fqsen": "\\Student\u003A\u003A\u0024exercisesFile", - "name": "exercisesFile", - "summary": "", - "url": "classes/Student.html#property_exercisesFile" - }, { - "fqsen": "\\Student\u003A\u003A\u0024exercisesData", - "name": "exercisesData", - "summary": "", - "url": "classes/Student.html#property_exercisesData" - }, { - "fqsen": "\\User", - "name": "User", - "summary": "User\u0020Model\u0020\u002D\u0020CRUD\u0020operations\u0020for\u0020users\u0020with\u0020PDO", - "url": "classes/User.html" - }, { - "fqsen": "\\User\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/User.html#method___construct" - }, { - "fqsen": "\\User\u003A\u003Acreate\u0028\u0029", - "name": "create", - "summary": "CREATE\u0020\u002D\u0020Create\u0020a\u0020new\u0020user", - "url": "classes/User.html#method_create" - }, { - "fqsen": "\\User\u003A\u003AfindByEmail\u0028\u0029", - "name": "findByEmail", - "summary": "READ\u0020\u002D\u0020Find\u0020a\u0020user\u0020by\u0020email", - "url": "classes/User.html#method_findByEmail" - }, { - "fqsen": "\\User\u003A\u003AfindById\u0028\u0029", - "name": "findById", - "summary": "READ\u0020\u002D\u0020Find\u0020a\u0020user\u0020by\u0020ID", - "url": "classes/User.html#method_findById" - }, { - "fqsen": "\\User\u003A\u003AemailExists\u0028\u0029", - "name": "emailExists", - "summary": "READ\u0020\u002D\u0020Check\u0020if\u0020an\u0020email\u0020exists", - "url": "classes/User.html#method_emailExists" - }, { - "fqsen": "\\User\u003A\u003AfindByResetToken\u0028\u0029", - "name": "findByResetToken", - "summary": "READ\u0020\u002D\u0020Find\u0020a\u0020user\u0020by\u0020reset\u0020token", - "url": "classes/User.html#method_findByResetToken" - }, { - "fqsen": "\\User\u003A\u003AupdatePassword\u0028\u0029", - "name": "updatePassword", - "summary": "UPDATE\u0020\u002D\u0020Update\u0020user\u0027s\u0020password", - "url": "classes/User.html#method_updatePassword" - }, { - "fqsen": "\\User\u003A\u003AsetResetToken\u0028\u0029", - "name": "setResetToken", - "summary": "UPDATE\u0020\u002D\u0020Set\u0020password\u0020reset\u0020token", - "url": "classes/User.html#method_setResetToken" - }, { - "fqsen": "\\User\u003A\u003AclearResetToken\u0028\u0029", - "name": "clearResetToken", - "summary": "UPDATE\u0020\u002D\u0020Clear\u0020password\u0020reset\u0020token", - "url": "classes/User.html#method_clearResetToken" - }, { - "fqsen": "\\User\u003A\u003Aupdate\u0028\u0029", - "name": "update", - "summary": "UPDATE\u0020\u002D\u0020Update\u0020user\u0020information", - "url": "classes/User.html#method_update" - }, { - "fqsen": "\\User\u003A\u003Adelete\u0028\u0029", - "name": "delete", - "summary": "DELETE\u0020\u002D\u0020Delete\u0020a\u0020user", - "url": "classes/User.html#method_delete" - }, { - "fqsen": "\\User\u003A\u003AverifyCredentials\u0028\u0029", - "name": "verifyCredentials", - "summary": "Verify\u0020user\u0020credentials\u0020for\u0020login", - "url": "classes/User.html#method_verifyCredentials" - }, { - "fqsen": "\\User\u003A\u003A\u0024pdo", - "name": "pdo", - "summary": "", - "url": "classes/User.html#property_pdo" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator", - "name": "DSNConfigurator", - "summary": "Configure\u0020PHPMailer\u0020with\u0020DSN\u0020string.", - "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003Amailer\u0028\u0029", - "name": "mailer", - "summary": "Create\u0020new\u0020PHPMailer\u0020instance\u0020configured\u0020by\u0020DSN.", - "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_mailer" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003Aconfigure\u0028\u0029", - "name": "configure", - "summary": "Configure\u0020PHPMailer\u0020instance\u0020with\u0020DSN\u0020string.", - "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_configure" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AparseDSN\u0028\u0029", - "name": "parseDSN", - "summary": "Parse\u0020DSN\u0020string.", - "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_parseDSN" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AapplyConfig\u0028\u0029", - "name": "applyConfig", - "summary": "Apply\u0020configuration\u0020to\u0020mailer.", - "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_applyConfig" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AconfigureSMTP\u0028\u0029", - "name": "configureSMTP", - "summary": "Configure\u0020SMTP.", - "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_configureSMTP" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AconfigureOptions\u0028\u0029", - "name": "configureOptions", - "summary": "Configure\u0020options.", - "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_configureOptions" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AparseUrl\u0028\u0029", - "name": "parseUrl", - "summary": "Parse\u0020a\u0020URL.", - "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_parseUrl" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\Exception", - "name": "Exception", - "summary": "PHPMailer\u0020exception\u0020handler.", - "url": "classes/PHPMailer-PHPMailer-Exception.html" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\Exception\u003A\u003AerrorMessage\u0028\u0029", - "name": "errorMessage", - "summary": "Prettify\u0020error\u0020message\u0020output.", - "url": "classes/PHPMailer-PHPMailer-Exception.html#method_errorMessage" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth", - "name": "OAuth", - "summary": "OAuth\u0020\u002D\u0020OAuth2\u0020authentication\u0020wrapper\u0020class.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "OAuth\u0020constructor.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#method___construct" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003AgetGrant\u0028\u0029", - "name": "getGrant", - "summary": "Get\u0020a\u0020new\u0020RefreshToken.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#method_getGrant" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003AgetToken\u0028\u0029", - "name": "getToken", - "summary": "Get\u0020a\u0020new\u0020AccessToken.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#method_getToken" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003AgetOauth64\u0028\u0029", - "name": "getOauth64", - "summary": "Generate\u0020a\u0020base64\u002Dencoded\u0020OAuth\u0020token.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#method_getOauth64" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024provider", - "name": "provider", - "summary": "An\u0020instance\u0020of\u0020the\u0020League\u0020OAuth\u0020Client\u0020Provider.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_provider" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthToken", - "name": "oauthToken", - "summary": "The\u0020current\u0020OAuth\u0020access\u0020token.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthToken" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthUserEmail", - "name": "oauthUserEmail", - "summary": "The\u0020user\u0027s\u0020email\u0020address,\u0020usually\u0020used\u0020as\u0020the\u0020login\u0020ID\nand\u0020also\u0020the\u0020from\u0020address\u0020when\u0020sending\u0020email.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthUserEmail" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthClientSecret", - "name": "oauthClientSecret", - "summary": "The\u0020client\u0020secret,\u0020generated\u0020in\u0020the\u0020app\u0020definition\u0020of\u0020the\u0020service\u0020you\u0027re\u0020connecting\u0020to.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthClientSecret" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthClientId", - "name": "oauthClientId", - "summary": "The\u0020client\u0020ID,\u0020generated\u0020in\u0020the\u0020app\u0020definition\u0020of\u0020the\u0020service\u0020you\u0027re\u0020connecting\u0020to.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthClientId" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthRefreshToken", - "name": "oauthRefreshToken", - "summary": "The\u0020refresh\u0020token,\u0020used\u0020to\u0020obtain\u0020new\u0020AccessTokens.", - "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthRefreshToken" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuthTokenProvider", - "name": "OAuthTokenProvider", - "summary": "OAuthTokenProvider\u0020\u002D\u0020OAuth2\u0020token\u0020provider\u0020interface.", - "url": "classes/PHPMailer-PHPMailer-OAuthTokenProvider.html" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\OAuthTokenProvider\u003A\u003AgetOauth64\u0028\u0029", - "name": "getOauth64", - "summary": "Generate\u0020a\u0020base64\u002Dencoded\u0020OAuth\u0020token\u0020ensuring\u0020that\u0020the\u0020access\u0020token\u0020has\u0020not\u0020expired.", - "url": "classes/PHPMailer-PHPMailer-OAuthTokenProvider.html#method_getOauth64" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer", - "name": "PHPMailer", - "summary": "PHPMailer\u0020\u002D\u0020PHP\u0020email\u0020creation\u0020and\u0020transport\u0020class.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "Constructor.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method___construct" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A__destruct\u0028\u0029", - "name": "__destruct", - "summary": "Destructor.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method___destruct" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AmailPassthru\u0028\u0029", - "name": "mailPassthru", - "summary": "Call\u0020mail\u0028\u0029\u0020in\u0020a\u0020safe_mode\u002Daware\u0020fashion.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_mailPassthru" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Aedebug\u0028\u0029", - "name": "edebug", - "summary": "Output\u0020debugging\u0020info\u0020via\u0020a\u0020user\u002Ddefined\u0020method.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_edebug" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisHTML\u0028\u0029", - "name": "isHTML", - "summary": "Sets\u0020message\u0020type\u0020to\u0020HTML\u0020or\u0020plain.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isHTML" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisSMTP\u0028\u0029", - "name": "isSMTP", - "summary": "Send\u0020messages\u0020using\u0020SMTP.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isSMTP" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisMail\u0028\u0029", - "name": "isMail", - "summary": "Send\u0020messages\u0020using\u0020PHP\u0027s\u0020mail\u0028\u0029\u0020function.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isMail" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisSendmail\u0028\u0029", - "name": "isSendmail", - "summary": "Send\u0020messages\u0020using\u0020\u0024Sendmail.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isSendmail" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisQmail\u0028\u0029", - "name": "isQmail", - "summary": "Send\u0020messages\u0020using\u0020qmail.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isQmail" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddAddress\u0028\u0029", - "name": "addAddress", - "summary": "Add\u0020a\u0020\u0022To\u0022\u0020address.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addAddress" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddCC\u0028\u0029", - "name": "addCC", - "summary": "Add\u0020a\u0020\u0022CC\u0022\u0020address.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addCC" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddBCC\u0028\u0029", - "name": "addBCC", - "summary": "Add\u0020a\u0020\u0022BCC\u0022\u0020address.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addBCC" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddReplyTo\u0028\u0029", - "name": "addReplyTo", - "summary": "Add\u0020a\u0020\u0022Reply\u002DTo\u0022\u0020address.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addReplyTo" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddOrEnqueueAnAddress\u0028\u0029", - "name": "addOrEnqueueAnAddress", - "summary": "Add\u0020an\u0020address\u0020to\u0020one\u0020of\u0020the\u0020recipient\u0020arrays\u0020or\u0020to\u0020the\u0020ReplyTo\u0020array.\u0020Because\u0020PHPMailer\ncan\u0027t\u0020validate\u0020addresses\u0020with\u0020an\u0020IDN\u0020without\u0020knowing\u0020the\u0020PHPMailer\u003A\u003A\u0024CharSet\u0020\u0028that\u0020can\u0020still\nbe\u0020modified\u0020after\u0020calling\u0020this\u0020function\u0029,\u0020addition\u0020of\u0020such\u0020addresses\u0020is\u0020delayed\u0020until\u0020send\u0028\u0029.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addOrEnqueueAnAddress" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetBoundaries\u0028\u0029", - "name": "setBoundaries", - "summary": "Set\u0020the\u0020boundaries\u0020to\u0020use\u0020for\u0020delimiting\u0020MIME\u0020parts.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setBoundaries" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddAnAddress\u0028\u0029", - "name": "addAnAddress", - "summary": "Add\u0020an\u0020address\u0020to\u0020one\u0020of\u0020the\u0020recipient\u0020arrays\u0020or\u0020to\u0020the\u0020ReplyTo\u0020array.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addAnAddress" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AparseAddresses\u0028\u0029", - "name": "parseAddresses", - "summary": "Parse\u0020and\u0020validate\u0020a\u0020string\u0020containing\u0020one\u0020or\u0020more\u0020RFC822\u002Dstyle\u0020comma\u002Dseparated\u0020email\u0020addresses\nof\u0020the\u0020form\u0020\u0022display\u0020name\u0020\u003Caddress\u003E\u0022\u0020into\u0020an\u0020array\u0020of\u0020name\/address\u0020pairs.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_parseAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AparseSimplerAddresses\u0028\u0029", - "name": "parseSimplerAddresses", - "summary": "Parse\u0020a\u0020string\u0020containing\u0020one\u0020or\u0020more\u0020RFC822\u002Dstyle\u0020comma\u002Dseparated\u0020email\u0020addresses\nwith\u0020the\u0020form\u0020\u0022display\u0020name\u0020\u003Caddress\u003E\u0022\u0020into\u0020an\u0020array\u0020of\u0020name\/address\u0020pairs.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_parseSimplerAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetFrom\u0028\u0029", - "name": "setFrom", - "summary": "Set\u0020the\u0020From\u0020and\u0020FromName\u0020properties.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setFrom" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetLastMessageID\u0028\u0029", - "name": "getLastMessageID", - "summary": "Return\u0020the\u0020Message\u002DID\u0020header\u0020of\u0020the\u0020last\u0020email.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getLastMessageID" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AvalidateAddress\u0028\u0029", - "name": "validateAddress", - "summary": "Check\u0020that\u0020a\u0020string\u0020looks\u0020like\u0020an\u0020email\u0020address.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_validateAddress" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AidnSupported\u0028\u0029", - "name": "idnSupported", - "summary": "Tells\u0020whether\u0020IDNs\u0020\u0028Internationalized\u0020Domain\u0020Names\u0029\u0020are\u0020supported\u0020or\u0020not.\u0020This\u0020requires\u0020the\n\u0060intl\u0060\u0020and\u0020\u0060mbstring\u0060\u0020PHP\u0020extensions.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_idnSupported" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ApunyencodeAddress\u0028\u0029", - "name": "punyencodeAddress", - "summary": "Converts\u0020IDN\u0020in\u0020given\u0020email\u0020address\u0020to\u0020its\u0020ASCII\u0020form,\u0020also\u0020known\u0020as\u0020punycode,\u0020if\u0020possible.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_punyencodeAddress" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Asend\u0028\u0029", - "name": "send", - "summary": "Create\u0020a\u0020message\u0020and\u0020send\u0020it.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_send" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ApreSend\u0028\u0029", - "name": "preSend", - "summary": "Prepare\u0020a\u0020message\u0020for\u0020sending.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_preSend" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ApostSend\u0028\u0029", - "name": "postSend", - "summary": "Actually\u0020send\u0020a\u0020message\u0020via\u0020the\u0020selected\u0020mechanism.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_postSend" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsendmailSend\u0028\u0029", - "name": "sendmailSend", - "summary": "Send\u0020mail\u0020using\u0020the\u0020\u0024Sendmail\u0020program.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_sendmailSend" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisShellSafe\u0028\u0029", - "name": "isShellSafe", - "summary": "Fix\u0020CVE\u002D2016\u002D10033\u0020and\u0020CVE\u002D2016\u002D10045\u0020by\u0020disallowing\u0020potentially\u0020unsafe\u0020shell\u0020characters.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isShellSafe" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisPermittedPath\u0028\u0029", - "name": "isPermittedPath", - "summary": "Check\u0020whether\u0020a\u0020file\u0020path\u0020is\u0020of\u0020a\u0020permitted\u0020type.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isPermittedPath" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AfileIsAccessible\u0028\u0029", - "name": "fileIsAccessible", - "summary": "Check\u0020whether\u0020a\u0020file\u0020path\u0020is\u0020safe,\u0020accessible,\u0020and\u0020readable.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_fileIsAccessible" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AmailSend\u0028\u0029", - "name": "mailSend", - "summary": "Send\u0020mail\u0020using\u0020the\u0020PHP\u0020mail\u0028\u0029\u0020function.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_mailSend" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetSMTPInstance\u0028\u0029", - "name": "getSMTPInstance", - "summary": "Get\u0020an\u0020instance\u0020to\u0020use\u0020for\u0020SMTP\u0020operations.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getSMTPInstance" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetSMTPInstance\u0028\u0029", - "name": "setSMTPInstance", - "summary": "Provide\u0020an\u0020instance\u0020to\u0020use\u0020for\u0020SMTP\u0020operations.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setSMTPInstance" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetSMTPXclientAttribute\u0028\u0029", - "name": "setSMTPXclientAttribute", - "summary": "Provide\u0020SMTP\u0020XCLIENT\u0020attributes", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setSMTPXclientAttribute" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetSMTPXclientAttributes\u0028\u0029", - "name": "getSMTPXclientAttributes", - "summary": "Get\u0020SMTP\u0020XCLIENT\u0020attributes", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getSMTPXclientAttributes" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsmtpSend\u0028\u0029", - "name": "smtpSend", - "summary": "Send\u0020mail\u0020via\u0020SMTP.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_smtpSend" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsmtpConnect\u0028\u0029", - "name": "smtpConnect", - "summary": "Initiate\u0020a\u0020connection\u0020to\u0020an\u0020SMTP\u0020server.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_smtpConnect" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsmtpClose\u0028\u0029", - "name": "smtpClose", - "summary": "Close\u0020the\u0020active\u0020SMTP\u0020session\u0020if\u0020one\u0020exists.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_smtpClose" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetLanguage\u0028\u0029", - "name": "setLanguage", - "summary": "Set\u0020the\u0020language\u0020for\u0020error\u0020messages.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setLanguage" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetTranslations\u0028\u0029", - "name": "getTranslations", - "summary": "Get\u0020the\u0020array\u0020of\u0020strings\u0020for\u0020the\u0020current\u0020language.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getTranslations" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddrAppend\u0028\u0029", - "name": "addrAppend", - "summary": "Create\u0020recipient\u0020headers.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addrAppend" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddrFormat\u0028\u0029", - "name": "addrFormat", - "summary": "Format\u0020an\u0020address\u0020for\u0020use\u0020in\u0020a\u0020message\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addrFormat" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AwrapText\u0028\u0029", - "name": "wrapText", - "summary": "Word\u002Dwrap\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_wrapText" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Autf8CharBoundary\u0028\u0029", - "name": "utf8CharBoundary", - "summary": "Find\u0020the\u0020last\u0020character\u0020boundary\u0020prior\u0020to\u0020\u0024maxLength\u0020in\u0020a\u0020utf\u002D8\nquoted\u002Dprintable\u0020encoded\u0020string.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_utf8CharBoundary" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetWordWrap\u0028\u0029", - "name": "setWordWrap", - "summary": "Apply\u0020word\u0020wrapping\u0020to\u0020the\u0020message\u0020body.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setWordWrap" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AcreateHeader\u0028\u0029", - "name": "createHeader", - "summary": "Assemble\u0020message\u0020headers.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_createHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetMailMIME\u0028\u0029", - "name": "getMailMIME", - "summary": "Get\u0020the\u0020message\u0020MIME\u0020type\u0020headers.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getMailMIME" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetSentMIMEMessage\u0028\u0029", - "name": "getSentMIMEMessage", - "summary": "Returns\u0020the\u0020whole\u0020MIME\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getSentMIMEMessage" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgenerateId\u0028\u0029", - "name": "generateId", - "summary": "Create\u0020a\u0020unique\u0020ID\u0020to\u0020use\u0020for\u0020boundaries.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_generateId" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AcreateBody\u0028\u0029", - "name": "createBody", - "summary": "Assemble\u0020the\u0020message\u0020body.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_createBody" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetBoundaries\u0028\u0029", - "name": "getBoundaries", - "summary": "Get\u0020the\u0020boundaries\u0020that\u0020this\u0020message\u0020will\u0020use", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getBoundaries" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetBoundary\u0028\u0029", - "name": "getBoundary", - "summary": "Return\u0020the\u0020start\u0020of\u0020a\u0020message\u0020boundary.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getBoundary" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AendBoundary\u0028\u0029", - "name": "endBoundary", - "summary": "Return\u0020the\u0020end\u0020of\u0020a\u0020message\u0020boundary.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_endBoundary" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetMessageType\u0028\u0029", - "name": "setMessageType", - "summary": "Set\u0020the\u0020message\u0020type.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setMessageType" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AheaderLine\u0028\u0029", - "name": "headerLine", - "summary": "Format\u0020a\u0020header\u0020line.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_headerLine" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AtextLine\u0028\u0029", - "name": "textLine", - "summary": "Return\u0020a\u0020formatted\u0020mail\u0020line.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_textLine" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddAttachment\u0028\u0029", - "name": "addAttachment", - "summary": "Add\u0020an\u0020attachment\u0020from\u0020a\u0020path\u0020on\u0020the\u0020filesystem.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addAttachment" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetAttachments\u0028\u0029", - "name": "getAttachments", - "summary": "Return\u0020the\u0020array\u0020of\u0020attachments.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getAttachments" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AattachAll\u0028\u0029", - "name": "attachAll", - "summary": "Attach\u0020all\u0020file,\u0020string,\u0020and\u0020binary\u0020attachments\u0020to\u0020the\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_attachAll" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeFile\u0028\u0029", - "name": "encodeFile", - "summary": "Encode\u0020a\u0020file\u0020attachment\u0020in\u0020requested\u0020format.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeFile" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeString\u0028\u0029", - "name": "encodeString", - "summary": "Encode\u0020a\u0020string\u0020in\u0020requested\u0020format.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeString" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeHeader\u0028\u0029", - "name": "encodeHeader", - "summary": "Encode\u0020a\u0020header\u0020value\u0020\u0028not\u0020including\u0020its\u0020label\u0029\u0020optimally.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AhasMultiBytes\u0028\u0029", - "name": "hasMultiBytes", - "summary": "Check\u0020if\u0020a\u0020string\u0020contains\u0020multi\u002Dbyte\u0020characters.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_hasMultiBytes" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Ahas8bitChars\u0028\u0029", - "name": "has8bitChars", - "summary": "Does\u0020a\u0020string\u0020contain\u0020any\u00208\u002Dbit\u0020chars\u0020\u0028in\u0020any\u0020charset\u0029\u003F", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_has8bitChars" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Abase64EncodeWrapMB\u0028\u0029", - "name": "base64EncodeWrapMB", - "summary": "Encode\u0020and\u0020wrap\u0020long\u0020multibyte\u0020strings\u0020for\u0020mail\u0020headers\nwithout\u0020breaking\u0020lines\u0020within\u0020a\u0020character.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_base64EncodeWrapMB" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeQP\u0028\u0029", - "name": "encodeQP", - "summary": "Encode\u0020a\u0020string\u0020in\u0020quoted\u002Dprintable\u0020format.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeQP" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeQ\u0028\u0029", - "name": "encodeQ", - "summary": "Encode\u0020a\u0020string\u0020using\u0020Q\u0020encoding.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeQ" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddStringAttachment\u0028\u0029", - "name": "addStringAttachment", - "summary": "Add\u0020a\u0020string\u0020or\u0020binary\u0020attachment\u0020\u0028non\u002Dfilesystem\u0029.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addStringAttachment" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddEmbeddedImage\u0028\u0029", - "name": "addEmbeddedImage", - "summary": "Add\u0020an\u0020embedded\u0020\u0028inline\u0029\u0020attachment\u0020from\u0020a\u0020file.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addEmbeddedImage" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddStringEmbeddedImage\u0028\u0029", - "name": "addStringEmbeddedImage", - "summary": "Add\u0020an\u0020embedded\u0020stringified\u0020attachment.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addStringEmbeddedImage" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AvalidateEncoding\u0028\u0029", - "name": "validateEncoding", - "summary": "Validate\u0020encodings.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_validateEncoding" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AcidExists\u0028\u0029", - "name": "cidExists", - "summary": "Check\u0020if\u0020an\u0020embedded\u0020attachment\u0020is\u0020present\u0020with\u0020this\u0020cid.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_cidExists" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AinlineImageExists\u0028\u0029", - "name": "inlineImageExists", - "summary": "Check\u0020if\u0020an\u0020inline\u0020attachment\u0020is\u0020present.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_inlineImageExists" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AattachmentExists\u0028\u0029", - "name": "attachmentExists", - "summary": "Check\u0020if\u0020an\u0020attachment\u0020\u0028non\u002Dinline\u0029\u0020is\u0020present.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_attachmentExists" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AalternativeExists\u0028\u0029", - "name": "alternativeExists", - "summary": "Check\u0020if\u0020this\u0020message\u0020has\u0020an\u0020alternative\u0020body\u0020set.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_alternativeExists" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearQueuedAddresses\u0028\u0029", - "name": "clearQueuedAddresses", - "summary": "Clear\u0020queued\u0020addresses\u0020of\u0020given\u0020kind.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearQueuedAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearAddresses\u0028\u0029", - "name": "clearAddresses", - "summary": "Clear\u0020all\u0020To\u0020recipients.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearCCs\u0028\u0029", - "name": "clearCCs", - "summary": "Clear\u0020all\u0020CC\u0020recipients.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearCCs" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearBCCs\u0028\u0029", - "name": "clearBCCs", - "summary": "Clear\u0020all\u0020BCC\u0020recipients.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearBCCs" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearReplyTos\u0028\u0029", - "name": "clearReplyTos", - "summary": "Clear\u0020all\u0020ReplyTo\u0020recipients.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearReplyTos" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearAllRecipients\u0028\u0029", - "name": "clearAllRecipients", - "summary": "Clear\u0020all\u0020recipient\u0020types.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearAllRecipients" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearAttachments\u0028\u0029", - "name": "clearAttachments", - "summary": "Clear\u0020all\u0020filesystem,\u0020string,\u0020and\u0020binary\u0020attachments.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearAttachments" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearCustomHeaders\u0028\u0029", - "name": "clearCustomHeaders", - "summary": "Clear\u0020all\u0020custom\u0020headers.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearCustomHeaders" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearCustomHeader\u0028\u0029", - "name": "clearCustomHeader", - "summary": "Clear\u0020a\u0020specific\u0020custom\u0020header\u0020by\u0020name\u0020or\u0020name\u0020and\u0020value.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearCustomHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AreplaceCustomHeader\u0028\u0029", - "name": "replaceCustomHeader", - "summary": "Replace\u0020a\u0020custom\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_replaceCustomHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetError\u0028\u0029", - "name": "setError", - "summary": "Add\u0020an\u0020error\u0020message\u0020to\u0020the\u0020error\u0020container.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setError" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ArfcDate\u0028\u0029", - "name": "rfcDate", - "summary": "Return\u0020an\u0020RFC\u0020822\u0020formatted\u0020date.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_rfcDate" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AserverHostname\u0028\u0029", - "name": "serverHostname", - "summary": "Get\u0020the\u0020server\u0020hostname.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_serverHostname" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisValidHost\u0028\u0029", - "name": "isValidHost", - "summary": "Validate\u0020whether\u0020a\u0020string\u0020contains\u0020a\u0020valid\u0020value\u0020to\u0020use\u0020as\u0020a\u0020hostname\u0020or\u0020IP\u0020address.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isValidHost" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddressHasUnicodeLocalPart\u0028\u0029", - "name": "addressHasUnicodeLocalPart", - "summary": "Check\u0020whether\u0020the\u0020supplied\u0020address\u0020uses\u0020Unicode\u0020in\u0020the\u0020local\u0020part.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addressHasUnicodeLocalPart" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AanyAddressHasUnicodeLocalPart\u0028\u0029", - "name": "anyAddressHasUnicodeLocalPart", - "summary": "Check\u0020whether\u0020any\u0020of\u0020the\u0020supplied\u0020addresses\u0020use\u0020Unicode\u0020in\u0020the\u0020local\u0020part.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_anyAddressHasUnicodeLocalPart" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AneedsSMTPUTF8\u0028\u0029", - "name": "needsSMTPUTF8", - "summary": "Check\u0020whether\u0020the\u0020message\u0020requires\u0020SMTPUTF8\u0020based\u0020on\u0020what\u0027s\u0020known\u0020so\u0020far.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_needsSMTPUTF8" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Alang\u0028\u0029", - "name": "lang", - "summary": "Get\u0020an\u0020error\u0020message\u0020in\u0020the\u0020current\u0020language.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_lang" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetSmtpErrorMessage\u0028\u0029", - "name": "getSmtpErrorMessage", - "summary": "Build\u0020an\u0020error\u0020message\u0020starting\u0020with\u0020a\u0020generic\u0020one\u0020and\u0020adding\u0020details\u0020if\u0020possible.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getSmtpErrorMessage" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisError\u0028\u0029", - "name": "isError", - "summary": "Check\u0020if\u0020an\u0020error\u0020occurred.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isError" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddCustomHeader\u0028\u0029", - "name": "addCustomHeader", - "summary": "Add\u0020a\u0020custom\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addCustomHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetCustomHeaders\u0028\u0029", - "name": "getCustomHeaders", - "summary": "Returns\u0020all\u0020custom\u0020headers.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getCustomHeaders" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AmsgHTML\u0028\u0029", - "name": "msgHTML", - "summary": "Create\u0020a\u0020message\u0020body\u0020from\u0020an\u0020HTML\u0020string.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_msgHTML" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Ahtml2text\u0028\u0029", - "name": "html2text", - "summary": "Convert\u0020an\u0020HTML\u0020string\u0020into\u0020plain\u0020text.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_html2text" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A_mime_types\u0028\u0029", - "name": "_mime_types", - "summary": "Get\u0020the\u0020MIME\u0020type\u0020for\u0020a\u0020file\u0020extension.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method__mime_types" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AfilenameToType\u0028\u0029", - "name": "filenameToType", - "summary": "Map\u0020a\u0020file\u0020name\u0020to\u0020a\u0020MIME\u0020type.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_filenameToType" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Amb_pathinfo\u0028\u0029", - "name": "mb_pathinfo", - "summary": "Multi\u002Dbyte\u002Dsafe\u0020pathinfo\u0020replacement.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_mb_pathinfo" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Aset\u0028\u0029", - "name": "set", - "summary": "Set\u0020or\u0020reset\u0020instance\u0020properties.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_set" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsecureHeader\u0028\u0029", - "name": "secureHeader", - "summary": "Strip\u0020newlines\u0020to\u0020prevent\u0020header\u0020injection.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_secureHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AnormalizeBreaks\u0028\u0029", - "name": "normalizeBreaks", - "summary": "Normalize\u0020line\u0020breaks\u0020in\u0020a\u0020string.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_normalizeBreaks" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AstripTrailingWSP\u0028\u0029", - "name": "stripTrailingWSP", - "summary": "Remove\u0020trailing\u0020whitespace\u0020from\u0020a\u0020string.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_stripTrailingWSP" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AstripTrailingBreaks\u0028\u0029", - "name": "stripTrailingBreaks", - "summary": "Strip\u0020trailing\u0020line\u0020breaks\u0020from\u0020a\u0020string.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_stripTrailingBreaks" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetLE\u0028\u0029", - "name": "getLE", - "summary": "Return\u0020the\u0020current\u0020line\u0020break\u0020format\u0020string.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getLE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetLE\u0028\u0029", - "name": "setLE", - "summary": "Set\u0020the\u0020line\u0020break\u0020format\u0020string,\u0020e.g.\u0020\u0022\\r\\n\u0022.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setLE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Asign\u0028\u0029", - "name": "sign", - "summary": "Set\u0020the\u0020public\u0020and\u0020private\u0020key\u0020files\u0020and\u0020password\u0020for\u0020S\/MIME\u0020signing.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_sign" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_QP\u0028\u0029", - "name": "DKIM_QP", - "summary": "Quoted\u002DPrintable\u002Dencode\u0020a\u0020DKIM\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_QP" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_Sign\u0028\u0029", - "name": "DKIM_Sign", - "summary": "Generate\u0020a\u0020DKIM\u0020signature.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_Sign" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_HeaderC\u0028\u0029", - "name": "DKIM_HeaderC", - "summary": "Generate\u0020a\u0020DKIM\u0020canonicalization\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_HeaderC" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_BodyC\u0028\u0029", - "name": "DKIM_BodyC", - "summary": "Generate\u0020a\u0020DKIM\u0020canonicalization\u0020body.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_BodyC" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_Add\u0028\u0029", - "name": "DKIM_Add", - "summary": "Create\u0020the\u0020DKIM\u0020header\u0020and\u0020body\u0020in\u0020a\u0020new\u0020message\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_Add" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AhasLineLongerThanMax\u0028\u0029", - "name": "hasLineLongerThanMax", - "summary": "Detect\u0020if\u0020a\u0020string\u0020contains\u0020a\u0020line\u0020longer\u0020than\u0020the\u0020maximum\u0020line\u0020length\nallowed\u0020by\u0020RFC\u00202822\u0020section\u00202.1.1.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_hasLineLongerThanMax" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AquotedString\u0028\u0029", - "name": "quotedString", - "summary": "If\u0020a\u0020string\u0020contains\u0020any\u0020\u0022special\u0022\u0020characters,\u0020double\u002Dquote\u0020the\u0020name,\nand\u0020escape\u0020any\u0020double\u0020quotes\u0020with\u0020a\u0020backslash.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_quotedString" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetToAddresses\u0028\u0029", - "name": "getToAddresses", - "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027to\u0027\u0020property.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getToAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetCcAddresses\u0028\u0029", - "name": "getCcAddresses", - "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027cc\u0027\u0020property.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getCcAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetBccAddresses\u0028\u0029", - "name": "getBccAddresses", - "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027bcc\u0027\u0020property.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getBccAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetReplyToAddresses\u0028\u0029", - "name": "getReplyToAddresses", - "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027ReplyTo\u0027\u0020property.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getReplyToAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetAllRecipientAddresses\u0028\u0029", - "name": "getAllRecipientAddresses", - "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027all_recipients\u0027\u0020property.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getAllRecipientAddresses" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AdoCallback\u0028\u0029", - "name": "doCallback", - "summary": "Perform\u0020a\u0020callback.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_doCallback" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetOAuth\u0028\u0029", - "name": "getOAuth", - "summary": "Get\u0020the\u0020OAuthTokenProvider\u0020instance.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getOAuth" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetOAuth\u0028\u0029", - "name": "setOAuth", - "summary": "Set\u0020an\u0020OAuthTokenProvider\u0020instance.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setOAuth" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACHARSET_ASCII", - "name": "CHARSET_ASCII", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CHARSET_ASCII" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACHARSET_ISO88591", - "name": "CHARSET_ISO88591", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CHARSET_ISO88591" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACHARSET_UTF8", - "name": "CHARSET_UTF8", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CHARSET_UTF8" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_PLAINTEXT", - "name": "CONTENT_TYPE_PLAINTEXT", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_PLAINTEXT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_TEXT_CALENDAR", - "name": "CONTENT_TYPE_TEXT_CALENDAR", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_TEXT_CALENDAR" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_TEXT_HTML", - "name": "CONTENT_TYPE_TEXT_HTML", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_TEXT_HTML" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_MULTIPART_ALTERNATIVE", - "name": "CONTENT_TYPE_MULTIPART_ALTERNATIVE", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_MULTIPART_ALTERNATIVE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_MULTIPART_MIXED", - "name": "CONTENT_TYPE_MULTIPART_MIXED", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_MULTIPART_MIXED" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_MULTIPART_RELATED", - "name": "CONTENT_TYPE_MULTIPART_RELATED", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_MULTIPART_RELATED" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_7BIT", - "name": "ENCODING_7BIT", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_7BIT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_8BIT", - "name": "ENCODING_8BIT", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_8BIT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_BASE64", - "name": "ENCODING_BASE64", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_BASE64" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_BINARY", - "name": "ENCODING_BINARY", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_BINARY" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_QUOTED_PRINTABLE", - "name": "ENCODING_QUOTED_PRINTABLE", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_QUOTED_PRINTABLE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCRYPTION_STARTTLS", - "name": "ENCRYPTION_STARTTLS", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCRYPTION_STARTTLS" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCRYPTION_SMTPS", - "name": "ENCRYPTION_SMTPS", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCRYPTION_SMTPS" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_REQUEST", - "name": "ICAL_METHOD_REQUEST", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_REQUEST" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_PUBLISH", - "name": "ICAL_METHOD_PUBLISH", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_PUBLISH" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_REPLY", - "name": "ICAL_METHOD_REPLY", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_REPLY" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_ADD", - "name": "ICAL_METHOD_ADD", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_ADD" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_CANCEL", - "name": "ICAL_METHOD_CANCEL", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_CANCEL" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_REFRESH", - "name": "ICAL_METHOD_REFRESH", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_REFRESH" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_COUNTER", - "name": "ICAL_METHOD_COUNTER", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_COUNTER" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_DECLINECOUNTER", - "name": "ICAL_METHOD_DECLINECOUNTER", - "summary": "", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_DECLINECOUNTER" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AVERSION", - "name": "VERSION", - "summary": "The\u0020PHPMailer\u0020Version\u0020number.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_VERSION" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ASTOP_MESSAGE", - "name": "STOP_MESSAGE", - "summary": "Error\u0020severity\u003A\u0020message\u0020only,\u0020continue\u0020processing.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_STOP_MESSAGE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ASTOP_CONTINUE", - "name": "STOP_CONTINUE", - "summary": "Error\u0020severity\u003A\u0020message,\u0020likely\u0020ok\u0020to\u0020continue\u0020processing.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_STOP_CONTINUE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ASTOP_CRITICAL", - "name": "STOP_CRITICAL", - "summary": "Error\u0020severity\u003A\u0020message,\u0020plus\u0020full\u0020stop,\u0020critical\u0020error\u0020reached.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_STOP_CRITICAL" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACRLF", - "name": "CRLF", - "summary": "The\u0020SMTP\u0020standard\u0020CRLF\u0020line\u0020break.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CRLF" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AFWS", - "name": "FWS", - "summary": "\u0022Folding\u0020White\u0020Space\u0022\u0020a\u0020white\u0020space\u0020string\u0020used\u0020for\u0020line\u0020folding.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_FWS" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AMAIL_MAX_LINE_LENGTH", - "name": "MAIL_MAX_LINE_LENGTH", - "summary": "The\u0020maximum\u0020line\u0020length\u0020supported\u0020by\u0020mail\u0028\u0029.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_MAIL_MAX_LINE_LENGTH" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AMAX_LINE_LENGTH", - "name": "MAX_LINE_LENGTH", - "summary": "The\u0020maximum\u0020line\u0020length\u0020allowed\u0020by\u0020RFC\u00202822\u0020section\u00202.1.1.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_MAX_LINE_LENGTH" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ASTD_LINE_LENGTH", - "name": "STD_LINE_LENGTH", - "summary": "The\u0020lower\u0020maximum\u0020line\u0020length\u0020allowed\u0020by\u0020RFC\u00202822\u0020section\u00202.1.1.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_STD_LINE_LENGTH" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Priority", - "name": "Priority", - "summary": "Email\u0020priority.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Priority" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024CharSet", - "name": "CharSet", - "summary": "The\u0020character\u0020set\u0020of\u0020the\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_CharSet" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ContentType", - "name": "ContentType", - "summary": "The\u0020MIME\u0020Content\u002Dtype\u0020of\u0020the\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ContentType" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Encoding", - "name": "Encoding", - "summary": "The\u0020message\u0020encoding.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Encoding" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ErrorInfo", - "name": "ErrorInfo", - "summary": "Holds\u0020the\u0020most\u0020recent\u0020mailer\u0020error\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ErrorInfo" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024From", - "name": "From", - "summary": "The\u0020From\u0020email\u0020address\u0020for\u0020the\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_From" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024FromName", - "name": "FromName", - "summary": "The\u0020From\u0020name\u0020of\u0020the\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_FromName" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Sender", - "name": "Sender", - "summary": "The\u0020envelope\u0020sender\u0020of\u0020the\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Sender" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Subject", - "name": "Subject", - "summary": "The\u0020Subject\u0020of\u0020the\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Subject" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Body", - "name": "Body", - "summary": "An\u0020HTML\u0020or\u0020plain\u0020text\u0020message\u0020body.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Body" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024AltBody", - "name": "AltBody", - "summary": "The\u0020plain\u002Dtext\u0020message\u0020body.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_AltBody" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Ical", - "name": "Ical", - "summary": "An\u0020iCal\u0020message\u0020part\u0020body.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Ical" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024IcalMethods", - "name": "IcalMethods", - "summary": "Value\u002Darray\u0020of\u0020\u0022method\u0022\u0020in\u0020Contenttype\u0020header\u0020\u0022text\/calendar\u0022", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_IcalMethods" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024MIMEBody", - "name": "MIMEBody", - "summary": "The\u0020complete\u0020compiled\u0020MIME\u0020message\u0020body.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_MIMEBody" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024MIMEHeader", - "name": "MIMEHeader", - "summary": "The\u0020complete\u0020compiled\u0020MIME\u0020message\u0020headers.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_MIMEHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024mailHeader", - "name": "mailHeader", - "summary": "Extra\u0020headers\u0020that\u0020createHeader\u0028\u0029\u0020doesn\u0027t\u0020fold\u0020in.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_mailHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024WordWrap", - "name": "WordWrap", - "summary": "Word\u002Dwrap\u0020the\u0020message\u0020body\u0020to\u0020this\u0020number\u0020of\u0020chars.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_WordWrap" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Mailer", - "name": "Mailer", - "summary": "Which\u0020method\u0020to\u0020use\u0020to\u0020send\u0020mail.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Mailer" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Sendmail", - "name": "Sendmail", - "summary": "The\u0020path\u0020to\u0020the\u0020sendmail\u0020program.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Sendmail" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024UseSendmailOptions", - "name": "UseSendmailOptions", - "summary": "Whether\u0020mail\u0028\u0029\u0020uses\u0020a\u0020fully\u0020sendmail\u002Dcompatible\u0020MTA.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_UseSendmailOptions" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ConfirmReadingTo", - "name": "ConfirmReadingTo", - "summary": "The\u0020email\u0020address\u0020that\u0020a\u0020reading\u0020confirmation\u0020should\u0020be\u0020sent\u0020to,\u0020also\u0020known\u0020as\u0020read\u0020receipt.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ConfirmReadingTo" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Hostname", - "name": "Hostname", - "summary": "The\u0020hostname\u0020to\u0020use\u0020in\u0020the\u0020Message\u002DID\u0020header\u0020and\u0020as\u0020default\u0020HELO\u0020string.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Hostname" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024MessageID", - "name": "MessageID", - "summary": "An\u0020ID\u0020to\u0020be\u0020used\u0020in\u0020the\u0020Message\u002DID\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_MessageID" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024MessageDate", - "name": "MessageDate", - "summary": "The\u0020message\u0020Date\u0020to\u0020be\u0020used\u0020in\u0020the\u0020Date\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_MessageDate" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Host", - "name": "Host", - "summary": "SMTP\u0020hosts.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Host" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Port", - "name": "Port", - "summary": "The\u0020default\u0020SMTP\u0020server\u0020port.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Port" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Helo", - "name": "Helo", - "summary": "The\u0020SMTP\u0020HELO\/EHLO\u0020name\u0020used\u0020for\u0020the\u0020SMTP\u0020connection.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Helo" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPSecure", - "name": "SMTPSecure", - "summary": "What\u0020kind\u0020of\u0020encryption\u0020to\u0020use\u0020on\u0020the\u0020SMTP\u0020connection.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPSecure" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPAutoTLS", - "name": "SMTPAutoTLS", - "summary": "Whether\u0020to\u0020enable\u0020TLS\u0020encryption\u0020automatically\u0020if\u0020a\u0020server\u0020supports\u0020it,\neven\u0020if\u0020\u0060SMTPSecure\u0060\u0020is\u0020not\u0020set\u0020to\u0020\u0027tls\u0027.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPAutoTLS" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPAuth", - "name": "SMTPAuth", - "summary": "Whether\u0020to\u0020use\u0020SMTP\u0020authentication.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPAuth" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPOptions", - "name": "SMTPOptions", - "summary": "Options\u0020array\u0020passed\u0020to\u0020stream_context_create\u0020when\u0020connecting\u0020via\u0020SMTP.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPOptions" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Username", - "name": "Username", - "summary": "SMTP\u0020username.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Username" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Password", - "name": "Password", - "summary": "SMTP\u0020password.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Password" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024AuthType", - "name": "AuthType", - "summary": "SMTP\u0020authentication\u0020type.\u0020Options\u0020are\u0020CRAM\u002DMD5,\u0020LOGIN,\u0020PLAIN,\u0020XOAUTH2.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_AuthType" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPXClient", - "name": "SMTPXClient", - "summary": "SMTP\u0020SMTPXClient\u0020command\u0020attributes", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPXClient" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024oauth", - "name": "oauth", - "summary": "An\u0020implementation\u0020of\u0020the\u0020PHPMailer\u0020OAuthTokenProvider\u0020interface.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_oauth" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Timeout", - "name": "Timeout", - "summary": "The\u0020SMTP\u0020server\u0020timeout\u0020in\u0020seconds.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Timeout" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024dsn", - "name": "dsn", - "summary": "Comma\u0020separated\u0020list\u0020of\u0020DSN\u0020notifications\n\u0027NEVER\u0027\u0020under\u0020no\u0020circumstances\u0020a\u0020DSN\u0020must\u0020be\u0020returned\u0020to\u0020the\u0020sender.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_dsn" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPDebug", - "name": "SMTPDebug", - "summary": "SMTP\u0020class\u0020debug\u0020output\u0020mode.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPDebug" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Debugoutput", - "name": "Debugoutput", - "summary": "How\u0020to\u0020handle\u0020debug\u0020output.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Debugoutput" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPKeepAlive", - "name": "SMTPKeepAlive", - "summary": "Whether\u0020to\u0020keep\u0020the\u0020SMTP\u0020connection\u0020open\u0020after\u0020each\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPKeepAlive" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SingleTo", - "name": "SingleTo", - "summary": "Whether\u0020to\u0020split\u0020multiple\u0020to\u0020addresses\u0020into\u0020multiple\u0020messages\nor\u0020send\u0020them\u0020all\u0020in\u0020one\u0020message.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SingleTo" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SingleToArray", - "name": "SingleToArray", - "summary": "Storage\u0020for\u0020addresses\u0020when\u0020SingleTo\u0020is\u0020enabled.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SingleToArray" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024do_verp", - "name": "do_verp", - "summary": "Whether\u0020to\u0020generate\u0020VERP\u0020addresses\u0020on\u0020send.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_do_verp" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024AllowEmpty", - "name": "AllowEmpty", - "summary": "Whether\u0020to\u0020allow\u0020sending\u0020messages\u0020with\u0020an\u0020empty\u0020body.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_AllowEmpty" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_selector", - "name": "DKIM_selector", - "summary": "DKIM\u0020selector.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_selector" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_identity", - "name": "DKIM_identity", - "summary": "DKIM\u0020Identity.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_identity" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_passphrase", - "name": "DKIM_passphrase", - "summary": "DKIM\u0020passphrase.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_passphrase" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_domain", - "name": "DKIM_domain", - "summary": "DKIM\u0020signing\u0020domain\u0020name.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_domain" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_copyHeaderFields", - "name": "DKIM_copyHeaderFields", - "summary": "DKIM\u0020Copy\u0020header\u0020field\u0020values\u0020for\u0020diagnostic\u0020use.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_copyHeaderFields" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_extraHeaders", - "name": "DKIM_extraHeaders", - "summary": "DKIM\u0020Extra\u0020signing\u0020headers.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_extraHeaders" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_private", - "name": "DKIM_private", - "summary": "DKIM\u0020private\u0020key\u0020file\u0020path.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_private" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_private_string", - "name": "DKIM_private_string", - "summary": "DKIM\u0020private\u0020key\u0020string.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_private_string" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024action_function", - "name": "action_function", - "summary": "Callback\u0020Action\u0020function\u0020name.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_action_function" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024XMailer", - "name": "XMailer", - "summary": "What\u0020to\u0020put\u0020in\u0020the\u0020X\u002DMailer\u0020header.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_XMailer" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024validator", - "name": "validator", - "summary": "Which\u0020validator\u0020to\u0020use\u0020by\u0020default\u0020when\u0020validating\u0020email\u0020addresses.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_validator" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024smtp", - "name": "smtp", - "summary": "An\u0020instance\u0020of\u0020the\u0020SMTP\u0020sender\u0020class.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_smtp" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024to", - "name": "to", - "summary": "The\u0020array\u0020of\u0020\u0027to\u0027\u0020names\u0020and\u0020addresses.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_to" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024cc", - "name": "cc", - "summary": "The\u0020array\u0020of\u0020\u0027cc\u0027\u0020names\u0020and\u0020addresses.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_cc" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024bcc", - "name": "bcc", - "summary": "The\u0020array\u0020of\u0020\u0027bcc\u0027\u0020names\u0020and\u0020addresses.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_bcc" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ReplyTo", - "name": "ReplyTo", - "summary": "The\u0020array\u0020of\u0020reply\u002Dto\u0020names\u0020and\u0020addresses.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ReplyTo" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024all_recipients", - "name": "all_recipients", - "summary": "An\u0020array\u0020of\u0020all\u0020kinds\u0020of\u0020addresses.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_all_recipients" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024RecipientsQueue", - "name": "RecipientsQueue", - "summary": "An\u0020array\u0020of\u0020names\u0020and\u0020addresses\u0020queued\u0020for\u0020validation.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_RecipientsQueue" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ReplyToQueue", - "name": "ReplyToQueue", - "summary": "An\u0020array\u0020of\u0020reply\u002Dto\u0020names\u0020and\u0020addresses\u0020queued\u0020for\u0020validation.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ReplyToQueue" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024UseSMTPUTF8", - "name": "UseSMTPUTF8", - "summary": "Whether\u0020the\u0020need\u0020for\u0020SMTPUTF8\u0020has\u0020been\u0020detected.\u0020Set\u0020by\npreSend\u0028\u0029\u0020if\u0020necessary.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_UseSMTPUTF8" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024attachment", - "name": "attachment", - "summary": "The\u0020array\u0020of\u0020attachments.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_attachment" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024CustomHeader", - "name": "CustomHeader", - "summary": "The\u0020array\u0020of\u0020custom\u0020headers.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_CustomHeader" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024lastMessageID", - "name": "lastMessageID", - "summary": "The\u0020most\u0020recent\u0020Message\u002DID\u0020\u0028including\u0020angular\u0020brackets\u0029.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_lastMessageID" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024message_type", - "name": "message_type", - "summary": "The\u0020message\u0027s\u0020MIME\u0020type.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_message_type" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024boundary", - "name": "boundary", - "summary": "The\u0020array\u0020of\u0020MIME\u0020boundary\u0020strings.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_boundary" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024language", - "name": "language", - "summary": "The\u0020array\u0020of\u0020available\u0020text\u0020strings\u0020for\u0020the\u0020current\u0020language.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_language" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024error_count", - "name": "error_count", - "summary": "The\u0020number\u0020of\u0020errors\u0020encountered.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_error_count" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024sign_cert_file", - "name": "sign_cert_file", - "summary": "The\u0020S\/MIME\u0020certificate\u0020file\u0020path.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_sign_cert_file" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024sign_key_file", - "name": "sign_key_file", - "summary": "The\u0020S\/MIME\u0020key\u0020file\u0020path.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_sign_key_file" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024sign_extracerts_file", - "name": "sign_extracerts_file", - "summary": "The\u0020optional\u0020S\/MIME\u0020extra\u0020certificates\u0020\u0028\u0022CA\u0020Chain\u0022\u0029\u0020file\u0020path.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_sign_extracerts_file" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024sign_key_pass", - "name": "sign_key_pass", - "summary": "The\u0020S\/MIME\u0020password\u0020for\u0020the\u0020key.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_sign_key_pass" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024exceptions", - "name": "exceptions", - "summary": "Whether\u0020to\u0020throw\u0020exceptions\u0020for\u0020errors.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_exceptions" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024uniqueid", - "name": "uniqueid", - "summary": "Unique\u0020ID\u0020used\u0020for\u0020message\u0020ID\u0020and\u0020boundaries.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_uniqueid" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024LE", - "name": "LE", - "summary": "SMTP\u0020RFC\u0020standard\u0020line\u0020ending\u003B\u0020Carriage\u0020Return,\u0020Line\u0020Feed.", - "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_LE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3", - "name": "POP3", - "summary": "PHPMailer\u0020POP\u002DBefore\u002DSMTP\u0020Authentication\u0020Class.", - "url": "classes/PHPMailer-PHPMailer-POP3.html" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ApopBeforeSmtp\u0028\u0029", - "name": "popBeforeSmtp", - "summary": "Simple\u0020static\u0020wrapper\u0020for\u0020all\u002Din\u002Done\u0020POP\u0020before\u0020SMTP.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_popBeforeSmtp" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003Aauthorise\u0028\u0029", - "name": "authorise", - "summary": "Authenticate\u0020with\u0020a\u0020POP3\u0020server.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_authorise" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003Aconnect\u0028\u0029", - "name": "connect", - "summary": "Connect\u0020to\u0020a\u0020POP3\u0020server.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_connect" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003Alogin\u0028\u0029", - "name": "login", - "summary": "Log\u0020in\u0020to\u0020the\u0020POP3\u0020server.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_login" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003Adisconnect\u0028\u0029", - "name": "disconnect", - "summary": "Disconnect\u0020from\u0020the\u0020POP3\u0020server.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_disconnect" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AgetResponse\u0028\u0029", - "name": "getResponse", - "summary": "Get\u0020a\u0020response\u0020from\u0020the\u0020POP3\u0020server.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_getResponse" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AsendString\u0028\u0029", - "name": "sendString", - "summary": "Send\u0020raw\u0020data\u0020to\u0020the\u0020POP3\u0020server.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_sendString" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AcheckResponse\u0028\u0029", - "name": "checkResponse", - "summary": "Checks\u0020the\u0020POP3\u0020server\u0020response.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_checkResponse" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AsetError\u0028\u0029", - "name": "setError", - "summary": "Add\u0020an\u0020error\u0020to\u0020the\u0020internal\u0020error\u0020store.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_setError" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AgetErrors\u0028\u0029", - "name": "getErrors", - "summary": "Get\u0020an\u0020array\u0020of\u0020error\u0020messages,\u0020if\u0020any.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_getErrors" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AcatchWarning\u0028\u0029", - "name": "catchWarning", - "summary": "POP3\u0020connection\u0020error\u0020handler.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#method_catchWarning" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AVERSION", - "name": "VERSION", - "summary": "The\u0020POP3\u0020PHPMailer\u0020Version\u0020number.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_VERSION" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEFAULT_PORT", - "name": "DEFAULT_PORT", - "summary": "Default\u0020POP3\u0020port\u0020number.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEFAULT_PORT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEFAULT_TIMEOUT", - "name": "DEFAULT_TIMEOUT", - "summary": "Default\u0020timeout\u0020in\u0020seconds.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEFAULT_TIMEOUT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ALE", - "name": "LE", - "summary": "Line\u0020break\u0020constant.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_LE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEBUG_OFF", - "name": "DEBUG_OFF", - "summary": "Debug\u0020level\u0020for\u0020no\u0020output.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEBUG_OFF" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEBUG_SERVER", - "name": "DEBUG_SERVER", - "summary": "Debug\u0020level\u0020to\u0020show\u0020server\u0020\u002D\u003E\u0020client\u0020messages\nalso\u0020shows\u0020clients\u0020connection\u0020errors\u0020or\u0020errors\u0020from\u0020server", - "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEBUG_SERVER" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEBUG_CLIENT", - "name": "DEBUG_CLIENT", - "summary": "Debug\u0020level\u0020to\u0020show\u0020client\u0020\u002D\u003E\u0020server\u0020and\u0020server\u0020\u002D\u003E\u0020client\u0020messages.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEBUG_CLIENT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024do_debug", - "name": "do_debug", - "summary": "POP3\u0020class\u0020debug\u0020output\u0020mode.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_do_debug" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024host", - "name": "host", - "summary": "POP3\u0020mail\u0020server\u0020hostname.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_host" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024port", - "name": "port", - "summary": "POP3\u0020port\u0020number.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_port" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024tval", - "name": "tval", - "summary": "POP3\u0020Timeout\u0020Value\u0020in\u0020seconds.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_tval" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024username", - "name": "username", - "summary": "POP3\u0020username.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_username" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024password", - "name": "password", - "summary": "POP3\u0020password.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_password" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024pop_conn", - "name": "pop_conn", - "summary": "Resource\u0020handle\u0020for\u0020the\u0020POP3\u0020connection\u0020socket.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_pop_conn" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024connected", - "name": "connected", - "summary": "Are\u0020we\u0020connected\u003F", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_connected" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024errors", - "name": "errors", - "summary": "Error\u0020container.", - "url": "classes/PHPMailer-PHPMailer-POP3.html#property_errors" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP", - "name": "SMTP", - "summary": "PHPMailer\u0020RFC821\u0020SMTP\u0020email\u0020transport\u0020class.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aedebug\u0028\u0029", - "name": "edebug", - "summary": "Output\u0020debugging\u0020info\u0020via\u0020a\u0020user\u002Dselected\u0020method.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_edebug" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aconnect\u0028\u0029", - "name": "connect", - "summary": "Connect\u0020to\u0020an\u0020SMTP\u0020server.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_connect" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetSMTPConnection\u0028\u0029", - "name": "getSMTPConnection", - "summary": "Create\u0020connection\u0020to\u0020the\u0020SMTP\u0020server.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getSMTPConnection" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AstartTLS\u0028\u0029", - "name": "startTLS", - "summary": "Initiate\u0020a\u0020TLS\u0020\u0028encrypted\u0029\u0020session.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_startTLS" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aauthenticate\u0028\u0029", - "name": "authenticate", - "summary": "Perform\u0020SMTP\u0020authentication.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_authenticate" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Ahmac\u0028\u0029", - "name": "hmac", - "summary": "Calculate\u0020an\u0020MD5\u0020HMAC\u0020hash.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_hmac" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aconnected\u0028\u0029", - "name": "connected", - "summary": "Check\u0020connection\u0020state.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_connected" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aclose\u0028\u0029", - "name": "close", - "summary": "Close\u0020the\u0020socket\u0020and\u0020clean\u0020up\u0020the\u0020state\u0020of\u0020the\u0020class.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_close" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Adata\u0028\u0029", - "name": "data", - "summary": "Send\u0020an\u0020SMTP\u0020DATA\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_data" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Ahello\u0028\u0029", - "name": "hello", - "summary": "Send\u0020an\u0020SMTP\u0020HELO\u0020or\u0020EHLO\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_hello" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsendHello\u0028\u0029", - "name": "sendHello", - "summary": "Send\u0020an\u0020SMTP\u0020HELO\u0020or\u0020EHLO\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_sendHello" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AparseHelloFields\u0028\u0029", - "name": "parseHelloFields", - "summary": "Parse\u0020a\u0020reply\u0020to\u0020HELO\/EHLO\u0020command\u0020to\u0020discover\u0020server\u0020extensions.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_parseHelloFields" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Amail\u0028\u0029", - "name": "mail", - "summary": "Send\u0020an\u0020SMTP\u0020MAIL\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_mail" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aquit\u0028\u0029", - "name": "quit", - "summary": "Send\u0020an\u0020SMTP\u0020QUIT\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_quit" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Arecipient\u0028\u0029", - "name": "recipient", - "summary": "Send\u0020an\u0020SMTP\u0020RCPT\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_recipient" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Axclient\u0028\u0029", - "name": "xclient", - "summary": "Send\u0020SMTP\u0020XCLIENT\u0020command\u0020to\u0020server\u0020and\u0020check\u0020its\u0020return\u0020code.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_xclient" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Areset\u0028\u0029", - "name": "reset", - "summary": "Send\u0020an\u0020SMTP\u0020RSET\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_reset" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsendCommand\u0028\u0029", - "name": "sendCommand", - "summary": "Send\u0020a\u0020command\u0020to\u0020an\u0020SMTP\u0020server\u0020and\u0020check\u0020its\u0020return\u0020code.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_sendCommand" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsendAndMail\u0028\u0029", - "name": "sendAndMail", - "summary": "Send\u0020an\u0020SMTP\u0020SAML\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_sendAndMail" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Averify\u0028\u0029", - "name": "verify", - "summary": "Send\u0020an\u0020SMTP\u0020VRFY\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_verify" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Anoop\u0028\u0029", - "name": "noop", - "summary": "Send\u0020an\u0020SMTP\u0020NOOP\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_noop" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aturn\u0028\u0029", - "name": "turn", - "summary": "Send\u0020an\u0020SMTP\u0020TURN\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_turn" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aclient_send\u0028\u0029", - "name": "client_send", - "summary": "Send\u0020raw\u0020data\u0020to\u0020the\u0020server.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_client_send" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetError\u0028\u0029", - "name": "getError", - "summary": "Get\u0020the\u0020latest\u0020error.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getError" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetServerExtList\u0028\u0029", - "name": "getServerExtList", - "summary": "Get\u0020SMTP\u0020extensions\u0020available\u0020on\u0020the\u0020server.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getServerExtList" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetServerExt\u0028\u0029", - "name": "getServerExt", - "summary": "Get\u0020metadata\u0020about\u0020the\u0020SMTP\u0020server\u0020from\u0020its\u0020HELO\/EHLO\u0020response.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getServerExt" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetLastReply\u0028\u0029", - "name": "getLastReply", - "summary": "Get\u0020the\u0020last\u0020reply\u0020from\u0020the\u0020server.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getLastReply" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aget_lines\u0028\u0029", - "name": "get_lines", - "summary": "Read\u0020the\u0020SMTP\u0020server\u0027s\u0020response.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_get_lines" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetVerp\u0028\u0029", - "name": "setVerp", - "summary": "Enable\u0020or\u0020disable\u0020VERP\u0020address\u0020generation.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setVerp" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetVerp\u0028\u0029", - "name": "getVerp", - "summary": "Get\u0020VERP\u0020address\u0020generation\u0020mode.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getVerp" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetSMTPUTF8\u0028\u0029", - "name": "setSMTPUTF8", - "summary": "Enable\u0020or\u0020disable\u0020use\u0020of\u0020SMTPUTF8.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setSMTPUTF8" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetSMTPUTF8\u0028\u0029", - "name": "getSMTPUTF8", - "summary": "Get\u0020SMTPUTF8\u0020use.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getSMTPUTF8" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetError\u0028\u0029", - "name": "setError", - "summary": "Set\u0020error\u0020messages\u0020and\u0020codes.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setError" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetDebugOutput\u0028\u0029", - "name": "setDebugOutput", - "summary": "Set\u0020debug\u0020output\u0020method.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setDebugOutput" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetDebugOutput\u0028\u0029", - "name": "getDebugOutput", - "summary": "Get\u0020debug\u0020output\u0020method.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getDebugOutput" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetDebugLevel\u0028\u0029", - "name": "setDebugLevel", - "summary": "Set\u0020debug\u0020output\u0020level.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setDebugLevel" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetDebugLevel\u0028\u0029", - "name": "getDebugLevel", - "summary": "Get\u0020debug\u0020output\u0020level.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getDebugLevel" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetTimeout\u0028\u0029", - "name": "setTimeout", - "summary": "Set\u0020SMTP\u0020timeout.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setTimeout" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetTimeout\u0028\u0029", - "name": "getTimeout", - "summary": "Get\u0020SMTP\u0020timeout.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getTimeout" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AerrorHandler\u0028\u0029", - "name": "errorHandler", - "summary": "Reports\u0020an\u0020error\u0020number\u0020and\u0020string.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_errorHandler" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ArecordLastTransactionID\u0028\u0029", - "name": "recordLastTransactionID", - "summary": "Extract\u0020and\u0020return\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020SMTP\u0020transaction\u0020based\u0020on\na\u0020list\u0020of\u0020patterns\u0020provided\u0020in\u0020SMTP\u003A\u003A\u0024smtp_transaction_id_patterns.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_recordLastTransactionID" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetLastTransactionID\u0028\u0029", - "name": "getLastTransactionID", - "summary": "Get\u0020the\u0020queue\/transaction\u0020ID\u0020of\u0020the\u0020last\u0020SMTP\u0020transaction\nIf\u0020no\u0020reply\u0020has\u0020been\u0020received\u0020yet,\u0020it\u0020will\u0020return\u0020null.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getLastTransactionID" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AVERSION", - "name": "VERSION", - "summary": "The\u0020PHPMailer\u0020SMTP\u0020version\u0020number.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_VERSION" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ALE", - "name": "LE", - "summary": "SMTP\u0020line\u0020break\u0020constant.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_LE" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEFAULT_PORT", - "name": "DEFAULT_PORT", - "summary": "The\u0020SMTP\u0020port\u0020to\u0020use\u0020if\u0020one\u0020is\u0020not\u0020specified.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEFAULT_PORT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEFAULT_SECURE_PORT", - "name": "DEFAULT_SECURE_PORT", - "summary": "The\u0020SMTPs\u0020port\u0020to\u0020use\u0020if\u0020one\u0020is\u0020not\u0020specified.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEFAULT_SECURE_PORT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AMAX_LINE_LENGTH", - "name": "MAX_LINE_LENGTH", - "summary": "The\u0020maximum\u0020line\u0020length\u0020allowed\u0020by\u0020RFC\u00205321\u0020section\u00204.5.3.1.6,\n\u002Aexcluding\u002A\u0020a\u0020trailing\u0020CRLF\u0020break.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_MAX_LINE_LENGTH" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AMAX_REPLY_LENGTH", - "name": "MAX_REPLY_LENGTH", - "summary": "The\u0020maximum\u0020line\u0020length\u0020allowed\u0020for\u0020replies\u0020in\u0020RFC\u00205321\u0020section\u00204.5.3.1.5,\n\u002Aincluding\u002A\u0020a\u0020trailing\u0020CRLF\u0020line\u0020break.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_MAX_REPLY_LENGTH" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_OFF", - "name": "DEBUG_OFF", - "summary": "Debug\u0020level\u0020for\u0020no\u0020output.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_OFF" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_CLIENT", - "name": "DEBUG_CLIENT", - "summary": "Debug\u0020level\u0020to\u0020show\u0020client\u0020\u002D\u003E\u0020server\u0020messages.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_CLIENT" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_SERVER", - "name": "DEBUG_SERVER", - "summary": "Debug\u0020level\u0020to\u0020show\u0020client\u0020\u002D\u003E\u0020server\u0020and\u0020server\u0020\u002D\u003E\u0020client\u0020messages.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_SERVER" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_CONNECTION", - "name": "DEBUG_CONNECTION", - "summary": "Debug\u0020level\u0020to\u0020show\u0020connection\u0020status,\u0020client\u0020\u002D\u003E\u0020server\u0020and\u0020server\u0020\u002D\u003E\u0020client\u0020messages.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_CONNECTION" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_LOWLEVEL", - "name": "DEBUG_LOWLEVEL", - "summary": "Debug\u0020level\u0020to\u0020show\u0020all\u0020messages.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_LOWLEVEL" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024do_debug", - "name": "do_debug", - "summary": "Debug\u0020output\u0020level.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_do_debug" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024Debugoutput", - "name": "Debugoutput", - "summary": "How\u0020to\u0020handle\u0020debug\u0020output.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_Debugoutput" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024do_verp", - "name": "do_verp", - "summary": "Whether\u0020to\u0020use\u0020VERP.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_do_verp" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024do_smtputf8", - "name": "do_smtputf8", - "summary": "Whether\u0020to\u0020use\u0020SMTPUTF8.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_do_smtputf8" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024Timeout", - "name": "Timeout", - "summary": "The\u0020timeout\u0020value\u0020for\u0020connection,\u0020in\u0020seconds.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_Timeout" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024Timelimit", - "name": "Timelimit", - "summary": "How\u0020long\u0020to\u0020wait\u0020for\u0020commands\u0020to\u0020complete,\u0020in\u0020seconds.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_Timelimit" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024smtp_transaction_id_patterns", - "name": "smtp_transaction_id_patterns", - "summary": "Patterns\u0020to\u0020extract\u0020an\u0020SMTP\u0020transaction\u0020id\u0020from\u0020reply\u0020to\u0020a\u0020DATA\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_smtp_transaction_id_patterns" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024xclient_allowed_attributes", - "name": "xclient_allowed_attributes", - "summary": "Allowed\u0020SMTP\u0020XCLIENT\u0020attributes.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_xclient_allowed_attributes" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024last_smtp_transaction_id", - "name": "last_smtp_transaction_id", - "summary": "The\u0020last\u0020transaction\u0020ID\u0020issued\u0020in\u0020response\u0020to\u0020a\u0020DATA\u0020command,\nif\u0020one\u0020was\u0020detected.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_last_smtp_transaction_id" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024smtp_conn", - "name": "smtp_conn", - "summary": "The\u0020socket\u0020for\u0020the\u0020server\u0020connection.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_smtp_conn" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024error", - "name": "error", - "summary": "Error\u0020information,\u0020if\u0020any,\u0020for\u0020the\u0020last\u0020SMTP\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_error" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024helo_rply", - "name": "helo_rply", - "summary": "The\u0020reply\u0020the\u0020server\u0020sent\u0020to\u0020us\u0020for\u0020HELO.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_helo_rply" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024server_caps", - "name": "server_caps", - "summary": "The\u0020set\u0020of\u0020SMTP\u0020extensions\u0020sent\u0020in\u0020reply\u0020to\u0020EHLO\u0020command.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_server_caps" - }, { - "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024last_reply", - "name": "last_reply", - "summary": "The\u0020most\u0020recent\u0020reply\u0020received\u0020from\u0020the\u0020server.", - "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_last_reply" - }, { - "fqsen": "\\", - "name": "\\", - "summary": "", - "url": "namespaces/default.html" - }, { - "fqsen": "\\Controllers\\Analysis", - "name": "Analysis", - "summary": "", - "url": "namespaces/controllers-analysis.html" - }, { - "fqsen": "\\Controllers", - "name": "Controllers", - "summary": "", - "url": "namespaces/controllers.html" - }, { - "fqsen": "\\Controllers\\Auth", - "name": "Auth", - "summary": "", - "url": "namespaces/controllers-auth.html" - }, { - "fqsen": "\\Controllers\\User", - "name": "User", - "summary": "", - "url": "namespaces/controllers-user.html" - }, { - "fqsen": "\\PHPMailer\\PHPMailer", - "name": "PHPMailer", - "summary": "", - "url": "namespaces/phpmailer-phpmailer.html" - }, { - "fqsen": "\\PHPMailer", - "name": "PHPMailer", - "summary": "", - "url": "namespaces/phpmailer.html" - } ] -); diff --git a/docs/js/template.js b/docs/js/template.js deleted file mode 100644 index 83931d2e..00000000 --- a/docs/js/template.js +++ /dev/null @@ -1,34 +0,0 @@ -(function(){ - window.addEventListener('load', () => { - const el = document.querySelector('.phpdocumentor-on-this-page__content') - if (!el) { - return; - } - - const observer = new IntersectionObserver( - ([e]) => { - e.target.classList.toggle("-stuck", e.intersectionRatio < 1); - }, - {threshold: [1]} - ); - - observer.observe(el); - }) -})(); -function openSvg(svg) { - // convert to a valid XML source - const as_text = new XMLSerializer().serializeToString(svg); - // store in a Blob - const blob = new Blob([as_text], { type: "image/svg+xml" }); - // create an URI pointing to that blob - const url = URL.createObjectURL(blob); - const win = open(url); - // so the Garbage Collector can collect the blob - win.onload = (evt) => URL.revokeObjectURL(url); -}; - - -var svgs = document.querySelectorAll(".phpdocumentor-uml-diagram svg"); -for( var i=0,il = svgs.length; i< il; i ++ ) { - svgs[i].onclick = (evt) => openSvg(evt.target); -} \ No newline at end of file diff --git a/docs/namespaces/controllers-analysis.html b/docs/namespaces/controllers-analysis.html deleted file mode 100644 index a3fdc41f..00000000 --- a/docs/namespaces/controllers-analysis.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                                                                                                                                      - - - - - -
                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      Analysis

                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                                                                                                                                      - - - - -

                                                                                                                                                                                                                                                                                      - Classes - - -

                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      UploadController
                                                                                                                                                                                                                                                                                      Contrôleur pour l'upload des données de programmes étudiants
                                                                                                                                                                                                                                                                                      VectorController
                                                                                                                                                                                                                                                                                      Contrôleur pour la génération et la gestion des vecteurs
                                                                                                                                                                                                                                                                                      VisualizationController
                                                                                                                                                                                                                                                                                      Contrôleur pour la visualisation des données avec D3.js
                                                                                                                                                                                                                                                                                      - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                      -        
                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                      - On this page - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                                      • - -
                                                                                                                                                                                                                                                                                      • - - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                                                                                        - - - - - - - - diff --git a/docs/namespaces/controllers-auth.html b/docs/namespaces/controllers-auth.html deleted file mode 100644 index 6fb4f383..00000000 --- a/docs/namespaces/controllers-auth.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                                                                                                                                        - - - - - -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Auth

                                                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                                                                                                                                        - - - - -

                                                                                                                                                                                                                                                                                        - Classes - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        AuthController
                                                                                                                                                                                                                                                                                        AuthController - Authentication service with CRUD operations -Handles user registration, login, and password management
                                                                                                                                                                                                                                                                                        EmailVerificationController
                                                                                                                                                                                                                                                                                        EmailVerificationController - Handles email verification
                                                                                                                                                                                                                                                                                        LoginController
                                                                                                                                                                                                                                                                                        LoginController - Handles login display and authentication
                                                                                                                                                                                                                                                                                        LogoutController
                                                                                                                                                                                                                                                                                        LogoutController - Handles user logout
                                                                                                                                                                                                                                                                                        PasswordResetController
                                                                                                                                                                                                                                                                                        PasswordResetController - Handles password reset functionality
                                                                                                                                                                                                                                                                                        RegisterController
                                                                                                                                                                                                                                                                                        RegisterController - Handles user registration
                                                                                                                                                                                                                                                                                        - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                        -        
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        - On this page - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • - -
                                                                                                                                                                                                                                                                                        • - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - - -
                                                                                                                                                                                                                                                                                          - - - - - - - - diff --git a/docs/namespaces/controllers-user.html b/docs/namespaces/controllers-user.html deleted file mode 100644 index 1d19f5f7..00000000 --- a/docs/namespaces/controllers-user.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                                                                                                                                          - - - - - -
                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - - -
                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                          User

                                                                                                                                                                                                                                                                                          - - -

                                                                                                                                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                                                                                                                                          - - - - -

                                                                                                                                                                                                                                                                                          - Classes - - -

                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          DashboardController
                                                                                                                                                                                                                                                                                          DashboardController - Handles user dashboard
                                                                                                                                                                                                                                                                                          ResourceDetailsController
                                                                                                                                                                                                                                                                                          BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                                                                                                                                                                                                                          ResourceListController
                                                                                                                                                                                                                                                                                          BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                                                                                                                                                                                                                          StudentsController
                                                                                                                                                                                                                                                                                          StudentsController - Handles student data API
                                                                                                                                                                                                                                                                                          - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                          -        
                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                          - On this page - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                                                          • - -
                                                                                                                                                                                                                                                                                          • - - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - - -
                                                                                                                                                                                                                                                                                            - - - - - - - - diff --git a/docs/namespaces/controllers.html b/docs/namespaces/controllers.html deleted file mode 100644 index 1fa4d69c..00000000 --- a/docs/namespaces/controllers.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                                                                                                                                            - - - - - -
                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            Controllers

                                                                                                                                                                                                                                                                                            - - -

                                                                                                                                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                                                                                                                                            - - -

                                                                                                                                                                                                                                                                                            - Namespaces - - -

                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            Analysis
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            Auth
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            User
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                            -        
                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                            - On this page - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                            • - - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                                                              - - - - - - - - diff --git a/docs/namespaces/default.html b/docs/namespaces/default.html deleted file mode 100644 index b7d7a4b2..00000000 --- a/docs/namespaces/default.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              API Documentation

                                                                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                                                                              - Namespaces - - -

                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              Controllers
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              PHPMailer
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                                                                              - Classes - - -

                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              Router
                                                                                                                                                                                                                                                                                              Router class - Main application router -Handles URL routing and controller dispatching with namespaces
                                                                                                                                                                                                                                                                                              BaseController
                                                                                                                                                                                                                                                                                              BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                                                                                                                                                                                                                              HomeController
                                                                                                                                                                                                                                                                                              HomeController - Handles home page routing
                                                                                                                                                                                                                                                                                              Code2VecService
                                                                                                                                                                                                                                                                                              Service pour interagir avec code2aes2vec (Python) -Génère les vecteurs de grande dimension à partir des programmes étudiants
                                                                                                                                                                                                                                                                                              Database
                                                                                                                                                                                                                                                                                              Database class - Database connection manager -Handles PDO connection with configuration from .env file
                                                                                                                                                                                                                                                                                              Dataset
                                                                                                                                                                                                                                                                                              Modèle pour gérer les datasets -Utilise la structure BD existante
                                                                                                                                                                                                                                                                                              EmailService
                                                                                                                                                                                                                                                                                              EmailService class - Email sending service -Handles email sending with PHPMailer
                                                                                                                                                                                                                                                                                              Exercise
                                                                                                                                                                                                                                                                                              PendingRegistration
                                                                                                                                                                                                                                                                                              PendingRegistration Model - CRUD operations for pending registrations with PDO
                                                                                                                                                                                                                                                                                              Resource
                                                                                                                                                                                                                                                                                              Student
                                                                                                                                                                                                                                                                                              Student Model - Handles student data from JSON file
                                                                                                                                                                                                                                                                                              User
                                                                                                                                                                                                                                                                                              User Model - CRUD operations for users with PDO
                                                                                                                                                                                                                                                                                              - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                              - On this page - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                              • - -
                                                                                                                                                                                                                                                                                              • - - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                                                                - - - - - - - - diff --git a/docs/namespaces/phpmailer-phpmailer.html b/docs/namespaces/phpmailer-phpmailer.html deleted file mode 100644 index b2a7cf81..00000000 --- a/docs/namespaces/phpmailer-phpmailer.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                                                                                                                                - - - - - -
                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                PHPMailer

                                                                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                                                                - Table of Contents - - -

                                                                                                                                                                                                                                                                                                - - - -

                                                                                                                                                                                                                                                                                                - Interfaces - - -

                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                OAuthTokenProvider
                                                                                                                                                                                                                                                                                                OAuthTokenProvider - OAuth2 token provider interface.
                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                - Classes - - -

                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                DSNConfigurator
                                                                                                                                                                                                                                                                                                Configure PHPMailer with DSN string.
                                                                                                                                                                                                                                                                                                Exception
                                                                                                                                                                                                                                                                                                PHPMailer exception handler.
                                                                                                                                                                                                                                                                                                OAuth
                                                                                                                                                                                                                                                                                                OAuth - OAuth2 authentication wrapper class.
                                                                                                                                                                                                                                                                                                PHPMailer
                                                                                                                                                                                                                                                                                                PHPMailer - PHP email creation and transport class.
                                                                                                                                                                                                                                                                                                POP3
                                                                                                                                                                                                                                                                                                PHPMailer POP-Before-SMTP Authentication Class.
                                                                                                                                                                                                                                                                                                SMTP
                                                                                                                                                                                                                                                                                                PHPMailer RFC821 SMTP email transport class.
                                                                                                                                                                                                                                                                                                - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                -        
                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                - On this page - - -
                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                                                                                  - - - - - - - - diff --git a/docs/namespaces/phpmailer.html b/docs/namespaces/phpmailer.html deleted file mode 100644 index c95f48a7..00000000 --- a/docs/namespaces/phpmailer.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  PHPMailer

                                                                                                                                                                                                                                                                                                  - - -

                                                                                                                                                                                                                                                                                                  - Table of Contents - - -

                                                                                                                                                                                                                                                                                                  - - -

                                                                                                                                                                                                                                                                                                  - Namespaces - - -

                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  PHPMailer
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                  -        
                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                  - On this page - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                  • - - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                                                    - - - - - - - - diff --git a/docs/packages/Application.html b/docs/packages/Application.html deleted file mode 100644 index 1a771959..00000000 --- a/docs/packages/Application.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    Application

                                                                                                                                                                                                                                                                                                    - - -

                                                                                                                                                                                                                                                                                                    - Table of Contents - - -

                                                                                                                                                                                                                                                                                                    - - - -

                                                                                                                                                                                                                                                                                                    - Interfaces - - -

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    OAuthTokenProvider
                                                                                                                                                                                                                                                                                                    OAuthTokenProvider - OAuth2 token provider interface.
                                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                                    - Classes - - -

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    Router
                                                                                                                                                                                                                                                                                                    Router class - Main application router -Handles URL routing and controller dispatching with namespaces
                                                                                                                                                                                                                                                                                                    UploadController
                                                                                                                                                                                                                                                                                                    Contrôleur pour l'upload des données de programmes étudiants
                                                                                                                                                                                                                                                                                                    VectorController
                                                                                                                                                                                                                                                                                                    Contrôleur pour la génération et la gestion des vecteurs
                                                                                                                                                                                                                                                                                                    VisualizationController
                                                                                                                                                                                                                                                                                                    Contrôleur pour la visualisation des données avec D3.js
                                                                                                                                                                                                                                                                                                    AuthController
                                                                                                                                                                                                                                                                                                    AuthController - Authentication service with CRUD operations -Handles user registration, login, and password management
                                                                                                                                                                                                                                                                                                    EmailVerificationController
                                                                                                                                                                                                                                                                                                    EmailVerificationController - Handles email verification
                                                                                                                                                                                                                                                                                                    LoginController
                                                                                                                                                                                                                                                                                                    LoginController - Handles login display and authentication
                                                                                                                                                                                                                                                                                                    LogoutController
                                                                                                                                                                                                                                                                                                    LogoutController - Handles user logout
                                                                                                                                                                                                                                                                                                    PasswordResetController
                                                                                                                                                                                                                                                                                                    PasswordResetController - Handles password reset functionality
                                                                                                                                                                                                                                                                                                    RegisterController
                                                                                                                                                                                                                                                                                                    RegisterController - Handles user registration
                                                                                                                                                                                                                                                                                                    BaseController
                                                                                                                                                                                                                                                                                                    BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                                                                                                                                                                                                                                    HomeController
                                                                                                                                                                                                                                                                                                    HomeController - Handles home page routing
                                                                                                                                                                                                                                                                                                    DashboardController
                                                                                                                                                                                                                                                                                                    DashboardController - Handles user dashboard
                                                                                                                                                                                                                                                                                                    ResourceDetailsController
                                                                                                                                                                                                                                                                                                    BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                                                                                                                                                                                                                                    ResourceListController
                                                                                                                                                                                                                                                                                                    BaseController - Base controller class with common methods -All controllers should extend this class
                                                                                                                                                                                                                                                                                                    StudentsController
                                                                                                                                                                                                                                                                                                    StudentsController - Handles student data API
                                                                                                                                                                                                                                                                                                    Code2VecService
                                                                                                                                                                                                                                                                                                    Service pour interagir avec code2aes2vec (Python) -Génère les vecteurs de grande dimension à partir des programmes étudiants
                                                                                                                                                                                                                                                                                                    Database
                                                                                                                                                                                                                                                                                                    Database class - Database connection manager -Handles PDO connection with configuration from .env file
                                                                                                                                                                                                                                                                                                    Dataset
                                                                                                                                                                                                                                                                                                    Modèle pour gérer les datasets -Utilise la structure BD existante
                                                                                                                                                                                                                                                                                                    EmailService
                                                                                                                                                                                                                                                                                                    EmailService class - Email sending service -Handles email sending with PHPMailer
                                                                                                                                                                                                                                                                                                    Exercise
                                                                                                                                                                                                                                                                                                    PendingRegistration
                                                                                                                                                                                                                                                                                                    PendingRegistration Model - CRUD operations for pending registrations with PDO
                                                                                                                                                                                                                                                                                                    Resource
                                                                                                                                                                                                                                                                                                    Student
                                                                                                                                                                                                                                                                                                    Student Model - Handles student data from JSON file
                                                                                                                                                                                                                                                                                                    User
                                                                                                                                                                                                                                                                                                    User Model - CRUD operations for users with PDO
                                                                                                                                                                                                                                                                                                    DSNConfigurator
                                                                                                                                                                                                                                                                                                    Configure PHPMailer with DSN string.
                                                                                                                                                                                                                                                                                                    Exception
                                                                                                                                                                                                                                                                                                    PHPMailer exception handler.
                                                                                                                                                                                                                                                                                                    OAuth
                                                                                                                                                                                                                                                                                                    OAuth - OAuth2 authentication wrapper class.
                                                                                                                                                                                                                                                                                                    PHPMailer
                                                                                                                                                                                                                                                                                                    PHPMailer - PHP email creation and transport class.
                                                                                                                                                                                                                                                                                                    POP3
                                                                                                                                                                                                                                                                                                    PHPMailer POP-Before-SMTP Authentication Class.
                                                                                                                                                                                                                                                                                                    SMTP
                                                                                                                                                                                                                                                                                                    PHPMailer RFC821 SMTP email transport class.
                                                                                                                                                                                                                                                                                                    - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                    -        
                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                    - On this page - - -
                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - diff --git a/docs/packages/PHPMailer.html b/docs/packages/PHPMailer.html deleted file mode 100644 index 395e0a39..00000000 --- a/docs/packages/PHPMailer.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      SAE Project Documentation

                                                                                                                                                                                                                                                                                                      - - - - - -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      PHPMailer

                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - Table of Contents - - -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                      -        
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - On this page - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      • - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                                                                                                        - - - - - - - - diff --git a/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon-breakingspaceU202Fcharacterbeforeitforexamplebeforeacolonorexclamationmark-Thereisoneofthesecharactersbetweenthesequotes.html b/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon-breakingspaceU202Fcharacterbeforeitforexamplebeforeacolonorexclamationmark-Thereisoneofthesecharactersbetweenthesequotes.html deleted file mode 100644 index 3de5eb3b..00000000 --- a/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon-breakingspaceU202Fcharacterbeforeitforexamplebeforeacolonorexclamationmark-Thereisoneofthesecharactersbetweenthesequotes.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                        SAE Project Documentation

                                                                                                                                                                                                                                                                                                        - - - - - -
                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - - -
                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                        Thereisoneofthesecharactersbetweenthesequotes

                                                                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                                                                        - Table of Contents - - -

                                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                        -        
                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                        - On this page - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                        • - - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - - -
                                                                                                                                                                                                                                                                                                          - - - - - - - - diff --git a/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon-breakingspaceU202Fcharacterbeforeitforexamplebeforeacolonorexclamationmark.html b/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon-breakingspaceU202Fcharacterbeforeitforexamplebeforeacolonorexclamationmark.html deleted file mode 100644 index 9721752e..00000000 --- a/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon-breakingspaceU202Fcharacterbeforeitforexamplebeforeacolonorexclamationmark.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          SAE Project Documentation

                                                                                                                                                                                                                                                                                                          - - - - - -
                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - - -
                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          breakingspaceU202Fcharacterbeforeitforexamplebeforeacolonorexclamationmark

                                                                                                                                                                                                                                                                                                          - - -

                                                                                                                                                                                                                                                                                                          - Table of Contents - - -

                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                          - Packages - - -

                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          Thereisoneofthesecharactersbetweenthesequotes
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                          -        
                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                          - On this page - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                          • - - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - - -
                                                                                                                                                                                                                                                                                                            - - - - - - - - diff --git a/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon.html b/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon.html deleted file mode 100644 index 97e60832..00000000 --- a/docs/packages/PHPMailerSomeFrenchpunctuationrequiresathinnon.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                            SAE Project Documentation

                                                                                                                                                                                                                                                                                                            - - - - - -
                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                            PHPMailerSomeFrenchpunctuationrequiresathinnon

                                                                                                                                                                                                                                                                                                            - - -

                                                                                                                                                                                                                                                                                                            - Table of Contents - - -

                                                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                                                            - Packages - - -

                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            breakingspaceU202Fcharacterbeforeitforexamplebeforeacolonorexclamationmark
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                            -        
                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                            - On this page - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                            • - - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                                                                              - - - - - - - - diff --git a/docs/packages/default.html b/docs/packages/default.html deleted file mode 100644 index 642c7a81..00000000 --- a/docs/packages/default.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - SAE Project Documentation - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              SAE Project Documentation

                                                                                                                                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              API Documentation

                                                                                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                                                                                              - Table of Contents - - -

                                                                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                                                                              - Packages - - -

                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              Application
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              PHPMailer
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              PHPMailerSomeFrenchpunctuationrequiresathinnon
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              - On this page - -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                              • - - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                                                                                - - - - - - - - diff --git a/docs/prompt.txt b/docs/prompt.txt new file mode 100644 index 00000000..df62c307 --- /dev/null +++ b/docs/prompt.txt @@ -0,0 +1,87 @@ +- Donnes moi des idées de graphique interactif +- Expliques moi comment mieux mettre en avant des données dans des graphes +- Donnes une liste de graphes à mettre en priorité pour montrer les données +- Explique moi comment je dois m'y prendre pour re structurer mon code +- Génère moi la documentation de mon projet +- Génère moi le CSS de mon projet en utilisant le CSS des pages de base +- Fait une belle page d'erreur 500 +- Fait moi une belle page d'erreur 404 +- Que signifie ce message d'erreur "{inserer n'importe quelle erreur}" et comment la corriger +- Tu es un expert en Clean Architecture, DDD et principes SOLID. Ta mission est d'auditer la base de code fournie et de produire un rapport d'audit complet. + + CE QUE TU DOIS VÉRIFIER + + 1. Séparation des couches + Identifie les couches présentes (Domain, Application, Infrastructure, Presentation ou équivalent). + Vérifie que : + - Les couches internes ne dépendent JAMAIS des couches externes + - Le Domain ne connaît ni la base de données, ni le framework, ni l'UI + - L'Application ne connaît pas l'Infrastructure (pas d'imports directs d'ORM, de HTTP, de fichiers système...) + - Les dépendances pointent toujours vers l'intérieur + + 2. Règle de dépendance + Pour chaque import/dépendance dans le code, détermine si elle respecte la direction autorisée. + Signale chaque violation avec le fichier, la ligne, et pourquoi c'est une violation. + + 3. Responsabilité des classes + - Les entités du domaine contiennent-elles de la logique métier ou sont-elles de simples conteneurs de données (anémiques) ? + - Les services applicatifs font-ils uniquement de l'orchestration ou contiennent-ils de la logique métier qui devrait être dans le domaine ? + - Les repositories sont-ils des abstractions ou des accès directs à la DB ? + + 4. Cas d'utilisation / Use Cases + - Chaque action utilisateur a-t-elle un use case dédié ? + - Les use cases sont-ils trop larges (font trop de choses) ou trop fragmentés ? + + 5. Dépendances vers des détails techniques + Détecte les endroits où du code métier dépend directement de : + - Un ORM spécifique (TypeORM, Prisma, Hibernate...) + - Un framework HTTP (Express, NestJS, Spring...) + - Une librairie de cache, de messaging, de fichiers... + Sans passer par une abstraction. + + 6. Cohésion et couplage + - Les modules/dossiers regroupent-ils des choses qui changent pour la même raison ? + - Y a-t-il des modules qui sont modifiés à chaque nouvelle feature (couplage fort) ? + + FORMAT DU RAPPORT + RAPPORT D'AUDIT — Clean Architecture + Vue d'ensemble + [Résumé en 3-5 phrases de l'état général de l'architecture] + Points respectés + [Liste des bonnes pratiques détectées] + Violations détectées + Violation #1 — [Nom court] + + Fichier : chemin/vers/fichier.ts (ligne X) + Règle violée : [ex: Dépendance inversée / Séparation des couches / SRP...] + Problème : [explication claire] + Correction suggérée : [solution concrète] + + [répéter pour chaque violation] + Points d'attention (pas des violations mais des risques) + [Liste des zones fragiles qui pourraient devenir problématiques] + Score par principe + + Séparation des couches : X/10 + Règle de dépendance : X/10 + Responsabilité unique : X/10 + Abstraction des détails techniques : X/10 + Cohésion des modules : X/10 + + Priorités de refactoring + + [Le plus urgent] + [...] + [...] + + - On a un souci de lisibilité sur le nuage de points Plotly à cause de l'overplotting (trop de points superposés). Est-ce que tu peux me montrer comment forcer une bordure blanche (marker.line) sur les points et augmenter leur size de façon globale ? J'aimerais aussi tester une opacité à 0.8 pour que les trajectoires ressortent mieux sur le fond blanc. + - Quelles sont les bonnes pratiques pour gérer les erreurs de AES dans mon pipeline ? Si le script rencontre un code Python mal formé ou une séquence vide, comment je peux faire en sorte que le pipeline continue sur le reste du dataset sans crasher, tout en logguant l'erreur pour PHP ? + - Voici les scripts pour faire l'IA et voici un pptx qui est la présentation de l'IA (ce qu'elle est censé faire). + + Je dois faire une IA qui prend les donnés des résultats des étudiants et qui me donne un vecteur en 2 dimensions des trajectoires des étudiants. + + Décris moi comment je peux faire et la structure de mon code. + Parle moi aussi des bibliothèques disponibles pour réaliser ce projet. + Et parle moi des différentes perspectives d'approche potentielles. + + Tu détailleras bien et expliqueras ton raisonnement \ No newline at end of file diff --git a/docs/reports/deprecated.html b/docs/reports/deprecated.html deleted file mode 100644 index 6a4c4a6f..00000000 --- a/docs/reports/deprecated.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - SAE Project Documentation » Deprecated elements - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                SAE Project Documentation

                                                                                                                                                                                                                                                                                                                - - - - - -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                Deprecated

                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                Table of Contents

                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                phpmailer/src/PHPMailer.php
                                                                                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                                                                                PHPMailer.php

                                                                                                                                                                                                                                                                                                                - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                LineElementReason
                                                                                                                                                                                                                                                                                                                456PHPMailer::$SingleTo

                                                                                                                                                                                                                                                                                                                PHPMailer isn't a mailing list manager!

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                                                                                                  - - - - - - - - diff --git a/docs/reports/errors.html b/docs/reports/errors.html deleted file mode 100644 index e7e19607..00000000 --- a/docs/reports/errors.html +++ /dev/null @@ -1,388 +0,0 @@ - - - - - SAE Project Documentation » Compilation errors - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  SAE Project Documentation

                                                                                                                                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  Errors

                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                  Table of Contents

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  phpmailer/language/phpmailer.lang-ca.php1
                                                                                                                                                                                                                                                                                                                  phpmailer/language/phpmailer.lang-da.php1
                                                                                                                                                                                                                                                                                                                  phpmailer/language/phpmailer.lang-fo.php1
                                                                                                                                                                                                                                                                                                                  phpmailer/language/phpmailer.lang-hi.php1
                                                                                                                                                                                                                                                                                                                  phpmailer/language/phpmailer.lang-ja.php4
                                                                                                                                                                                                                                                                                                                  phpmailer/language/phpmailer.lang-zh.php1
                                                                                                                                                                                                                                                                                                                  phpmailer/src/PHPMailer.php5
                                                                                                                                                                                                                                                                                                                  phpmailer/src/POP3.php3
                                                                                                                                                                                                                                                                                                                  - - - -

                                                                                                                                                                                                                                                                                                                  phpmailer.lang-ca.php

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  TypeLineDescription
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author Ivan <web AT microstudi DOT com>" has error The author tag does not have a valid e-mail address
                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                  phpmailer.lang-da.php

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  TypeLineDescription
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author John Sebastian <jms@iwb.dk> -Rewrite and extension of the work by Mikael Stokkebro <info@stokkebro.dk>" has error
                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                  phpmailer.lang-fo.php

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  TypeLineDescription
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author Dávur Sørensen <http://www.profo-webdesign.dk>" has error The author tag does not have a valid e-mail address
                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                  phpmailer.lang-hi.php

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  TypeLineDescription
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author Yash Karanke <mr.karanke@gmail.com> -Rewrite and extension of the work by Jayanti Suthar <suthar.jayanti93@gmail.com>" has error
                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                  phpmailer.lang-ja.php

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  TypeLineDescription
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author ARAKI Musashi <https://github.com/arakim/>" has error The author tag does not have a valid e-mail address
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author Arisophy <https://github.com/arisophy/>" has error The author tag does not have a valid e-mail address
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author Yoshi Sakai <http://bluemooninc.jp/>" has error The author tag does not have a valid e-mail address
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author Mitsuhiro Yoshida <https://mitstek.com>" has error The author tag does not have a valid e-mail address
                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                  phpmailer.lang-zh.php

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  TypeLineDescription
                                                                                                                                                                                                                                                                                                                  ERROR0Tag "author" with body "@author Peter Dave Hello <@PeterDaveHello/>" has error The author tag does not have a valid e-mail address
                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                  PHPMailer.php

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  TypeLineDescription
                                                                                                                                                                                                                                                                                                                  ERROR408Tag "see" with body "@see SMTP::DEBUG_LOWLEVEL: Noisy, low-level data output, rarely needed" has error "\PHPMailer\PHPMailer\SMTP::DEBUG_LOWLEVEL:" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                  ERROR408Tag "see" with body "@see SMTP::DEBUG_CONNECTION: As SERVER plus connection status" has error "\PHPMailer\PHPMailer\SMTP::DEBUG_CONNECTION:" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                  ERROR408Tag "see" with body "@see SMTP::DEBUG_SERVER: Client and server messages" has error "\PHPMailer\PHPMailer\SMTP::DEBUG_SERVER:" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                  ERROR408Tag "see" with body "@see SMTP::DEBUG_CLIENT: Client messages" has error "\PHPMailer\PHPMailer\SMTP::DEBUG_CLIENT:" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                  ERROR408Tag "see" with body "@see SMTP::DEBUG_OFF: No output" has error "\PHPMailer\PHPMailer\SMTP::DEBUG_OFF:" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                  POP3.php

                                                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  TypeLineDescription
                                                                                                                                                                                                                                                                                                                  ERROR75Tag "see" with body "@see POP3::DEBUG_CLIENT: Client and Server messages, connection/server errors" has error "\PHPMailer\PHPMailer\POP3::DEBUG_CLIENT:" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                  ERROR75Tag "see" with body "@see POP3::DEBUG_SERVER: Server messages, connection/server errors" has error "\PHPMailer\PHPMailer\POP3::DEBUG_SERVER:" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                  ERROR75Tag "see" with body "@see POP3::DEBUG_OFF: No output" has error "\PHPMailer\PHPMailer\POP3::DEBUG_OFF:" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                                                                    - - - - - - - - diff --git a/docs/reports/markers.html b/docs/reports/markers.html deleted file mode 100644 index e160dc47..00000000 --- a/docs/reports/markers.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - SAE Project Documentation » Markers - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                    SAE Project Documentation

                                                                                                                                                                                                                                                                                                                    - - - - - -
                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                    Markers

                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                    - No markers have been found in this project. -
                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      - - -
                                                                                                                                                                                                                                                                                                                      - - - - - - - -