├── .gitignore
├── LICENSE.md
├── README.md
├── app
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── config
│ ├── autoload.php
│ ├── config.php
│ ├── constants.php
│ ├── database.php
│ ├── doctypes.php
│ ├── foreign_chars.php
│ ├── hooks.php
│ ├── index.html
│ ├── migration.php
│ ├── mimes.php
│ ├── profiler.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── Account.php
│ ├── Administrator.php
│ ├── Page.php
│ ├── Welcome.php
│ ├── admin
│ │ ├── Contents.php
│ │ ├── Dashboard.php
│ │ ├── Menus.php
│ │ ├── Settings.php
│ │ └── Users.php
│ └── index.html
├── core
│ ├── AZ_Loader.php
│ └── index.html
├── database
│ ├── index.html
│ └── setup
│ │ ├── index.html
│ │ └── install.sql
├── errors
│ ├── error_404.php
│ ├── error_db.php
│ ├── error_general.php
│ ├── error_php.php
│ └── index.html
├── helpers
│ ├── AZ_date_helper.php
│ ├── AZ_form_helper.php
│ ├── AZ_language_helper.php
│ ├── AZ_url_helper.php
│ ├── content_helper.php
│ ├── index.html
│ ├── menu_helper.php
│ ├── setting_helper.php
│ ├── template_helper.php
│ └── user_helper.php
├── hooks
│ ├── BootigniterLoader.php
│ ├── LanguageLoader.php
│ └── index.html
├── index.html
├── language
│ ├── english
│ │ ├── app_lang.php
│ │ ├── index.html
│ │ └── site_lang.php
│ ├── hindi
│ │ ├── app_lang.php
│ │ ├── index.html
│ │ └── site_lang.php
│ └── index.html
├── libraries
│ └── index.html
├── logs
│ └── index.html
├── models
│ ├── Az.php
│ ├── Content.php
│ ├── Menu.php
│ ├── Message.php
│ ├── Setting.php
│ ├── User.php
│ └── index.html
├── third_party
│ └── index.html
└── views
│ ├── admin
│ ├── blocks
│ │ ├── contents
│ │ │ ├── field-form.php
│ │ │ ├── fields.php
│ │ │ ├── fieldset-form.php
│ │ │ ├── fieldset.php
│ │ │ ├── form.php
│ │ │ ├── group-form.php
│ │ │ ├── groups.php
│ │ │ ├── index.html
│ │ │ ├── index.php
│ │ │ ├── language-form.php
│ │ │ ├── languages.php
│ │ │ ├── type-form.php
│ │ │ └── types.php
│ │ ├── dashboard
│ │ │ ├── index.html
│ │ │ ├── index.php
│ │ │ ├── recent-activity.php
│ │ │ ├── visits-chart.php
│ │ │ └── widgets.php
│ │ ├── default.php
│ │ ├── header
│ │ │ ├── index.html
│ │ │ ├── message-navigation.php
│ │ │ ├── notify-navigation.php
│ │ │ └── user-navigation.php
│ │ ├── index.html
│ │ ├── login.php
│ │ ├── menus
│ │ │ ├── index.html
│ │ │ ├── index.php
│ │ │ ├── item-form.php
│ │ │ ├── menu-form.php
│ │ │ └── section-form.php
│ │ ├── messages
│ │ │ ├── form.php
│ │ │ ├── forward-form.php
│ │ │ ├── index.html
│ │ │ ├── index.php
│ │ │ ├── label-form.php
│ │ │ ├── label.php
│ │ │ ├── notifications.php
│ │ │ └── search.php
│ │ ├── navigations.php
│ │ ├── settings
│ │ │ ├── field-form.php
│ │ │ ├── group-form.php
│ │ │ ├── index.html
│ │ │ ├── index.php
│ │ │ └── section-form.php
│ │ ├── system-message.php
│ │ └── users
│ │ │ ├── accesses-form.php
│ │ │ ├── accesses.php
│ │ │ ├── form.php
│ │ │ ├── group-form.php
│ │ │ ├── groups.php
│ │ │ ├── index.html
│ │ │ ├── index.php
│ │ │ └── permissions.php
│ ├── index.html
│ └── layouts
│ │ ├── block-only.php
│ │ ├── footer.php
│ │ ├── head.php
│ │ ├── header.php
│ │ ├── index.html
│ │ ├── left-content.php
│ │ └── login.php
│ ├── errors
│ ├── cli
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ ├── html
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ └── index.html
│ ├── front
│ ├── default
│ │ ├── blocks
│ │ │ ├── account
│ │ │ │ ├── dashboard.php
│ │ │ │ ├── index.html
│ │ │ │ ├── index.php
│ │ │ │ ├── login-box.php
│ │ │ │ ├── password-box.php
│ │ │ │ ├── profile-form.php
│ │ │ │ ├── profile-menu.php
│ │ │ │ ├── register-box.php
│ │ │ │ └── sidebar-menu.php
│ │ │ ├── content
│ │ │ │ ├── index.html
│ │ │ │ └── page.php
│ │ │ ├── default.php
│ │ │ ├── header
│ │ │ │ ├── carousel.php
│ │ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── index.php
│ │ │ ├── sidebar
│ │ │ │ ├── index.html
│ │ │ │ ├── left.php
│ │ │ │ └── right.php
│ │ │ └── system-message.php
│ │ ├── index.html
│ │ └── layouts
│ │ │ ├── block-only.php
│ │ │ ├── content-right.php
│ │ │ ├── content.php
│ │ │ ├── footer.php
│ │ │ ├── head.php
│ │ │ ├── header.php
│ │ │ ├── index.html
│ │ │ └── left-content.php
│ └── index.html
│ ├── index.html
│ ├── page_not_found.php
│ └── welcome_message.php
├── index.php
├── media
├── contents
│ ├── files
│ │ └── index.html
│ └── index.html
├── index.html
└── users
│ ├── avatar.png
│ ├── az.jpg
│ └── index.html
├── skins
├── admin
│ ├── css
│ │ ├── bootstrap-colorpicker.min.css
│ │ ├── bootstrap.min.css
│ │ ├── chosen.min.css
│ │ ├── font-awesome.min.css
│ │ ├── ie.css
│ │ ├── index.html
│ │ ├── jquery-ui.min.css
│ │ ├── jquery.dataTables.min.css
│ │ ├── style.css
│ │ └── theme.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── fontawesome-webfont.woff2
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── index.html
│ ├── images
│ │ ├── alpha-horizontal.png
│ │ ├── alpha.png
│ │ ├── apple-touch-icon.png
│ │ ├── chosen-sprite.png
│ │ ├── chosen-sprite@2x.png
│ │ ├── favicon.ico
│ │ ├── hue-horizontal.png
│ │ ├── hue.png
│ │ ├── index.html
│ │ ├── saturation.png
│ │ └── ui-icons.png
│ ├── index.html
│ └── scripts
│ │ ├── bootbox.min.js
│ │ ├── bootstrap-colorpicker.min.js
│ │ ├── bootstrap.min.js
│ │ ├── chosen.jquery.js
│ │ ├── chosen.jquery.min.js
│ │ ├── index.html
│ │ ├── jquery-1.11.3.min.js
│ │ ├── jquery-ui-1.10.4.custom.min.js
│ │ ├── jquery.cookie.js
│ │ ├── jquery.dataTables.min.js
│ │ ├── jquery.flot.categories.min.js
│ │ ├── jquery.flot.min.js
│ │ ├── jquery.flot.resize.min.js
│ │ ├── jquery.flot.spline.min.js
│ │ ├── jquery.flot.tooltip.min.js
│ │ ├── jquery.slimscroll.min.js
│ │ └── theme.js
├── front
│ ├── default
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── index.html
│ │ │ └── style.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── fontawesome-webfont.woff2
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── index.html
│ │ ├── images
│ │ │ ├── apple-touch-icon.png
│ │ │ ├── bg.png
│ │ │ ├── favicon.ico
│ │ │ └── index.html
│ │ ├── index.html
│ │ └── scripts
│ │ │ ├── bootstrap.min.js
│ │ │ ├── index.html
│ │ │ ├── jquery-1.11.3.min.js
│ │ │ └── main.js
│ └── index.html
└── index.html
└── system
├── .htaccess
├── core
├── Benchmark.php
├── CodeIgniter.php
├── Common.php
├── Config.php
├── Controller.php
├── Exceptions.php
├── Hooks.php
├── Input.php
├── Lang.php
├── Loader.php
├── Log.php
├── Model.php
├── Output.php
├── Router.php
├── Security.php
├── URI.php
├── Utf8.php
├── compat
│ ├── hash.php
│ ├── index.html
│ ├── mbstring.php
│ ├── password.php
│ └── standard.php
└── index.html
├── database
├── DB.php
├── DB_cache.php
├── DB_driver.php
├── DB_forge.php
├── DB_query_builder.php
├── DB_result.php
├── DB_utility.php
├── drivers
│ ├── cubrid
│ │ ├── cubrid_driver.php
│ │ ├── cubrid_forge.php
│ │ ├── cubrid_result.php
│ │ ├── cubrid_utility.php
│ │ └── index.html
│ ├── ibase
│ │ ├── ibase_driver.php
│ │ ├── ibase_forge.php
│ │ ├── ibase_result.php
│ │ ├── ibase_utility.php
│ │ └── index.html
│ ├── index.html
│ ├── mssql
│ │ ├── index.html
│ │ ├── mssql_driver.php
│ │ ├── mssql_forge.php
│ │ ├── mssql_result.php
│ │ └── mssql_utility.php
│ ├── mysql
│ │ ├── index.html
│ │ ├── mysql_driver.php
│ │ ├── mysql_forge.php
│ │ ├── mysql_result.php
│ │ └── mysql_utility.php
│ ├── mysqli
│ │ ├── index.html
│ │ ├── mysqli_driver.php
│ │ ├── mysqli_forge.php
│ │ ├── mysqli_result.php
│ │ └── mysqli_utility.php
│ ├── oci8
│ │ ├── index.html
│ │ ├── oci8_driver.php
│ │ ├── oci8_forge.php
│ │ ├── oci8_result.php
│ │ └── oci8_utility.php
│ ├── odbc
│ │ ├── index.html
│ │ ├── odbc_driver.php
│ │ ├── odbc_forge.php
│ │ ├── odbc_result.php
│ │ └── odbc_utility.php
│ ├── pdo
│ │ ├── index.html
│ │ ├── pdo_driver.php
│ │ ├── pdo_forge.php
│ │ ├── pdo_result.php
│ │ ├── pdo_utility.php
│ │ └── subdrivers
│ │ │ ├── index.html
│ │ │ ├── pdo_4d_driver.php
│ │ │ ├── pdo_4d_forge.php
│ │ │ ├── pdo_cubrid_driver.php
│ │ │ ├── pdo_cubrid_forge.php
│ │ │ ├── pdo_dblib_driver.php
│ │ │ ├── pdo_dblib_forge.php
│ │ │ ├── pdo_firebird_driver.php
│ │ │ ├── pdo_firebird_forge.php
│ │ │ ├── pdo_ibm_driver.php
│ │ │ ├── pdo_ibm_forge.php
│ │ │ ├── pdo_informix_driver.php
│ │ │ ├── pdo_informix_forge.php
│ │ │ ├── pdo_mysql_driver.php
│ │ │ ├── pdo_mysql_forge.php
│ │ │ ├── pdo_oci_driver.php
│ │ │ ├── pdo_oci_forge.php
│ │ │ ├── pdo_odbc_driver.php
│ │ │ ├── pdo_odbc_forge.php
│ │ │ ├── pdo_pgsql_driver.php
│ │ │ ├── pdo_pgsql_forge.php
│ │ │ ├── pdo_sqlite_driver.php
│ │ │ ├── pdo_sqlite_forge.php
│ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ └── pdo_sqlsrv_forge.php
│ ├── postgre
│ │ ├── index.html
│ │ ├── postgre_driver.php
│ │ ├── postgre_forge.php
│ │ ├── postgre_result.php
│ │ └── postgre_utility.php
│ ├── sqlite
│ │ ├── index.html
│ │ ├── sqlite_driver.php
│ │ ├── sqlite_forge.php
│ │ ├── sqlite_result.php
│ │ └── sqlite_utility.php
│ ├── sqlite3
│ │ ├── index.html
│ │ ├── sqlite3_driver.php
│ │ ├── sqlite3_forge.php
│ │ ├── sqlite3_result.php
│ │ └── sqlite3_utility.php
│ └── sqlsrv
│ │ ├── index.html
│ │ ├── sqlsrv_driver.php
│ │ ├── sqlsrv_forge.php
│ │ ├── sqlsrv_result.php
│ │ └── sqlsrv_utility.php
└── index.html
├── fonts
├── index.html
└── texb.ttf
├── helpers
├── array_helper.php
├── captcha_helper.php
├── cookie_helper.php
├── date_helper.php
├── directory_helper.php
├── download_helper.php
├── email_helper.php
├── file_helper.php
├── form_helper.php
├── html_helper.php
├── index.html
├── inflector_helper.php
├── language_helper.php
├── number_helper.php
├── path_helper.php
├── security_helper.php
├── smiley_helper.php
├── string_helper.php
├── text_helper.php
├── typography_helper.php
├── url_helper.php
└── xml_helper.php
├── index.html
├── language
├── english
│ ├── calendar_lang.php
│ ├── date_lang.php
│ ├── db_lang.php
│ ├── email_lang.php
│ ├── form_validation_lang.php
│ ├── ftp_lang.php
│ ├── imglib_lang.php
│ ├── index.html
│ ├── migration_lang.php
│ ├── number_lang.php
│ ├── pagination_lang.php
│ ├── profiler_lang.php
│ ├── unit_test_lang.php
│ └── upload_lang.php
└── index.html
└── libraries
├── Cache
├── Cache.php
├── drivers
│ ├── Cache_apc.php
│ ├── Cache_dummy.php
│ ├── Cache_file.php
│ ├── Cache_memcached.php
│ ├── Cache_redis.php
│ ├── Cache_wincache.php
│ └── index.html
└── index.html
├── Calendar.php
├── Cart.php
├── Driver.php
├── Email.php
├── Encrypt.php
├── Encryption.php
├── Form_validation.php
├── Ftp.php
├── Image_lib.php
├── Javascript.php
├── Javascript
├── Jquery.php
└── index.html
├── Migration.php
├── Pagination.php
├── Parser.php
├── Profiler.php
├── Session
├── Session.php
├── SessionHandlerInterface.php
├── Session_driver.php
├── drivers
│ ├── Session_database_driver.php
│ ├── Session_files_driver.php
│ ├── Session_memcached_driver.php
│ ├── Session_redis_driver.php
│ └── index.html
└── index.html
├── Table.php
├── Trackback.php
├── Typography.php
├── Unit_test.php
├── Upload.php
├── User_agent.php
├── Xmlrpc.php
├── Xmlrpcs.php
├── Zip.php
└── index.html
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | ####The MIT License (MIT)
2 |
3 | Copyright (c) 2015 AZinkey LLC,
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | BootIgniter - The First CMS Boilerplate
2 | ==================
3 |
4 |
5 | Bootigniter - An Open Source CMS Boilerplate (World's First Truly Open Source CMS Boilerplate)
6 |
7 | Bootigniter is a Custom Content Management System (CMS) which encourage you to build your own content management system (CMS) using MVC framework.
8 | An open source project of Codeigniter ® with Bootstrap 3.x ®, in form of "Bootigniter".
9 | it gives scalable development framework for all (Developers & Designers). It is a Lightweight package for you to build your own Custom CMS, instead of customize & removing unnecessary features
10 |
11 | Or you can say it is an another CMS like Joomla, Wordpress but its not so much popular or heavy mixed up of unwanted code execution (features/extension)
12 | Where its just a Custom CMS from Scratch Based on CodeIgniter ® http://www.codeigniter.com/ and Bootstrap ® http://getbootstrap.com Framework.
13 |
14 |
15 | Bootigniter (SMART CMS Boilerplate), Version 2 - Coming Soon
16 |
17 | sponsored by https://www.hygym.co.uk/
18 |
19 | Why choose Bootigniter as CMS
20 | ===
21 |
22 | * World's Smallest footprint but Powerful CMS Framework (less then 2MB)
23 |
24 | * Exceptional performance, Everything is Lighting Fast
25 |
26 | * Do not want to compromise with vulnerabilities
27 |
28 | * Never sure about your content?, flexible Content Type
29 |
30 | * Mobile Ready Design Framework, Super clean HTML5/CSS3
31 |
32 | * +500 Retina ready Iconic Font
33 |
34 | * Instant Setup
35 |
36 |
37 |
38 | Features highlights
39 | ===
40 |
41 | * Fully White Label Branding
42 |
43 | * Administration with Access Control Level
44 |
45 | * Flexible Configuration/Settings Panel
46 |
47 | * Unlimited User groups with controlled access
48 |
49 | * Create Custom Content Types with Multi language Support
50 |
51 | * Extendable Pages and Menus Managers
52 |
53 |
54 | 2 Step - Installation (Boot Setup)
55 | ===
56 |
57 | ###Step 1.) UPDATE DATABASE SETTINGS
58 |
59 | ```bash
60 | /app/config/database.php
61 | ```
62 |
63 | ###Step 2.) Configure Your BootIgniter Package
64 | configurations like "Base Site URL", "language" etc..
65 |
66 | ```bash
67 | /app/config/config.php
68 | ```
69 |
70 | License
71 | ===
72 |
73 | Available for use under the [MIT] (https://opensource.org/licenses/MIT) License. It Means Bootigniter is fully open source and GPL friendly. You can use it for commercial projects, open source projects, or really after download, its Your.
74 |
--------------------------------------------------------------------------------
/app/.htaccess:
--------------------------------------------------------------------------------
1 | Deny from all
--------------------------------------------------------------------------------
/app/cache/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 6 | 'xhtml1-strict' => '', 7 | 'xhtml1-trans' => '', 8 | 'xhtml1-frame' => '', 9 | 'xhtml-basic11' => '', 10 | 'html5' => '', 11 | 'html4-strict' => '', 12 | 'html4-trans' => '', 13 | 'html4-frame' => '', 14 | 'mathml1' => '', 15 | 'mathml2' => '', 16 | 'svg10' => '', 17 | 'svg11' => '', 18 | 'svg11-basic' => '', 19 | 'svg11-tiny' => '', 20 | 'xhtml-math-svg-xh' => '', 21 | 'xhtml-math-svg-sh' => '', 22 | 'xhtml-rdfa-1' => '', 23 | 'xhtml-rdfa-2' => '' 24 | ); 25 | -------------------------------------------------------------------------------- /app/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 14 | '/ö|œ/' => 'oe', 15 | '/ü/' => 'ue', 16 | '/Ä/' => 'Ae', 17 | '/Ü/' => 'Ue', 18 | '/Ö/' => 'Oe', 19 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά|Ả|Ạ|Ầ|Ẫ|Ẩ|Ậ|Ằ|Ắ|Ẵ|Ẳ|Ặ|А/' => 'A', 20 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά|ả|ạ|ầ|ấ|ẫ|ẩ|ậ|ằ|ắ|ẵ|ẳ|ặ|а/' => 'a', 21 | '/Б/' => 'B', 22 | '/б/' => 'b', 23 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 24 | '/ç|ć|ĉ|ċ|č/' => 'c', 25 | '/Д/' => 'D', 26 | '/д/' => 'd', 27 | '/Ð|Ď|Đ|Δ/' => 'Dj', 28 | '/ð|ď|đ|δ/' => 'dj', 29 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ|Ẽ|Ẻ|Ẹ|Ề|Ế|Ễ|Ể|Ệ|Е|Э/' => 'E', 30 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε|ẽ|ẻ|ẹ|ề|ế|ễ|ể|ệ|е|э/' => 'e', 31 | '/Ф/' => 'F', 32 | '/ф/' => 'f', 33 | '/Ĝ|Ğ|Ġ|Ģ|Γ|Г|Ґ/' => 'G', 34 | '/ĝ|ğ|ġ|ģ|γ|г|ґ/' => 'g', 35 | '/Ĥ|Ħ/' => 'H', 36 | '/ĥ|ħ/' => 'h', 37 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ|Ỉ|Ị|И|Ы/' => 'I', 38 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ|ỉ|ị|и|ы|ї/' => 'i', 39 | '/Ĵ/' => 'J', 40 | '/ĵ/' => 'j', 41 | '/Ķ|Κ|К/' => 'K', 42 | '/ķ|κ|к/' => 'k', 43 | '/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ|Л/' => 'L', 44 | '/ĺ|ļ|ľ|ŀ|ł|λ|л/' => 'l', 45 | '/М/' => 'M', 46 | '/м/' => 'm', 47 | '/Ñ|Ń|Ņ|Ň|Ν|Н/' => 'N', 48 | '/ñ|ń|ņ|ň|ʼn|ν|н/' => 'n', 49 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ|Ỏ|Ọ|Ồ|Ố|Ỗ|Ổ|Ộ|Ờ|Ớ|Ỡ|Ở|Ợ|О/' => 'O', 50 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ|ỏ|ọ|ồ|ố|ỗ|ổ|ộ|ờ|ớ|ỡ|ở|ợ|о/' => 'o', 51 | '/П/' => 'P', 52 | '/п/' => 'p', 53 | '/Ŕ|Ŗ|Ř|Ρ|Р/' => 'R', 54 | '/ŕ|ŗ|ř|ρ|р/' => 'r', 55 | '/Ś|Ŝ|Ş|Ș|Š|Σ|С/' => 'S', 56 | '/ś|ŝ|ş|ș|š|ſ|σ|ς|с/' => 's', 57 | '/Ț|Ţ|Ť|Ŧ|τ|Т/' => 'T', 58 | '/ț|ţ|ť|ŧ|т/' => 't', 59 | '/Þ|þ/' => 'th', 60 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ|Ũ|Ủ|Ụ|Ừ|Ứ|Ữ|Ử|Ự|У/' => 'U', 61 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ|ủ|ụ|ừ|ứ|ữ|ử|ự|у/' => 'u', 62 | '/Ƴ|Ɏ|Ỵ|Ẏ|Ӳ|Ӯ|Ў|Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ|Ỳ|Ỹ|Ỷ|Ỵ|Й/' => 'Y', 63 | '/ẙ|ʏ|ƴ|ɏ|ỵ|ẏ|ӳ|ӯ|ў|ý|ÿ|ŷ|ỳ|ỹ|ỷ|ỵ|й/' => 'y', 64 | '/В/' => 'V', 65 | '/в/' => 'v', 66 | '/Ŵ/' => 'W', 67 | '/ŵ/' => 'w', 68 | '/Ź|Ż|Ž|Ζ|З/' => 'Z', 69 | '/ź|ż|ž|ζ|з/' => 'z', 70 | '/Æ|Ǽ/' => 'AE', 71 | '/ß/' => 'ss', 72 | '/IJ/' => 'IJ', 73 | '/ij/' => 'ij', 74 | '/Œ/' => 'OE', 75 | '/ƒ/' => 'f', 76 | '/ξ/' => 'ks', 77 | '/π/' => 'p', 78 | '/β/' => 'v', 79 | '/μ/' => 'm', 80 | '/ψ/' => 'ps', 81 | '/Ё/' => 'Yo', 82 | '/ё/' => 'yo', 83 | '/Є/' => 'Ye', 84 | '/є/' => 'ye', 85 | '/Ї/' => 'Yi', 86 | '/Ж/' => 'Zh', 87 | '/ж/' => 'zh', 88 | '/Х/' => 'Kh', 89 | '/х/' => 'kh', 90 | '/Ц/' => 'Ts', 91 | '/ц/' => 'ts', 92 | '/Ч/' => 'Ch', 93 | '/ч/' => 'ch', 94 | '/Ш/' => 'Sh', 95 | '/ш/' => 'sh', 96 | '/Щ/' => 'Shch', 97 | '/щ/' => 'shch', 98 | '/Ъ|ъ|Ь|ь/' => '', 99 | '/Ю/' => 'Yu', 100 | '/ю/' => 'yu', 101 | '/Я/' => 'Ya', 102 | '/я/' => 'ya' 103 | ); 104 | -------------------------------------------------------------------------------- /app/config/hooks.php: -------------------------------------------------------------------------------- 1 | 'BootLoader', 16 | 'function' => 'initialize', 17 | 'filename' => 'BootigniterLoader.php', 18 | 'filepath' => 'hooks' 19 | ); 20 | $hook['post_controller_constructor'][] = array( 21 | 'class' => 'LanguageLoader', 22 | 'function' => 'initialize', 23 | 'filename' => 'LanguageLoader.php', 24 | 'filepath' => 'hooks' 25 | ); -------------------------------------------------------------------------------- /app/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->current() this is the version that schema will 69 | | be upgraded / downgraded to. 70 | | 71 | */ 72 | $config['migration_version'] = 0; 73 | 74 | /* 75 | |-------------------------------------------------------------------------- 76 | | Migrations Path 77 | |-------------------------------------------------------------------------- 78 | | 79 | | Path to your migrations folder. 80 | | Typically, it will be within your application path. 81 | | Also, writing permission is required within the migrations path. 82 | | 83 | */ 84 | $config['migration_path'] = APPPATH.'migrations/'; 85 | -------------------------------------------------------------------------------- /app/config/profiler.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'page'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /app/controllers/Administrator.php: -------------------------------------------------------------------------------- 1 | 'login')); 48 | } 49 | 50 | /** 51 | * Match User details and Logged in Application 52 | * 53 | * @return Redirect 54 | */ 55 | public function login() { 56 | 57 | if (user::id()) { 58 | AZ::redirect('admin/dashboard'); 59 | } 60 | 61 | $post = $this->input->post(); 62 | 63 | if ($this->_validate() == FALSE) { 64 | $this->index(); 65 | return false; 66 | } 67 | $user_id = $this->user->authenicate($post['username'], $post['password']); 68 | 69 | if ($user_id) { 70 | if (have_permission('dashboard/index')) { 71 | AZ::redirect('admin/dashboard'); 72 | } else { 73 | user::flush(); 74 | AZ::redirectError('administrator', __('Unauthorized Access', true)); 75 | } 76 | } else { 77 | AZ::redirectError('administrator', 'Invalid'); 78 | } 79 | } 80 | 81 | /** 82 | * Flush user session & logged out from application 83 | * 84 | * @return Redirect 85 | */ 86 | public function logout() { 87 | 88 | user::flush(); 89 | 90 | AZ::redirectSuccess('administrator'); 91 | } 92 | 93 | /** 94 | * Verify User Credential 95 | * 96 | * @return boolen 97 | */ 98 | private function _validate() { 99 | 100 | $this->load->library('form_validation'); 101 | $this->form_validation->set_rules('username', 'Username', 'required'); 102 | $this->form_validation->set_rules('password', 'Password', 'required'); 103 | 104 | return $this->form_validation->run(); 105 | } 106 | 107 | } 108 | 109 | /* End of file admin.php */ 110 | /* Location: ./app/controllers/admin.php */ -------------------------------------------------------------------------------- /app/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | 19 | * @see https://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function index() 22 | { 23 | $this->load->view('welcome_message'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /app/database/setup/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /app/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Severity:
6 |Message:
7 |Filename:
8 |Line Number:
9 | 10 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /app/helpers/AZ_date_helper.php: -------------------------------------------------------------------------------- 1 | $timestamp); 47 | 48 | // Create suffix based on past/future 49 | $suffix = ($past) ? ' ago' : ' from now'; 50 | 51 | // Actual time string of timestamp ie 4:54 pm 52 | $timestr = date('g:i a', $timestamp); 53 | 54 | $diff = abs($timestamp - $base); 55 | 56 | $periods = array('year' => 31536000, 'month' => 2628000, 'day' => 86400, 'hour' => 3600, 'minute' => 60, 'second' => 1); 57 | 58 | // create array holding count of each period 59 | 60 | $out = array(); 61 | 62 | foreach ($periods as $period => $seconds) { 63 | if ($diff > $seconds) { 64 | $result = floor($diff / $seconds); 65 | $diff = $diff % $seconds; 66 | $out[] = array($period, $result); 67 | } 68 | } 69 | 70 | // Get largest period, other counts are still in $out for use 71 | $top = array_shift($out); 72 | 73 | switch ($top[0]) { 74 | case 'month' : 75 | $output = $top[1] == 1 ? ( $past ? 'last month' : 'next month' ) : $top[1] . ' months' . $suffix; 76 | break; 77 | case 'day' : 78 | $output = $top[1] == 1 ? ( $past ? 'yesterday' : 'tomorrow' ) . ', ' . $timestr : $top[1] . ' days' . $suffix; 79 | break; 80 | case 'hour': 81 | // Calculate in case, for example if yesterday was only 7 hours ago 82 | $output = date('j', $base) == date('j', $timestamp) ? 'today, ' . $timestr : (( $past ? 'yesterday' : 'tomorrow' ) . ', ' . $timestr); 83 | break; 84 | default : 85 | $output = $top[1] . ' ' . $top[0] . ( $top[1] > 1 ? 's' : '' ) . $suffix; 86 | break; 87 | } 88 | 89 | 90 | return ucfirst($output); 91 | } 92 | 93 | } 94 | 95 | /* End of file az_date_helper.php */ 96 | /* Location: ./app/helpers/az_date_helper.php */ -------------------------------------------------------------------------------- /app/helpers/AZ_url_helper.php: -------------------------------------------------------------------------------- 1 | segment(1); 40 | $is_admin = ($admin == 'administrator' || $admin == 'admin') ? true : false; 41 | $dir = ($is_admin) ? 'skins/admin/' : 'skins/front/' . $theme . '/'; 42 | return base_url() . $dir; 43 | } 44 | 45 | } 46 | 47 | /** 48 | * Get Media directory url 49 | * 50 | * 51 | * @access public 52 | * @param media 53 | * @return string 54 | */ 55 | if (!function_exists('media_url')) { 56 | 57 | function media_url($media = 'media/') { 58 | return base_url() . $media; 59 | } 60 | 61 | } 62 | 63 | /** 64 | * Check segments 65 | * 66 | * 67 | * @access public 68 | * @return boolen 69 | */ 70 | if (!function_exists('is_front')) { 71 | 72 | function is_front() { 73 | $uri = & load_class('URI', 'core'); 74 | if(count($uri->segments)){ 75 | return false; 76 | } else { 77 | return true; 78 | } 79 | } 80 | 81 | } 82 | 83 | /** 84 | * Get segment 1 85 | * 86 | * 87 | * @access public 88 | * @return integer 89 | */ 90 | if (!function_exists('segment_1')) { 91 | 92 | function segment_1() { 93 | $uri = & load_class('URI', 'core'); 94 | return $uri->segment(1); 95 | } 96 | 97 | } 98 | 99 | /** 100 | * Get segment 2 101 | * 102 | * 103 | * @access public 104 | * @return integer 105 | */ 106 | if (!function_exists('segment_2')) { 107 | 108 | function segment_2() { 109 | $uri = & load_class('URI', 'core'); 110 | return $uri->segment(2); 111 | } 112 | 113 | } 114 | 115 | 116 | /* End of file url_helper.php */ 117 | /* Location: ./app/helpers/az_url_helper.php */ -------------------------------------------------------------------------------- /app/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/hooks/BootigniterLoader.php: -------------------------------------------------------------------------------- 1 | db->hostname) || empty($ci->db->database) || empty($ci->db->username)) { 10 | 11 | show_error('Missing Database Configurations, Please configure your /app/config/database.php,Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/language/english/site_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |