Creating Template In CodeIgniter 3 Using Bootstrap Theme

https://www.phpflow.com/php/creating-template-codeigniter-3-using-bootstrap-theme/

Creating Template In CodeIgniter 3 Using Bootstrap Theme

Last Updated On: December 1, 2019| By: Parvez

We will integrate bootstrap theme with CodeIgniter using layout. This tutorial help to create own custom layout for CodeIgniter. This is a master template which will use to render child view file, like each website template has header, footer and sidebar view which is constant and nothing has been changed between different pages.

We will define a master layout, which has constant things as its and variable things like inner content will change based on routing or request of page. First question is our mind what will be variable in CodeIgniter layout?, the page title, logo message, page content etc, we will use page title and content as a variable into this Codeigniter tutorial.

codeIgniter-theme

Pre-Requisites For CodeIgniter 3 Template Tutorial

There are following library and framework must be downloaded and configured

Example Of Codeigniter Templates Using Bootstrap Admin Theme

I am using bootstrap admin theme to create CodeIgniter template. You can change theme as per your application need. The CI templates integration process would be same like any other HTML theme.I am creating ci_test folder into xampp/htdocs/ directory and moved all files and directories from CodeIgniter 3 downloaded folder to xampp/htdocs/ci_test folder.

I Am Using Following Files And Folder

We will create and modify following CI files.

  • libraries/template.php : This file will use to create template class and method to render layout.

  • views/layouts/default_layout.php : This file will use to create HTML layout using template.php class.

  • config/config.php : This file will use configure application level params.

  • config/autoload.php : This file will use to load libraries on project instantiate.

  • config/router.php : This file will use to define route path of application.

  • views/home.php, views/about.php : home and about view file.

  • controllers/home.php : Default application controller file and use to render home,about view file using template.

Modify config.php file We will modify some configuration parameters in application/config/config.php file, I made following changes into this file:

123

$config['uri_protocol'] = 'REQUEST_URI';$config['base_url'] = 'http://ci_test/';$config['index_page'] = ''; //remove index.php file from url

Added .htaccess file We will add .htaccess file into route of /ci_test folder.We will write some rule for SEO and User-Friendly URLs. You can access employee list using this http://ci_test/employee url instead of http://ci_test/index.php/employee.

12345

RewriteEngine onRewriteCond $1 !^(index\.php|resources|robots\.txt)RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ index.php/$1 [L,QSA]

Modify autoload.php We will modify autoload.php file for template library class.We will add helper library class in this file.You can find changes later on this tutorial.

Change Default Controller In Routes.Php File

Let’s change default controller name from welcome to home, whenever page will load into browser without the controller name, The default controller will be home and index() method will be call.

$route['default_controller'] = 'home';

How To Created Template Library In CI

Step 1: We will create template class for render template view file.Created a template.php file and stored into the /library folder.

1234567891011121314151617181920212223242526

<?phpclass Template { //ci instance private $CI; //template Data var $template_data = array(); public function __construct() { $this->CI =& get_instance(); } function set($content_area, $value) { $this->template_data[$content_area] = $value; } function load($template = '', $name ='', $view = '' , $view_data = array(), $return = FALSE) { $this->set($name , $this->CI->load->view($view, $view_data, TRUE)); $this->CI->load->view('layouts/'.$template, $this->template_data); } }?>

Step 2: We will create a default_layout.php view file into the views/layouts/ folder.This file will contains all js, css libraries files with html inner container variable.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253

<!DOCTYPE html><html lang="en"><head> <title>Test CI Application - <?php echo $title;?></title> <meta name="description" content="overview &amp; stats" /> <!-- bootstrap & fontawesome --> <link rel="stylesheet" href="<?php echo base_url();?>assets/css/bootstrap.min.css" /> <link rel="stylesheet" href="<?php echo base_url();?>assets/font-awesome/4.2.0/css/font-awesome.min.css" /> <link rel="stylesheet" href="<?php echo base_url();?>assets/css/theme.min.css" class="theme-stylesheet" id="theme-style" /> <link rel="stylesheet" href="<?php echo base_url();?>assets/fonts/fonts.googleapis.com.css" /> <!-- page specific plugin styles --></head><body class="no-skin"><div id="navbar" class="navbar navbar-default"></div> <div class="page-content"> <div class="row"> <div class="col-xs-12"> <!-- PAGE CONTENT BEGINS --> <?php echo $contents;?> <!-- PAGE CONTENT ENDS --> </div><!-- /.col --></div><!-- /.row --></div><!-- /.page-content --></div></div><!-- /.main-content --> <div class="footer"><div class="footer-inner"><div class="footer-content"><span class="bigger-120"> Copyright © js-tutorials.com. All rights reserved.</span></div></div></div> <a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse"><i class="ace-icon fa fa-angle-double-up icon-only bigger-110"></i></a></div><!-- /.main-container --><!-- basic scripts --><script type="text/javascript" src="<?php echo base_url();?>assets/js/jquery.2.1.1.min.js"></script><script src="<?php echo base_url();?>assets/js/bootstrap.min.js"></script><script src="<?php echo base_url();?>assets/js/theme.min.js"></script></body></html>

Step 3: Added template entry into config/autoload.php file to load template class when the CI has been initialize.

$autoload['libraries'] = array('template'); $autoload['helper'] = array('url');

Created Home Controller In CI

We have made change in config for default controller which was home, so we will create new php file Home.php file into the /controllers folder.Also created a index() method into it.Please add below code into Home.php controller file.

1234567

public function index() { header("Access-Control-Allow-Origin: *"); $data = array(); $this->template->set('title', 'Home'); $this->template->load('default_layout', 'contents' , 'home', $data); }

Create Home View File

We have defined home view file in index() controller method.We will create a new home.php file into views/ folder.Please add below code into this file,

1234

<?phpdefined('BASEPATH') OR exit('No direct script access allowed');?>Lorem Ipsum ...... Ipsum.

Codeigniter Pages Using Template

We will add a new page into this codeigniter tutorial, So that you can understand the use of layout.Let’s create a about page which will render on the same page layout.We just send view to the Default Layout file and rest of theme structure same as home. Step 1: Create a new entry route into route.php file.

1

$route['home/about'] = 'home/about';

We have mentioned home is controller and about is a method.

Step 2: Created about method into Home.php controller file.

123456

public function about() { $data = array(); $this->template->set('title', 'about'); $this->template->load('default_layout', 'contents' , 'about', $data); }

Step 3: Created about.php view file into views folder.

1234

<?phpdefined('BASEPATH') OR exit('No direct script access allowed');?>It is a long .......

Conclusion

This is a codeigniter beginners tutorial help to integrate beautiful bootstrap theme with Codeigniter using Layout.You can also integrate simple HTML theme using this codeigniter tutorial.We have create new controller and view file and render them using template.

You can download source code from below link.

Download Source CodeDebug: it's the locked content, but now it's revealed. Why?

Php codeigniter tutorial. permalink.

Last updated

Was this helpful?