├── public ├── js │ └── script.js ├── images │ ├── titan.png │ └── favicon.ico ├── upload │ └── index.html └── css │ └── style.css ├── app ├── .htaccess ├── cache │ └── index.html ├── config │ ├── index.html │ ├── development │ │ ├── index.html │ │ └── db.php │ ├── language.php │ ├── autoload.php │ ├── routes.php │ ├── email.php │ ├── cache.php │ ├── db.php │ ├── hooks.php │ └── config.php ├── helpers │ └── index.html ├── logs │ └── index.html ├── models │ └── index.html ├── plugins │ └── index.html ├── controllers │ ├── index.html │ ├── backend │ │ ├── index.html │ │ └── Dashboard.php │ └── frontend │ │ ├── index.html │ │ ├── Home.php │ │ └── Theme.php ├── languages │ ├── index.html │ ├── english │ │ └── index.html │ └── turkish │ │ └── index.html ├── hooks │ └── index.html └── views │ ├── layouts │ ├── footer_view.php │ └── header_view.php │ ├── theme_view.php │ ├── home_view.php │ ├── backend │ └── dashboard_view.php │ └── errors │ ├── error_404.php │ └── error_system.php ├── system ├── .htaccess ├── core │ ├── index.html │ ├── Model.php │ ├── Controller.php │ ├── Functions.php │ ├── Loader.php │ └── App.php ├── helpers │ ├── index.html │ ├── Debug.php │ ├── User_agent.php │ ├── Url.php │ └── Form.php ├── languages │ ├── index.html │ ├── english │ │ ├── index.html │ │ ├── upload.php │ │ └── validation.php │ └── turkish │ │ ├── index.html │ │ ├── upload.php │ │ └── validation.php └── plugins │ ├── index.html │ ├── Template.php │ ├── Log.php │ ├── Benchmark.php │ ├── Hook.php │ ├── Mail │ ├── Mail.php │ └── Pop3.php │ ├── Session.php │ ├── Response.php │ ├── Upload.php │ ├── Cookie.php │ ├── Asset.php │ ├── Input.php │ ├── Cache.php │ ├── Curl.php │ ├── Pagination.php │ ├── Validation.php │ └── Database.php ├── .htaccess ├── .editorconfig ├── README.md ├── composer.json ├── example.nginx.conf ├── LICENCE ├── index.php └── CHANGELOG /public/js/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /public/images/titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaratug/titan-mvc/HEAD/public/images/titan.png -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaratug/titan-mvc/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | Options -MultiViews 2 | RewriteEngine On 3 | 4 | RewriteCond %{REQUEST_FILENAME} !-d 5 | RewriteCond %{REQUEST_FILENAME} !-f 6 | 7 | RewriteRule ^(.+)$ index.php?url=$1 [QSA,L] -------------------------------------------------------------------------------- /app/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/languages/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /public/upload/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /system/languages/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /system/plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/languages/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/languages/turkish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/config/development/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/controllers/backend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /app/controllers/frontend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /system/languages/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /system/languages/turkish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | tab_width = 4 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | -------------------------------------------------------------------------------- /app/views/layouts/footer_view.php: -------------------------------------------------------------------------------- 1 | asset->get_js('footer')) { 4 | foreach($this->asset->get_js('footer') as $js_file) { 5 | echo $js_file . "\n"; 6 | } 7 | } 8 | ?> 9 |