Removed comments from the end of the files.

This commit is contained in:
alext 2016-12-07 19:45:39 +01:00
parent 9ff11db2e6
commit 6f886d60a5
34 changed files with 2 additions and 103 deletions

View file

@ -886,6 +886,3 @@ class Appointments extends CI_Controller {
$available_hours = array_values($available_hours);
}
}
/* End of file appointments.php */
/* Location: ./application/controllers/appointments.php */

View file

@ -307,6 +307,3 @@ class Backend extends CI_Controller {
$view['privileges'] = $this->roles_model->get_privileges($this->session->userdata('role_slug'));
}
}
/* End of file backend.php */
/* Location: ./application/controllers/backend.php */

View file

@ -1265,6 +1265,3 @@ class Backend_api extends CI_Controller {
}
}
}
/* End of file backend_api.php */
/* Location: ./application/controllers/backend_api.php */

View file

@ -37,6 +37,3 @@ class Captcha extends CI_Controller {
$builder->output();
}
}
/* End of file appointments.php */
/* Location: ./application/controllers/appointments.php */

View file

@ -43,6 +43,3 @@ class Errors extends CI_Controller {
$this->load->view('general/error404', $view);
}
}
/* End of file errors.php */
/* Location: ./application/controllers/errors.php */

View file

@ -228,6 +228,3 @@ class Google extends CI_Controller {
}
}
}
/* End of file google.php */
/* Location: ./application/controllers/google.php */

View file

@ -120,6 +120,3 @@ class Installation extends CI_Controller {
}
}
}
/* End of file installation.php */
/* Location: ./application/controllers/installation.php */

View file

@ -70,6 +70,3 @@ class Test extends CI_Controller {
//$this->unit_tests->run_library_tests();
}
}
/* End of file test.php */
/* Location: ./application/controllers/test.php */

View file

@ -170,6 +170,3 @@ class User extends CI_Controller {
}
}
}
/* End of file user.php */
/* Location: ./application/controllers/user.php */

View file

@ -35,7 +35,8 @@ class API_V1_Controller extends CI_Controller {
*/
public function __construct() {
if (!isset($_SERVER['PHP_AUTH_USER'])) {
return $this->_requestAuthentication();
$this->_requestAuthentication();
return;
}
parent::__construct();
@ -91,6 +92,3 @@ class API_V1_Controller extends CI_Controller {
throw new \EA\Engine\Api\V1\Exception('The requested record was not found!', 404, 'Not Found');
}
}
/* End of file API_V1_Controller.php */
/* Location: ./application/controllers/API_V1_Controller.php */

View file

@ -145,6 +145,3 @@ class Admins extends API_V1_Controller {
}
}
}
/* End of file Admins.php */
/* Location: ./application/controllers/api/v1/Admins.php */

View file

@ -145,6 +145,3 @@ class Appointments extends API_V1_Controller {
}
}
}
/* End of file Appointments.php */
/* Location: ./application/controllers/api/v1/Appointments.php */

View file

@ -313,6 +313,3 @@ class Availabilities extends API_V1_Controller {
$available_hours = array_values($available_hours);
}
}
/* End of file Availabilities.php */
/* Location: ./application/controllers/api/v1/Availabilities.php */

View file

@ -145,6 +145,3 @@ class Categories extends API_V1_Controller {
}
}
}
/* End of file Categories.php */
/* Location: ./application/controllers/api/v1/Categories.php */

View file

@ -145,6 +145,3 @@ class Customers extends API_V1_Controller {
}
}
}
/* End of file Customers.php */
/* Location: ./application/controllers/api/v1/Customers.php */

View file

@ -145,6 +145,3 @@ class Providers extends API_V1_Controller {
}
}
}
/* End of file Providers.php */
/* Location: ./application/controllers/api/v1/Providers.php */

View file

@ -145,6 +145,3 @@ class Secretaries extends API_V1_Controller {
}
}
}
/* End of file Secretaries.php */
/* Location: ./application/controllers/api/v1/Secretaries.php */

View file

@ -145,6 +145,3 @@ class Services extends API_V1_Controller {
}
}
}
/* End of file Services.php */
/* Location: ./application/controllers/api/v1/Services.php */

View file

@ -128,6 +128,3 @@ class Settings extends API_V1_Controller {
}
}
}
/* End of file Settings.php */
/* Location: ./application/controllers/api/v1/Settings.php */

View file

@ -145,6 +145,3 @@ class Unavailabilities extends API_V1_Controller {
}
}
}
/* End of file Unavailabilities.php */
/* Location: ./application/controllers/api/v1/Unavailabilities.php */

View file

@ -81,6 +81,3 @@ function exceptionToJavaScript($exception) {
'trace' => $exception->getTraceAsString()
));
}
/* End of file exception_types_helper.php */
/* Location: ./application/helpers/exception_types_helper.php */

View file

@ -24,6 +24,3 @@ function validate_mysql_datetime($datetime) {
$dt = DateTime::createFromFormat('Y-m-d H:i:s', $datetime);
return ($dt) ? TRUE : FALSE;
}
/* End of file data_validation_helper.php */
/* Location: ./application/helpers/data_validation_helper.php */

View file

@ -88,6 +88,3 @@ function generate_random_string($length = 10) {
}
return $random_string;
}
/* End of file general_helper.php */
/* Location: ./application/helpers/general_helper.php */

View file

@ -38,6 +38,3 @@ function google_analytics_script() {
';
}
}
/* End of file google_analytics.php */
/* Location: ./application/helpers/google_analytics.php */

View file

@ -359,6 +359,3 @@ class Google_Sync {
return $calendars;
}
}
/* End of file google_sync.php */
/* Location: ./application/libraries/google_sync.php */

View file

@ -397,6 +397,3 @@ class Admins_Model extends CI_Model {
return ($num_rows > 0) ? FALSE : TRUE;
}
}
/* End of file admins_model.php */
/* Location: ./application/models/admins_model.php */

View file

@ -410,6 +410,3 @@ class Appointments_Model extends CI_Model {
])->num_rows();
}
}
/* End of file appointments_model.php */
/* Location: ./application/models/appointments_model.php */

View file

@ -315,6 +315,3 @@ class Customers_Model extends CI_Model {
return $this->db->get_where('ea_roles', array('slug' => DB_SLUG_CUSTOMER))->row()->id;
}
}
/* End of file customers_model.php */
/* Location: ./application/models/customers_model.php */

View file

@ -571,6 +571,3 @@ class Providers_Model extends CI_Model {
return ($num_rows > 0) ? FALSE : TRUE;
}
}
/* End of file providers_model.php */
/* Location: ./application/models/providers_model.php */

View file

@ -77,6 +77,3 @@ class Roles_Model extends CI_Model {
return $privileges;
}
}
/* End of file roles_model.php */
/* Location: ./application/models/roles_model.php */

View file

@ -477,6 +477,3 @@ class Secretaries_Model extends CI_Model {
return ($num_rows > 0) ? FALSE : TRUE;
}
}
/* End of file secretaries_model.php */
/* Location: ./application/models/secretaries_model.php */

View file

@ -385,6 +385,3 @@ class Services_Model extends CI_Model {
}
}
/* End of file services_model.php */
/* Location: ./application/models/services_model.php */

View file

@ -139,6 +139,3 @@ class Settings_Model extends CI_Model {
return $this->db->get('ea_settings')->result_array();
}
}
/* End of file settings_model.php */
/* Location: ./application/models/settings_model.php */

View file

@ -152,6 +152,3 @@ class User_Model extends CI_Model {
return $new_password;
}
}
/* End of file user_model.php */
/* Location: ./application/models/user_model.php */