forked from mirrors/easyappointments
Added support for the new "calendar/reschedule" callback
This commit is contained in:
parent
7b919e2c39
commit
5916ad47d1
1 changed files with 12 additions and 0 deletions
|
@ -109,6 +109,18 @@ class Calendar extends EA_Controller {
|
|||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the calendar page and display the selected appointment.
|
||||
*
|
||||
* This method will call the "index" callback to handle the page rendering.
|
||||
*
|
||||
* @param string $appointment_hash Appointment hash.
|
||||
*/
|
||||
public function reschedule(string $appointment_hash)
|
||||
{
|
||||
$this->index($appointment_hash);
|
||||
}
|
||||
|
||||
/**
|
||||
* Save appointment changes that are made from the backend calendar page.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue