Removed [AJAX] string from controller comments.

This commit is contained in:
Alex Tselegidis 2020-12-09 14:46:27 +02:00
parent b87be634b4
commit 39d4f3185e
3 changed files with 5 additions and 5 deletions

View File

@ -298,7 +298,7 @@ class Appointments extends EA_Controller {
} }
/** /**
* [AJAX] Get the available appointment hours for the given date. * Get the available appointment hours for the given date.
* *
* This method answers to an AJAX request. It calculates the available hours for the given service, provider and * This method answers to an AJAX request. It calculates the available hours for the given service, provider and
* date. * date.
@ -409,7 +409,7 @@ class Appointments extends EA_Controller {
/** /**
* [AJAX] Register the appointment to the database. * Register the appointment to the database.
* *
* Outputs a JSON string with the appointment ID. * Outputs a JSON string with the appointment ID.
*/ */
@ -553,7 +553,7 @@ class Appointments extends EA_Controller {
} }
/** /**
* [AJAX] Get Unavailable Dates * Get Unavailable Dates
* *
* Get an array with the available dates of a specific provider, service and month of the year. Provide the * Get an array with the available dates of a specific provider, service and month of the year. Provide the
* "provider_id", "service_id" and "selected_date" as GET parameters to the request. The "selected_date" parameter * "provider_id", "service_id" and "selected_date" as GET parameters to the request. The "selected_date" parameter

View File

@ -52,7 +52,7 @@ class Installation extends EA_Controller {
} }
/** /**
* [AJAX] Installs Easy!Appointments on the server. * Installs Easy!Appointments on the server.
*/ */
public function ajax_install() public function ajax_install()
{ {

View File

@ -100,7 +100,7 @@ class User extends EA_Controller {
} }
/** /**
* [AJAX] Check whether the user has entered the correct login credentials. * Check whether the user has entered the correct login credentials.
* *
* The session data of a logged in user are the following: * The session data of a logged in user are the following:
* - 'user_id' * - 'user_id'