As CodeIgniter has announced version 3 (full changelog here) recently and it introduces some major changes in folder structure, I am taking this chance to further enhance my code and make use of new features from the new CI, therefore I will be moving to new repository for next version of CI Bootstrap.
Please stay tuned to ci_bootstrap_3 which is work-in-progress at this moment: https://github.com/waifung0207/ci_bootstrap_3
This repository will be slowly depreciated and updated only when CodeIgniter 2 release securify fix.
A starter template that supports multi-tenant (frontend / backend) website in a single application.
This repository is developed upon the following tools:
- CodeIgniter (v2.2.2) - PHP framework
- Bootstrap (v3.3.4) - popular frontend framework
- Bootswatch (v3.3.4) - theme options capatible to Bootstrap framework
- Grocery CRUD (v1.5.1) - feature-rich library to build CRUD tables
- Image CRUD (v0.6) - CRUD library for image management
- AdminLTE (v2.0.5) - bootstrap theme for backend system
- codeigniter-base-model - MY_Model implementation for easier database handling
Please note this project will change from time to time (breaking changes is unavoidable among commits by now), but should works fine at production (at least in my personal jobs).
This repository contains setup for rapid development:
- Multi-tenant (frontend / backend) website in single application
- Backend site in AdminLTE v2 theme
- Backend site with Grocery CRUD integration
- Backend site with authenication and backend user management
- Frontend site with basic membership system (sign up, activate, login, forgot password, etc.)
- Preset layouts and templates
- Preset asset pipeline (e.g. minify scripts, image optimization) via Gulp
- Preset MY_Controller and MY_Model classes
- Menu config from single file
- Breadcrumb handling
- Custom 404 error page
- Preset email layout template
- Helper classes for enhanced code reuse (see the Helpers section)
- Multilingual support (frontend)
- PHP 5.5+ (mainly for password_hash() and password_verify() functions as used from auth_helper); otherwise see issue #2 for alternative method but minimum PHP version will still be 5.4+, due to my usage of shortcut syntax throughout the repository
- Apache 2.2+ with rewrite mod enabled
- MySQL 5.5+
- Git clone this repository to a LAMP / WAMP server
- In prior to use both frontend & backend system, create a MySQL database (e.g. named "ci_bootstrap"), then import data from sql/ci_bootstrap.sql
- Update database config file (e.g. under applications/backend/config)
- Frontend Website can be visited via link like: http://localhost/ci_bootstrap/
- Backend System can be visited via link like: http://localhost/ci_bootstrap/backend.php; and login as admin/admin or staff/staff
- That's it! You should see a fancy membership-enabled frontend, as well as an AdminLTE dashboard from backend
Some useful helpers are created for better code reuse throught the project; any of them can be easily edited depends on your own use.
- alert_helper: to handle form message (e.g. success/error) in a easy way
- auth_helper: to handle user authentication
- MY_email_helper: to handle email sending operations
- MY_form_helper: to shorten CodeIgniter's form validation; and functions to generate common form elements
- MY_html_helper: to generate AdminLTE widgets
- MY_url_helper: shortcut functions to reach assets
A gulp file (gulpfile.js) is prepared for asset pipeline. To make use of it, you need to pre-install the following tools before building the template:
- node.js: which includes a package manager (npm) for node modules
- bower: package manager for bower components (to handle third-party assets)
- gulp: task runner for lots of purposes, e.g. compile, combine and minify scripts
Afterwards, change directory from your terminal to where you cloned the repository.
- Update bower.json then call bower to download third-party packages:
bower install
- Update package.json then install gulp packages:
npm install
- Update gulpfile.js (which is written in CoffeeScript), then use gulp command to start preset tasks:
gulp
- After all you will find the post-processed files under the "assets/dist" folder, means you have successfully configured it :)
Frontend - Sign Up:
Backend - Home:
Note: Current screenshots for Backend System is outdated since the repo has upgraded to latest AdminLTE v2 already.
More screenshots can be viewed from the screenshots folder under this repository.
Project changelog is recorded down in the CHANGELOG file.
- Update screenshots
- Enhance Gulpfile (e.g. Browser Sync, Sass)
- Add example of using Image CRUD
- Caching setup
- More helpers to enhance code reusability
- Better documentation
- API site