diff --git a/.editorconfig b/.editorconfig old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/application/.htaccess b/application/.htaccess old mode 100644 new mode 100755 diff --git a/application/cache/index.html b/application/cache/index.html old mode 100644 new mode 100755 diff --git a/application/config/autoload.php b/application/config/autoload.php old mode 100644 new mode 100755 diff --git a/application/config/config.php b/application/config/config.php old mode 100644 new mode 100755 diff --git a/application/config/constants.php b/application/config/constants.php old mode 100644 new mode 100755 diff --git a/application/config/database.php b/application/config/database.php old mode 100644 new mode 100755 diff --git a/application/config/doctypes.php b/application/config/doctypes.php old mode 100644 new mode 100755 diff --git a/application/config/foreign_chars.php b/application/config/foreign_chars.php old mode 100644 new mode 100755 diff --git a/application/config/hooks.php b/application/config/hooks.php old mode 100644 new mode 100755 diff --git a/application/config/index.html b/application/config/index.html old mode 100644 new mode 100755 diff --git a/application/config/memcached.php b/application/config/memcached.php old mode 100644 new mode 100755 diff --git a/application/config/migration.php b/application/config/migration.php old mode 100644 new mode 100755 diff --git a/application/config/mimes.php b/application/config/mimes.php old mode 100644 new mode 100755 diff --git a/application/config/profiler.php b/application/config/profiler.php old mode 100644 new mode 100755 diff --git a/application/config/routes.php b/application/config/routes.php old mode 100644 new mode 100755 index 1db520d..273e41f --- a/application/config/routes.php +++ b/application/config/routes.php @@ -49,14 +49,16 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | Examples: my-controller/index -> my_controller/index | my-controller/my-method -> my_controller/my_method */ -$route['default_controller'] = 'Controller1'; +$route['default_controller'] = 'Dashboard_Controller'; //$route['default_controller'] = 'Login'; $route['404_override'] = ''; $route['translate_uri_dashes'] = FALSE; -$route['Routes'] = 'Controller1/index'; -$route['Routes1'] = 'Controller1/Method1'; -$route['Routes2'] = 'Controller1/Method2'; -$route['Routes3'] = 'Controller1/Method3'; -$route['Routes4'] = 'Controller1/Method4'; -$route['Routes5'] = 'Controller1/Method5'; \ No newline at end of file +$route['Routes'] = 'Dashboard_Controller/index'; +$route['Dashboard'] = 'Dashboard_Controller/Dashboard'; +$route['country_master'] = 'Dashboard_Controller/country_master'; +$route['city_master'] = 'Dashboard_Controller/city_master'; +$route['visa_type_master'] = 'Dashboard_Controller/visa_type_master'; +$route['document_master'] = 'Dashboard_Controller/document_master'; +$route['visa_type_master'] = 'Dashboard_Controller/visa_type_master'; +$route['country_visa_details'] = 'Dashboard_Controller/country_visa_details'; \ No newline at end of file diff --git a/application/config/smileys.php b/application/config/smileys.php old mode 100644 new mode 100755 diff --git a/application/config/user_agents.php b/application/config/user_agents.php old mode 100644 new mode 100755 diff --git a/application/controllers/Controller1.php b/application/controllers/Controller1.php deleted file mode 100755 index d7e49f6..0000000 --- a/application/controllers/Controller1.php +++ /dev/null @@ -1,88 +0,0 @@ -load->view('includes/Header', NULL); - // $this->load->view('NewPage1', NULL); - // $this->load->view('includes/Footer', NULL); - - $this->loadViews('NewPage1', NULL); - } - - /** - * This function used to check the Routes - */ - function Method1() - { - // $this->load->view('includes/Header', NULL); - // $this->load->view('NewPage2', NULL); - // $this->load->view('includes/Footer', NULL); - $this->loadViews('NewPage2', NULL); - } - - /** - * This function used to check the Routes - */ - function Method2() - { - // $this->load->view('includes/Header', NULL); - // $this->load->view('NewPage3', NULL); - // $this->load->view('includes/Footer', NULL); - - $this->loadViews('NewPage3', NULL); - } - - /** - * This function used to check the Routes - */ - function Method3() - { - // $this->load->view('includes/Header', NULL); - // $this->load->view('404', NULL); - // $this->load->view('includes/Footer', NULL); - $this->loadViews('NewPage4', NULL); - } - /** - * This function used to check the Routes - */ - function Method4() - { - // $this->load->view('includes/Header', NULL); - // $this->load->view('access', NULL); - // $this->load->view('includes/Footer', NULL); - $this->loadViews('404', NULL); - } - - /** - * This function used to check the Routes - */ - function Method5() - { - // $this->load->view('includes/Header', NULL); - // $this->load->view('NewPage4', NULL); - // $this->load->view('includes/Footer', NULL); - $this->loadViews('access', NULL); - } - -} - -?> diff --git a/application/controllers/Dashboard_Controller.php b/application/controllers/Dashboard_Controller.php new file mode 100755 index 0000000..4cece60 --- /dev/null +++ b/application/controllers/Dashboard_Controller.php @@ -0,0 +1,56 @@ +loadViews('Dashboard', NULL); + } + + /** + * This function used to load the Dashboard page + */ + function Dashboard() + { + + $this->loadViews('Dashboard', NULL); + } + + function country_master(){ + $this->loadViews('country_master',NULL); + } + function city_master(){ + $this->loadViews('city_master',NULL); + } + function visa_type_master(){ + $this->loadViews('visa_type_master',NULL); + } + function document_master(){ + $this->loadViews('document_upload',NULL); + } + function country_visa_details(){ + $this->loadViews('country_visa_details',NULL); + } + +} + +?> diff --git a/application/controllers/Welcome.php b/application/controllers/Welcome.php old mode 100644 new mode 100755 diff --git a/application/controllers/index.html b/application/controllers/index.html old mode 100644 new mode 100755 diff --git a/application/core/index.html b/application/core/index.html old mode 100644 new mode 100755 diff --git a/application/helpers/index.html b/application/helpers/index.html old mode 100644 new mode 100755 diff --git a/application/hooks/index.html b/application/hooks/index.html old mode 100644 new mode 100755 diff --git a/application/index.html b/application/index.html old mode 100644 new mode 100755 diff --git a/application/language/english/index.html b/application/language/english/index.html old mode 100644 new mode 100755 diff --git a/application/language/index.html b/application/language/index.html old mode 100644 new mode 100755 diff --git a/application/libraries/index.html b/application/libraries/index.html old mode 100644 new mode 100755 diff --git a/application/logs/index.html b/application/logs/index.html old mode 100644 new mode 100755 diff --git a/application/models/index.html b/application/models/index.html old mode 100644 new mode 100755 diff --git a/application/third_party/index.html b/application/third_party/index.html old mode 100644 new mode 100755 diff --git a/application/views/Dashboard.php b/application/views/Dashboard.php new file mode 100755 index 0000000..107febc --- /dev/null +++ b/application/views/Dashboard.php @@ -0,0 +1,3 @@ +
Add the layout-boxed class to the body tag to get this layout. The boxed layout is helpful when working on - large screens because it prevents the site from stretching very wide.
-