2013-04-12 19:36:09 +03:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Appointments extends CI_Controller {
|
|
|
|
/**
|
2013-04-14 22:42:40 +03:00
|
|
|
* This page displays the book appointment wizard
|
|
|
|
* for the customers.
|
2013-04-12 19:36:09 +03:00
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2013-04-14 22:42:40 +03:00
|
|
|
$this->load->model('Settings');
|
|
|
|
$viewData['businessName'] = $this->Settings->getSetting('business_name');
|
|
|
|
|
|
|
|
$this->load->view('appointments/book', $viewData);
|
2013-04-12 19:36:09 +03:00
|
|
|
}
|
|
|
|
}
|