mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Updated EA_Controller to use the script_vars helper function
This commit is contained in:
parent
238ca6c820
commit
a40bd3f6c6
1 changed files with 4 additions and 4 deletions
|
@ -73,7 +73,7 @@ class EA_Controller extends CI_Controller {
|
|||
|
||||
$this->configure_language();
|
||||
|
||||
$this->load_common_js_config();
|
||||
$this->load_common_script_vars();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -92,11 +92,11 @@ class EA_Controller extends CI_Controller {
|
|||
}
|
||||
|
||||
/**
|
||||
* Load common JS config for all requests.
|
||||
* Load common script vars for all requests.
|
||||
*/
|
||||
private function load_common_js_config()
|
||||
private function load_common_script_vars()
|
||||
{
|
||||
js_config([
|
||||
script_vars([
|
||||
'base_url' => config('base_url'),
|
||||
'index_page' => config('index_page'),
|
||||
'csrf_token' => $this->security->get_csrf_hash(),
|
||||
|
|
Loading…
Reference in a new issue