@ -0,0 +1,49 @@
|
||||
# Disable directory browsing |
||||
Options -Indexes |
||||
|
||||
# ---------------------------------------------------------------------- |
||||
# Rewrite engine |
||||
# ---------------------------------------------------------------------- |
||||
|
||||
# Turning on the rewrite engine is necessary for the following rules and features. |
||||
# FollowSymLinks must be enabled for this to work. |
||||
<IfModule mod_rewrite.c> |
||||
Options +FollowSymlinks |
||||
RewriteEngine On |
||||
|
||||
# If you installed CodeIgniter in a subfolder, you will need to |
||||
# change the following line to match the subfolder you need. |
||||
# http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase |
||||
# RewriteBase / |
||||
|
||||
# Redirect Trailing Slashes... |
||||
RewriteCond %{REQUEST_FILENAME} !-d |
||||
RewriteCond %{REQUEST_URI} (.+)/$ |
||||
RewriteRule ^ %1 [L,R=301] |
||||
|
||||
# Rewrite "www.example.com -> example.com" |
||||
RewriteCond %{HTTPS} !=on |
||||
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] |
||||
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L] |
||||
|
||||
# Checks to see if the user is attempting to access a valid file, |
||||
# such as an image or css document, if this isn't true it sends the |
||||
# request to the front controller, index.php |
||||
RewriteCond %{REQUEST_FILENAME} !-f |
||||
RewriteCond %{REQUEST_FILENAME} !-d |
||||
RewriteRule ^([\s\S]*)$ index.php/$1 [L,NC,QSA] |
||||
|
||||
# Ensure Authorization header is passed along |
||||
RewriteCond %{HTTP:Authorization} . |
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] |
||||
</IfModule> |
||||
|
||||
<IfModule !mod_rewrite.c> |
||||
# If we don't have mod_rewrite installed, all 404's |
||||
# can be sent to index.php, and everything works as normal. |
||||
ErrorDocument 404 index.php |
||||
</IfModule> |
||||
|
||||
# Disable server signature start |
||||
ServerSignature Off |
||||
# Disable server signature end |
@ -0,0 +1,22 @@
|
||||
The MIT License (MIT) |
||||
|
||||
Copyright (c) 2014-2019 British Columbia Institute of Technology |
||||
Copyright (c) 2019-2023 CodeIgniter Foundation |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to deal |
||||
in the Software without restriction, including without limitation the rights |
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
THE SOFTWARE. |
@ -0,0 +1,59 @@
|
||||
# CodeIgniter 4 Framework |
||||
|
||||
## What is CodeIgniter? |
||||
|
||||
CodeIgniter is a PHP full-stack web framework that is light, fast, flexible and secure. |
||||
More information can be found at the [official site](https://codeigniter.com). |
||||
|
||||
This repository holds the distributable version of the framework. |
||||
It has been built from the |
||||
[development repository](https://github.com/codeigniter4/CodeIgniter4). |
||||
|
||||
More information about the plans for version 4 can be found in [CodeIgniter 4](https://forum.codeigniter.com/forumdisplay.php?fid=28) on the forums. |
||||
|
||||
The user guide corresponding to the latest version of the framework can be found |
||||
[here](https://codeigniter4.github.io/userguide/). |
||||
|
||||
## Important Change with index.php |
||||
|
||||
`index.php` is no longer in the root of the project! It has been moved inside the *public* folder, |
||||
for better security and separation of components. |
||||
|
||||
This means that you should configure your web server to "point" to your project's *public* folder, and |
||||
not to the project root. A better practice would be to configure a virtual host to point there. A poor practice would be to point your web server to the project root and expect to enter *public/...*, as the rest of your logic and the |
||||
framework are exposed. |
||||
|
||||
**Please** read the user guide for a better explanation of how CI4 works! |
||||
|
||||
## Repository Management |
||||
|
||||
We use GitHub issues, in our main repository, to track **BUGS** and to track approved **DEVELOPMENT** work packages. |
||||
We use our [forum](http://forum.codeigniter.com) to provide SUPPORT and to discuss |
||||
FEATURE REQUESTS. |
||||
|
||||
This repository is a "distribution" one, built by our release preparation script. |
||||
Problems with it can be raised on our forum, or as issues in the main repository. |
||||
|
||||
## Contributing |
||||
|
||||
We welcome contributions from the community. |
||||
|
||||
Please read the [*Contributing to CodeIgniter*](https://github.com/codeigniter4/CodeIgniter4/blob/develop/CONTRIBUTING.md) section in the development repository. |
||||
|
||||
## Server Requirements |
||||
|
||||
PHP version 7.4 or higher is required, with the following extensions installed: |
||||
|
||||
- [intl](http://php.net/manual/en/intl.requirements.php) |
||||
- [mbstring](http://php.net/manual/en/mbstring.installation.php) |
||||
|
||||
> **Warning** |
||||
> The end of life date for PHP 7.4 was November 28, 2022. If you are |
||||
> still using PHP 7.4, you should upgrade immediately. The end of life date |
||||
> for PHP 8.0 will be November 26, 2023. |
||||
|
||||
Additionally, make sure that the following extensions are enabled in your PHP: |
||||
|
||||
- json (enabled by default - don't turn it off) |
||||
- [mysqlnd](http://php.net/manual/en/mysqlnd.install.php) if you plan to use MySQL |
||||
- [libcurl](http://php.net/manual/en/curl.requirements.php) if you plan to use the HTTP\CURLRequest library |
@ -0,0 +1,6 @@
|
||||
<IfModule authz_core_module> |
||||
Require all denied |
||||
</IfModule> |
||||
<IfModule !authz_core_module> |
||||
Deny from all |
||||
</IfModule> |
@ -0,0 +1,15 @@
|
||||
<?php |
||||
|
||||
/** |
||||
* The goal of this file is to allow developers a location |
||||
* where they can overwrite core procedural functions and |
||||
* replace them with their own. This file is loaded during |
||||
* the bootstrap process and is called during the framework's |
||||
* execution. |
||||
* |
||||
* This can be looked at as a `master helper` file that is |
||||
* loaded early on, and may also contain additional functions |
||||
* that you'd like to use throughout your entire application |
||||
* |
||||
* @see: https://codeigniter.com/user_guide/extending/common.html |
||||
*/ |
@ -0,0 +1,186 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class App extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Base Site URL |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* URL to your CodeIgniter root. Typically, this will be your base URL, |
||||
* WITH a trailing slash: |
||||
* |
||||
* http://example.com/ |
||||
*/ |
||||
public $baseURL = 'https://localhost/enginen/'; |
||||
|
||||
/** |
||||
* Allowed Hostnames in the Site URL other than the hostname in the baseURL. |
||||
* If you want to accept multiple Hostnames, set this. |
||||
* |
||||
* E.g. When your site URL ($baseURL) is 'http://example.com/', and your site |
||||
* also accepts 'http://media.example.com/' and |
||||
* 'http://accounts.example.com/': |
||||
* ['media.example.com', 'accounts.example.com'] |
||||
* |
||||
* @var list<string> |
||||
*/ |
||||
public array $allowedHostnames = []; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Index File |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Typically this will be your index.php file, unless you've renamed it to |
||||
* something else. If you are using mod_rewrite to remove the page set this |
||||
* variable so that it is blank. |
||||
*/ |
||||
public string $indexPage = ''; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* URI PROTOCOL |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This item determines which server global should be used to retrieve the |
||||
* URI string. The default setting of 'REQUEST_URI' works for most servers. |
||||
* If your links do not seem to work, try one of the other delicious flavors: |
||||
* |
||||
* 'REQUEST_URI' Uses $_SERVER['REQUEST_URI'] |
||||
* 'QUERY_STRING' Uses $_SERVER['QUERY_STRING'] |
||||
* 'PATH_INFO' Uses $_SERVER['PATH_INFO'] |
||||
* |
||||
* WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded! |
||||
*/ |
||||
public string $uriProtocol = 'PATH_INFO'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Default Locale |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The Locale roughly represents the language and location that your visitor |
||||
* is viewing the site from. It affects the language strings and other |
||||
* strings (like currency markers, numbers, etc), that your program |
||||
* should run under for this request. |
||||
*/ |
||||
public string $defaultLocale = 'en'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Negotiate Locale |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If true, the current Request object will automatically determine the |
||||
* language to use based on the value of the Accept-Language header. |
||||
* |
||||
* If false, no automatic detection will be performed. |
||||
*/ |
||||
public bool $negotiateLocale = false; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Supported Locales |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If $negotiateLocale is true, this array lists the locales supported |
||||
* by the application in descending order of priority. If no match is |
||||
* found, the first locale will be used. |
||||
* |
||||
* IncomingRequest::setLocale() also uses this list. |
||||
* |
||||
* @var string[] |
||||
*/ |
||||
public array $supportedLocales = ['id', 'ID', 'IND', 'en']; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Application Timezone |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The default timezone that will be used in your application to display |
||||
* dates with the date helper, and can be retrieved through app_timezone() |
||||
* |
||||
* @see https://www.php.net/manual/en/timezones.php for list of timezones supported by PHP. |
||||
*/ |
||||
public string $appTimezone = 'Asia/Jakarta'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Default Character Set |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This determines which character set is used by default in various methods |
||||
* that require a character set to be provided. |
||||
* |
||||
* @see http://php.net/htmlspecialchars for a list of supported charsets. |
||||
*/ |
||||
public string $charset = 'UTF-8'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Force Global Secure Requests |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If true, this will force every request made to this application to be |
||||
* made via a secure connection (HTTPS). If the incoming request is not |
||||
* secure, the user will be redirected to a secure version of the page |
||||
* and the HTTP Strict Transport Security header will be set. |
||||
*/ |
||||
public bool $forceGlobalSecureRequests = false; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Reverse Proxy IPs |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If your server is behind a reverse proxy, you must whitelist the proxy |
||||
* IP addresses from which CodeIgniter should trust headers such as |
||||
* X-Forwarded-For or Client-IP in order to properly identify |
||||
* the visitor's IP address. |
||||
* |
||||
* You need to set a proxy IP address or IP address with subnets and |
||||
* the HTTP header for the client IP address. |
||||
* |
||||
* Here are some examples: |
||||
* [ |
||||
* '10.0.1.200' => 'X-Forwarded-For', |
||||
* '192.168.5.0/24' => 'X-Real-IP', |
||||
* ] |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $proxyIPs = []; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Content Security Policy |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Enables the Response's Content Secure Policy to restrict the sources that |
||||
* can be used for images, scripts, CSS files, audio, video, etc. If enabled, |
||||
* the Response object will populate default values for the policy from the |
||||
* `ContentSecurityPolicy.php` file. Controllers can always add to those |
||||
* restrictions at run time. |
||||
* |
||||
* For a better understanding of CSP, see these documents: |
||||
* |
||||
* @see http://www.html5rocks.com/en/tutorials/security/content-security-policy/ |
||||
* @see http://www.w3.org/TR/CSP/ |
||||
*/ |
||||
public $sessionCookieName = 'ci_session'; |
||||
public $sessionExpiration = 7200; |
||||
public $sessionSavePath = WRITEPATH . 'session'; |
||||
public $CSRFTokenName = 'csrf_test_name'; |
||||
public $CSRFHeaderName = 'X-CSRF-TOKEN'; |
||||
public $CSRFCookieName = 'csrf_cookie_name'; |
||||
public $CSRFExpire = 7200; |
||||
public $CSRFRegenerate = true; |
||||
public $CSRFRedirect = true; |
||||
public bool $CSPEnabled = false; |
||||
} |
@ -0,0 +1,99 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\AutoloadConfig; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* AUTOLOADER CONFIGURATION |
||||
* ------------------------------------------------------------------- |
||||
* |
||||
* This file defines the namespaces and class maps so the Autoloader |
||||
* can find the files as needed. |
||||
* |
||||
* NOTE: If you use an identical key in $psr4 or $classmap, then |
||||
* the values in this file will overwrite the framework's values. |
||||
* |
||||
* NOTE: This class is required prior to Autoloader instantiation, |
||||
* and does not extend BaseConfig. |
||||
* |
||||
* @immutable |
||||
*/ |
||||
class Autoload extends AutoloadConfig |
||||
{ |
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* Namespaces |
||||
* ------------------------------------------------------------------- |
||||
* This maps the locations of any namespaces in your application to |
||||
* their location on the file system. These are used by the autoloader |
||||
* to locate files the first time they have been instantiated. |
||||
* |
||||
* The '/app' and '/system' directories are already mapped for you. |
||||
* you may change the name of the 'App' namespace if you wish, |
||||
* but this should be done prior to creating any namespaced classes, |
||||
* else you will need to modify all of those classes for this to work. |
||||
* |
||||
* Prototype: |
||||
* $psr4 = [ |
||||
* 'CodeIgniter' => SYSTEMPATH, |
||||
* 'App' => APPPATH |
||||
* ]; |
||||
* |
||||
* @var array<string, list<string>|string> |
||||
*/ |
||||
public $psr4 = [ |
||||
APP_NAMESPACE => APPPATH, // For custom app namespace |
||||
'Config' => APPPATH . 'Config', |
||||
]; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* Class Map |
||||
* ------------------------------------------------------------------- |
||||
* The class map provides a map of class names and their exact |
||||
* location on the drive. Classes loaded in this manner will have |
||||
* slightly faster performance because they will not have to be |
||||
* searched for within one or more directories as they would if they |
||||
* were being autoloaded through a namespace. |
||||
* |
||||
* Prototype: |
||||
* $classmap = [ |
||||
* 'MyClass' => '/path/to/class/file.php' |
||||
* ]; |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public $classmap = []; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* Files |
||||
* ------------------------------------------------------------------- |
||||
* The files array provides a list of paths to __non-class__ files |
||||
* that will be autoloaded. This can be useful for bootstrap operations |
||||
* or for loading functions. |
||||
* |
||||
* Prototype: |
||||
* $files = [ |
||||
* '/path/to/my/file.php', |
||||
* ]; |
||||
* |
||||
* @var list<string> |
||||
*/ |
||||
public $files = []; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* Helpers |
||||
* ------------------------------------------------------------------- |
||||
* Prototype: |
||||
* $helpers = [ |
||||
* 'form', |
||||
* ]; |
||||
* |
||||
* @var list<string> |
||||
*/ |
||||
public $helpers = []; |
||||
} |
@ -0,0 +1,34 @@
|
||||
<?php |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| ERROR DISPLAY |
||||
|-------------------------------------------------------------------------- |
||||
| In development, we want to show as many errors as possible to help |
||||
| make sure they don't make it to production. And save us hours of |
||||
| painful debugging. |
||||
| |
||||
| If you set 'display_errors' to '1', CI4's detailed error report will show. |
||||
*/ |
||||
error_reporting(E_ALL); |
||||
ini_set('display_errors', '1'); |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| DEBUG BACKTRACES |
||||
|-------------------------------------------------------------------------- |
||||
| If true, this constant will tell the error screens to display debug |
||||
| backtraces along with the other error information. If you would |
||||
| prefer to not see this, set this value to false. |
||||
*/ |
||||
defined('SHOW_DEBUG_BACKTRACE') || define('SHOW_DEBUG_BACKTRACE', true); |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| DEBUG MODE |
||||
|-------------------------------------------------------------------------- |
||||
| Debug mode is an experimental flag that can allow changes throughout |
||||
| the system. This will control whether Kint is loaded, and a few other |
||||
| items. It can always be used within your own application too. |
||||
*/ |
||||
defined('CI_DEBUG') || define('CI_DEBUG', true); |
@ -0,0 +1,24 @@
|
||||
<?php |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| ERROR DISPLAY |
||||
|-------------------------------------------------------------------------- |
||||
| Don't show ANY in production environments. Instead, let the system catch |
||||
| it and display a generic error message. |
||||
| |
||||
| If you set 'display_errors' to '1', CI4's detailed error report will show. |
||||
*/ |
||||
ini_set('display_errors', '1'); |
||||
error_reporting(E_ALL); |
||||
defined('SHOW_DEBUG_BACKTRACE') || define('SHOW_DEBUG_BACKTRACE', true); |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| DEBUG MODE |
||||
|-------------------------------------------------------------------------- |
||||
| Debug mode is an experimental flag that can allow changes throughout |
||||
| the system. It's not widely used currently, and may not survive |
||||
| release of the framework. |
||||
*/ |
||||
defined('CI_DEBUG') || define('CI_DEBUG', true); |
@ -0,0 +1,38 @@
|
||||
<?php |
||||
|
||||
/* |
||||
* The environment testing is reserved for PHPUnit testing. It has special |
||||
* conditions built into the framework at various places to assist with that. |
||||
* You can’t use it for your development. |
||||
*/ |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| ERROR DISPLAY |
||||
|-------------------------------------------------------------------------- |
||||
| In development, we want to show as many errors as possible to help |
||||
| make sure they don't make it to production. And save us hours of |
||||
| painful debugging. |
||||
*/ |
||||
error_reporting(E_ALL); |
||||
ini_set('display_errors', '1'); |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| DEBUG BACKTRACES |
||||
|-------------------------------------------------------------------------- |
||||
| If true, this constant will tell the error screens to display debug |
||||
| backtraces along with the other error information. If you would |
||||
| prefer to not see this, set this value to false. |
||||
*/ |
||||
defined('SHOW_DEBUG_BACKTRACE') || define('SHOW_DEBUG_BACKTRACE', true); |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| DEBUG MODE |
||||
|-------------------------------------------------------------------------- |
||||
| Debug mode is an experimental flag that can allow changes throughout |
||||
| the system. It's not widely used currently, and may not survive |
||||
| release of the framework. |
||||
*/ |
||||
defined('CI_DEBUG') || define('CI_DEBUG', true); |
@ -0,0 +1,20 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class CURLRequest extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CURLRequest Share Options |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Whether share options between requests or not. |
||||
* |
||||
* If true, all the options won't be reset between requests. |
||||
* It may cause an error request with unnecessary headers. |
||||
*/ |
||||
public bool $shareOptions = false; |
||||
} |
@ -0,0 +1,171 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Cache\CacheInterface; |
||||
use CodeIgniter\Cache\Handlers\DummyHandler; |
||||
use CodeIgniter\Cache\Handlers\FileHandler; |
||||
use CodeIgniter\Cache\Handlers\MemcachedHandler; |
||||
use CodeIgniter\Cache\Handlers\PredisHandler; |
||||
use CodeIgniter\Cache\Handlers\RedisHandler; |
||||
use CodeIgniter\Cache\Handlers\WincacheHandler; |
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class Cache extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Primary Handler |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The name of the preferred handler that should be used. If for some reason |
||||
* it is not available, the $backupHandler will be used in its place. |
||||
*/ |
||||
public string $handler = 'file'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Backup Handler |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The name of the handler that will be used in case the first one is |
||||
* unreachable. Often, 'file' is used here since the filesystem is |
||||
* always available, though that's not always practical for the app. |
||||
*/ |
||||
public string $backupHandler = 'dummy'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cache Directory Path |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The path to where cache files should be stored, if using a file-based |
||||
* system. |
||||
* |
||||
* @deprecated Use the driver-specific variant under $file |
||||
*/ |
||||
public string $storePath = WRITEPATH . 'cache/'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cache Include Query String |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Whether to take the URL query string into consideration when generating |
||||
* output cache files. Valid options are: |
||||
* |
||||
* false = Disabled |
||||
* true = Enabled, take all query parameters into account. |
||||
* Please be aware that this may result in numerous cache |
||||
* files generated for the same page over and over again. |
||||
* ['q'] = Enabled, but only take into account the specified list |
||||
* of query parameters. |
||||
* |
||||
* @var bool|string[] |
||||
*/ |
||||
public $cacheQueryString = false; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Key Prefix |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This string is added to all cache item names to help avoid collisions |
||||
* if you run multiple applications with the same cache engine. |
||||
*/ |
||||
public string $prefix = ''; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Default TTL |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The default number of seconds to save items when none is specified. |
||||
* |
||||
* WARNING: This is not used by framework handlers where 60 seconds is |
||||
* hard-coded, but may be useful to projects and modules. This will replace |
||||
* the hard-coded value in a future release. |
||||
*/ |
||||
public int $ttl = 60; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Reserved Characters |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* A string of reserved characters that will not be allowed in keys or tags. |
||||
* Strings that violate this restriction will cause handlers to throw. |
||||
* Default: {}()/\@: |
||||
* |
||||
* NOTE: The default set is required for PSR-6 compliance. |
||||
*/ |
||||
public string $reservedCharacters = '{}()/\@:'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* File settings |
||||
* -------------------------------------------------------------------------- |
||||
* Your file storage preferences can be specified below, if you are using |
||||
* the File driver. |
||||
* |
||||
* @var array<string, int|string|null> |
||||
*/ |
||||
public array $file = [ |
||||
'storePath' => WRITEPATH . 'cache/', |
||||
'mode' => 0640, |
||||
]; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------------- |
||||
* Memcached settings |
||||
* ------------------------------------------------------------------------- |
||||
* Your Memcached servers can be specified below, if you are using |
||||
* the Memcached drivers. |
||||
* |
||||
* @see https://codeigniter.com/user_guide/libraries/caching.html#memcached |
||||
* |
||||
* @var array<string, bool|int|string> |
||||
*/ |
||||
public array $memcached = [ |
||||
'host' => '127.0.0.1', |
||||
'port' => 11211, |
||||
'weight' => 1, |
||||
'raw' => false, |
||||
]; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------------- |
||||
* Redis settings |
||||
* ------------------------------------------------------------------------- |
||||
* Your Redis server can be specified below, if you are using |
||||
* the Redis or Predis drivers. |
||||
* |
||||
* @var array<string, int|string|null> |
||||
*/ |
||||
public array $redis = [ |
||||
'host' => '127.0.0.1', |
||||
'password' => null, |
||||
'port' => 6379, |
||||
'timeout' => 0, |
||||
'database' => 0, |
||||
]; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Available Cache Handlers |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This is an array of cache engine alias' and class names. Only engines |
||||
* that are listed here are allowed to be used. |
||||
* |
||||
* @var array<string, class-string<CacheInterface>> |
||||
*/ |
||||
public array $validHandlers = [ |
||||
'dummy' => DummyHandler::class, |
||||
'file' => FileHandler::class, |
||||
'memcached' => MemcachedHandler::class, |
||||
'predis' => PredisHandler::class, |
||||
'redis' => RedisHandler::class, |
||||
'wincache' => WincacheHandler::class, |
||||
]; |
||||
} |
@ -0,0 +1,94 @@
|
||||
<?php |
||||
|
||||
/* |
||||
| -------------------------------------------------------------------- |
||||
| App Namespace |
||||
| -------------------------------------------------------------------- |
||||
| |
||||
| This defines the default Namespace that is used throughout |
||||
| CodeIgniter to refer to the Application directory. Change |
||||
| this constant to change the namespace that all application |
||||
| classes should use. |
||||
| |
||||
| NOTE: changing this will require manually modifying the |
||||
| existing namespaces of App\* namespaced-classes. |
||||
*/ |
||||
defined('APP_NAMESPACE') || define('APP_NAMESPACE', 'App'); |
||||
|
||||
/* |
||||
| -------------------------------------------------------------------------- |
||||
| Composer Path |
||||
| -------------------------------------------------------------------------- |
||||
| |
||||
| The path that Composer's autoload file is expected to live. By default, |
||||
| the vendor folder is in the Root directory, but you can customize that here. |
||||
*/ |
||||
defined('COMPOSER_PATH') || define('COMPOSER_PATH', ROOTPATH . 'vendor/autoload.php'); |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| Timing Constants |
||||
|-------------------------------------------------------------------------- |
||||
| |
||||
| Provide simple ways to work with the myriad of PHP functions that |
||||
| require information to be in seconds. |
||||
*/ |
||||
defined('SECOND') || define('SECOND', 1); |
||||
defined('MINUTE') || define('MINUTE', 60); |
||||
defined('HOUR') || define('HOUR', 3600); |
||||
defined('DAY') || define('DAY', 86400); |
||||
defined('WEEK') || define('WEEK', 604800); |
||||
defined('MONTH') || define('MONTH', 2_592_000); |
||||
defined('YEAR') || define('YEAR', 31_536_000); |
||||
defined('DECADE') || define('DECADE', 315_360_000); |
||||
|
||||
/* |
||||
| -------------------------------------------------------------------------- |
||||
| Exit Status Codes |
||||
| -------------------------------------------------------------------------- |
||||
| |
||||
| Used to indicate the conditions under which the script is exit()ing. |
||||
| While there is no universal standard for error codes, there are some |
||||
| broad conventions. Three such conventions are mentioned below, for |
||||
| those who wish to make use of them. The CodeIgniter defaults were |
||||
| chosen for the least overlap with these conventions, while still |
||||
| leaving room for others to be defined in future versions and user |
||||
| applications. |
||||
| |
||||
| The three main conventions used for determining exit status codes |
||||
| are as follows: |
||||
| |
||||
| Standard C/C++ Library (stdlibc): |
||||
| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html |
||||
| (This link also contains other GNU-specific conventions) |
||||
| BSD sysexits.h: |
||||
| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits |
||||
| Bash scripting: |
||||
| http://tldp.org/LDP/abs/html/exitcodes.html |
||||
| |
||||
*/ |
||||
defined('EXIT_SUCCESS') || define('EXIT_SUCCESS', 0); // no errors |
||||
defined('EXIT_ERROR') || define('EXIT_ERROR', 1); // generic error |
||||
defined('EXIT_CONFIG') || define('EXIT_CONFIG', 3); // configuration error |
||||
defined('EXIT_UNKNOWN_FILE') || define('EXIT_UNKNOWN_FILE', 4); // file not found |
||||
defined('EXIT_UNKNOWN_CLASS') || define('EXIT_UNKNOWN_CLASS', 5); // unknown class |
||||
defined('EXIT_UNKNOWN_METHOD') || define('EXIT_UNKNOWN_METHOD', 6); // unknown class member |
||||
defined('EXIT_USER_INPUT') || define('EXIT_USER_INPUT', 7); // invalid user input |
||||
defined('EXIT_DATABASE') || define('EXIT_DATABASE', 8); // database error |
||||
defined('EXIT__AUTO_MIN') || define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code |
||||
defined('EXIT__AUTO_MAX') || define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code |
||||
|
||||
/** |
||||
* @deprecated Use \CodeIgniter\Events\Events::PRIORITY_LOW instead. |
||||
*/ |
||||
define('EVENT_PRIORITY_LOW', 200); |
||||
|
||||
/** |
||||
* @deprecated Use \CodeIgniter\Events\Events::PRIORITY_NORMAL instead. |
||||
*/ |
||||
define('EVENT_PRIORITY_NORMAL', 100); |
||||
|
||||
/** |
||||
* @deprecated Use \CodeIgniter\Events\Events::PRIORITY_HIGH instead. |
||||
*/ |
||||
define('EVENT_PRIORITY_HIGH', 10); |
@ -0,0 +1,176 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
/** |
||||
* Stores the default settings for the ContentSecurityPolicy, if you |
||||
* choose to use it. The values here will be read in and set as defaults |
||||
* for the site. If needed, they can be overridden on a page-by-page basis. |
||||
* |
||||
* Suggested reference for explanations: |
||||
* |
||||
* @see https://www.html5rocks.com/en/tutorials/security/content-security-policy/ |
||||
*/ |
||||
class ContentSecurityPolicy extends BaseConfig |
||||
{ |
||||
// ------------------------------------------------------------------------- |
||||
// Broadbrush CSP management |
||||
// ------------------------------------------------------------------------- |
||||
|
||||
/** |
||||
* Default CSP report context |
||||
*/ |
||||
public bool $reportOnly = false; |
||||
|
||||
/** |
||||
* Specifies a URL where a browser will send reports |
||||
* when a content security policy is violated. |
||||
*/ |
||||
public ?string $reportURI = null; |
||||
|
||||
/** |
||||
* Instructs user agents to rewrite URL schemes, changing |
||||
* HTTP to HTTPS. This directive is for websites with |
||||
* large numbers of old URLs that need to be rewritten. |
||||
*/ |
||||
public bool $upgradeInsecureRequests = false; |
||||
|
||||
// ------------------------------------------------------------------------- |
||||
// Sources allowed |
||||
// NOTE: once you set a policy to 'none', it cannot be further restricted |
||||
// ------------------------------------------------------------------------- |
||||
|
||||
/** |
||||
* Will default to self if not overridden |
||||
* |
||||
* @var string|string[]|null |
||||
*/ |
||||
public $defaultSrc; |
||||
|
||||
/** |
||||
* Lists allowed scripts' URLs. |
||||
* |
||||
* @var string|string[] |
||||
*/ |
||||
public $scriptSrc = 'self'; |
||||
|
||||
/** |
||||
* Lists allowed stylesheets' URLs. |
||||
* |
||||
* @var string|string[] |
||||
*/ |
||||
public $styleSrc = 'self'; |
||||
|
||||
/** |
||||
* Defines the origins from which images can be loaded. |
||||
* |
||||
* @var string|string[] |
||||
*/ |
||||
public $imageSrc = 'self'; |
||||
|
||||
/** |
||||
* Restricts the URLs that can appear in a page's `<base>` element. |
||||
* |
||||
* Will default to self if not overridden |
||||
* |
||||
* @var string|string[]|null |
||||
*/ |
||||
public $baseURI; |
||||
|
||||
/** |
||||
* Lists the URLs for workers and embedded frame contents |
||||
* |
||||
* @var string|string[] |
||||
*/ |
||||
public $childSrc = 'self'; |
||||
|
||||
/** |
||||
* Limits the origins that you can connect to (via XHR, |
||||
* WebSockets, and EventSource). |
||||
* |
||||
* @var string|string[] |
||||
*/ |
||||
public $connectSrc = 'self'; |
||||
|
||||
/** |
||||
* Specifies the origins that can serve web fonts. |
||||
* |
||||
* @var string|string[] |
||||
*/ |
||||
public $fontSrc; |
||||
|
||||
/** |
||||
* Lists valid endpoints for submission from `<form>` tags. |
||||
* |
||||
* @var string|string[] |
||||
*/ |
||||
public $formAction = 'self'; |
||||
|
||||
/** |
||||
* Specifies the sources that can embed the current page. |
||||
* This directive applies to `<frame>`, `<iframe>`, `<embed>`, |
||||
* and `<applet>` tags. This directive can't be used in |
||||
* `<meta>` tags and applies only to non-HTML resources. |
||||
* |
||||
* @var string|string[]|null |
||||
*/ |
||||
public $frameAncestors; |
||||
|
||||
/** |
||||
* The frame-src directive restricts the URLs which may |
||||
* be loaded into nested browsing contexts. |
||||
* |
||||
* @var array|string|null |
||||
*/ |
||||
public $frameSrc; |
||||
|
||||
/** |
||||
* Restricts the origins allowed to deliver video and audio. |
||||
* |
||||
* @var string|string[]|null |
||||
*/ |
||||
public $mediaSrc; |
||||
|
||||
/** |
||||
* Allows control over Flash and other plugins. |
||||
* |
||||
* @var string|string[] |
||||
*/ |
||||
public $objectSrc = 'self'; |
||||
|
||||
/** |
||||
* @var string|string[]|null |
||||
*/ |
||||
public $manifestSrc; |
||||
|
||||
/** |
||||
* Limits the kinds of plugins a page may invoke. |
||||
* |
||||
* @var string|string[]|null |
||||
*/ |
||||
public $pluginTypes; |
||||
|
||||
/** |
||||
* List of actions allowed. |
||||
* |
||||
* @var string|string[]|null |
||||
*/ |
||||
public $sandbox; |
||||
|
||||
/** |
||||
* Nonce tag for style |
||||
*/ |
||||
public string $styleNonceTag = '{csp-style-nonce}'; |
||||
|
||||
/** |
||||
* Nonce tag for script |
||||
*/ |
||||
public string $scriptNonceTag = '{csp-script-nonce}'; |
||||
|
||||
/** |
||||
* Replace nonce tag automatically |
||||
*/ |
||||
public bool $autoNonce = true; |
||||
} |
@ -0,0 +1,107 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use DateTimeInterface; |
||||
|
||||
class Cookie extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cookie Prefix |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Set a cookie name prefix if you need to avoid collisions. |
||||
*/ |
||||
public string $prefix = ''; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cookie Expires Timestamp |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Default expires timestamp for cookies. Setting this to `0` will mean the |
||||
* cookie will not have the `Expires` attribute and will behave as a session |
||||
* cookie. |
||||
* |
||||
* @var DateTimeInterface|int|string |
||||
*/ |
||||
public $expires = 0; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cookie Path |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Typically will be a forward slash. |
||||
*/ |
||||
public string $path = '/'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cookie Domain |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Set to `.your-domain.com` for site-wide cookies. |
||||
*/ |
||||
public string $domain = ''; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cookie Secure |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Cookie will only be set if a secure HTTPS connection exists. |
||||
*/ |
||||
public bool $secure = false; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cookie HTTPOnly |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Cookie will only be accessible via HTTP(S) (no JavaScript). |
||||
*/ |
||||
public bool $httponly = true; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cookie SameSite |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Configure cookie SameSite setting. Allowed values are: |
||||
* - None |
||||
* - Lax |
||||
* - Strict |
||||
* - '' |
||||
* |
||||
* Alternatively, you can use the constant names: |
||||
* - `Cookie::SAMESITE_NONE` |
||||
* - `Cookie::SAMESITE_LAX` |
||||
* - `Cookie::SAMESITE_STRICT` |
||||
* |
||||
* Defaults to `Lax` for compatibility with modern browsers. Setting `''` |
||||
* (empty string) means default SameSite attribute set by browsers (`Lax`) |
||||
* will be set on cookies. If set to `None`, `$secure` must also be set. |
||||
* |
||||
* @phpstan-var 'None'|'Lax'|'Strict'|'' |
||||
*/ |
||||
public string $samesite = 'Lax'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Cookie Raw |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This flag allows setting a "raw" cookie, i.e., its name and value are |
||||
* not URL encoded using `rawurlencode()`. |
||||
* |
||||
* If this is set to `true`, cookie names should be compliant of RFC 2616's |
||||
* list of allowed characters. |
||||
* |
||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#attributes |
||||
* @see https://tools.ietf.org/html/rfc2616#section-2.2 |
||||
*/ |
||||
public bool $raw = false; |
||||
} |
@ -0,0 +1,86 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Database\Config; |
||||
|
||||
/** |
||||
* Database Configuration |
||||
*/ |
||||
class Database extends Config |
||||
{ |
||||
/** |
||||
* The directory that holds the Migrations |
||||
* and Seeds directories. |
||||
*/ |
||||
public string $filesPath = APPPATH . 'Database' . DIRECTORY_SEPARATOR; |
||||
|
||||
/** |
||||
* Lets you choose which connection group to |
||||
* use if no other is specified. |
||||
*/ |
||||
public string $defaultGroup = 'default'; |
||||
/** |
||||
* The default database connection. |
||||
*/ |
||||
|
||||
|
||||
public array $default = [ |
||||
'hostname' => 'dfoso.id:1251/SIMN', |
||||
'username' => 'genapp', |
||||
'password' => 'GENAPPSIM', |
||||
'database' => '', |
||||
'DBDriver' => 'oci8', |
||||
'DBPrefix' => '', |
||||
'pconnect' => true, |
||||
'DBDebug' => true, |
||||
'charset' => 'utf8', |
||||
'DBCollat' => 'utf8_general_ci', |
||||
'swapPre' => '', |
||||
'encrypt' => false, |
||||
'autoinit' => true, |
||||
'strictOn' => false, |
||||
'failover' => [], |
||||
'numberNative' => false, |
||||
]; |
||||
|
||||
|
||||
|
||||
/** |
||||
* This database connection is used when |
||||
* running PHPUnit database tests. |
||||
*/ |
||||
public array $tests = [ |
||||
'DSN' => '', |
||||
'hostname' => '127.0.0.1', |
||||
'username' => '', |
||||
'password' => '', |
||||
'database' => ':memory:', |
||||
'DBDriver' => 'SQLite3', |
||||
'DBPrefix' => 'db_', // Needed to ensure we're working correctly with prefixes live. DO NOT REMOVE FOR CI DEVS |
||||
'pConnect' => false, |
||||
'DBDebug' => true, |
||||
'charset' => 'utf8', |
||||
'DBCollat' => 'utf8_general_ci', |
||||
'swapPre' => '', |
||||
'encrypt' => false, |
||||
'compress' => false, |
||||
'strictOn' => false, |
||||
'failover' => [], |
||||
'port' => 3306, |
||||
'foreignKeys' => true, |
||||
'busyTimeout' => 1000, |
||||
]; |
||||
|
||||
public function __construct() |
||||
{ |
||||
parent::__construct(); |
||||
|
||||
// Ensure that we always set the database group to 'tests' if |
||||
// we are currently running an automated test suite, so that |
||||
// we don't overwrite live data on accident. |
||||
if (ENVIRONMENT === 'testing') { |
||||
$this->defaultGroup = 'tests'; |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,46 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
/** |
||||
* @immutable |
||||
*/ |
||||
class DocTypes |
||||
{ |
||||
/** |
||||
* List of valid document types. |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $list = [ |
||||
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">', |
||||
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">', |
||||
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">', |
||||
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">', |
||||
'xhtml-basic11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">', |
||||
'html5' => '<!DOCTYPE html>', |
||||
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">', |
||||
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">', |
||||
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">', |
||||
'mathml1' => '<!DOCTYPE math SYSTEM "http://www.w3.org/Math/DTD/mathml1/mathml.dtd">', |
||||
'mathml2' => '<!DOCTYPE math PUBLIC "-//W3C//DTD MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/mathml2.dtd">', |
||||
'svg10' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">', |
||||
'svg11' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">', |
||||
'svg11-basic' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">', |
||||
'svg11-tiny' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">', |
||||
'xhtml-math-svg-xh' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">', |
||||
'xhtml-math-svg-sh' => '<!DOCTYPE svg:svg PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">', |
||||
'xhtml-rdfa-1' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">', |
||||
'xhtml-rdfa-2' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">', |
||||
]; |
||||
|
||||
/** |
||||
* Whether to remove the solidus (`/`) character for void HTML elements (e.g. `<input>`) |
||||
* for HTML5 compatibility. |
||||
* |
||||
* Set to: |
||||
* `true` - to be HTML5 compatible |
||||
* `false` - to be XHTML compatible |
||||
*/ |
||||
public bool $html5 = true; |
||||
} |
@ -0,0 +1,121 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class Email extends BaseConfig |
||||
{ |
||||
public string $fromEmail = ''; |
||||
public string $fromName = ''; |
||||
public string $recipients = ''; |
||||
|
||||
/** |
||||
* The "user agent" |
||||
*/ |
||||
public string $userAgent = 'CodeIgniter'; |
||||
|
||||
/** |
||||
* The mail sending protocol: mail, sendmail, smtp |
||||
*/ |
||||
public string $protocol = 'mail'; |
||||
|
||||
/** |
||||
* The server path to Sendmail. |
||||
*/ |
||||
public string $mailPath = '/usr/sbin/sendmail'; |
||||
|
||||
/** |
||||
* SMTP Server Hostname |
||||
*/ |
||||
public string $SMTPHost = ''; |
||||
|
||||
/** |
||||
* SMTP Username |
||||
*/ |
||||
public string $SMTPUser = ''; |
||||
|
||||
/** |
||||
* SMTP Password |
||||
*/ |
||||
public string $SMTPPass = ''; |
||||
|
||||
/** |
||||
* SMTP Port |
||||
*/ |
||||
public int $SMTPPort = 25; |
||||
|
||||
/** |
||||
* SMTP Timeout (in seconds) |
||||
*/ |
||||
public int $SMTPTimeout = 5; |
||||
|
||||
/** |
||||
* Enable persistent SMTP connections |
||||
*/ |
||||
public bool $SMTPKeepAlive = false; |
||||
|
||||
/** |
||||
* SMTP Encryption. |
||||
* |
||||
* @var string '', 'tls' or 'ssl'. 'tls' will issue a STARTTLS command |
||||
* to the server. 'ssl' means implicit SSL. Connection on port |
||||
* 465 should set this to ''. |
||||
*/ |
||||
public string $SMTPCrypto = 'tls'; |
||||
|
||||
/** |
||||
* Enable word-wrap |
||||
*/ |
||||
public bool $wordWrap = true; |
||||
|
||||
/** |
||||
* Character count to wrap at |
||||
*/ |
||||
public int $wrapChars = 76; |
||||
|
||||
/** |
||||
* Type of mail, either 'text' or 'html' |
||||
*/ |
||||
public string $mailType = 'text'; |
||||
|
||||
/** |
||||
* Character set (utf-8, iso-8859-1, etc.) |
||||
*/ |
||||
public string $charset = 'UTF-8'; |
||||
|
||||
/** |
||||
* Whether to validate the email address |
||||
*/ |
||||
public bool $validate = false; |
||||
|
||||
/** |
||||
* Email Priority. 1 = highest. 5 = lowest. 3 = normal |
||||
*/ |
||||
public int $priority = 3; |
||||
|
||||
/** |
||||
* Newline character. (Use “\r\n” to comply with RFC 822) |
||||
*/ |
||||
public string $CRLF = "\r\n"; |
||||
|
||||
/** |
||||
* Newline character. (Use “\r\n” to comply with RFC 822) |
||||
*/ |
||||
public string $newline = "\r\n"; |
||||
|
||||
/** |
||||
* Enable BCC Batch Mode. |
||||
*/ |
||||
public bool $BCCBatchMode = false; |
||||
|
||||
/** |
||||
* Number of emails in each BCC batch |
||||
*/ |
||||
public int $BCCBatchSize = 200; |
||||
|
||||
/** |
||||
* Enable notify message from server |
||||
*/ |
||||
public bool $DSN = false; |
||||
} |
@ -0,0 +1,92 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
/** |
||||
* Encryption configuration. |
||||
* |
||||
* These are the settings used for encryption, if you don't pass a parameter |
||||
* array to the encrypter for creation/initialization. |
||||
*/ |
||||
class Encryption extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Encryption Key Starter |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If you use the Encryption class you must set an encryption key (seed). |
||||
* You need to ensure it is long enough for the cipher and mode you plan to use. |
||||
* See the user guide for more info. |
||||
*/ |
||||
public string $key = ''; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Encryption Driver to Use |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* One of the supported encryption drivers. |
||||
* |
||||
* Available drivers: |
||||
* - OpenSSL |
||||
* - Sodium |
||||
*/ |
||||
public string $driver = 'OpenSSL'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* SodiumHandler's Padding Length in Bytes |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This is the number of bytes that will be padded to the plaintext message |
||||
* before it is encrypted. This value should be greater than zero. |
||||
* |
||||
* See the user guide for more information on padding. |
||||
*/ |
||||
public int $blockSize = 16; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Encryption digest |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* HMAC digest to use, e.g. 'SHA512' or 'SHA256'. Default value is 'SHA512'. |
||||
*/ |
||||
public string $digest = 'SHA512'; |
||||
|
||||
/** |
||||
* Whether the cipher-text should be raw. If set to false, then it will be base64 encoded. |
||||
* This setting is only used by OpenSSLHandler. |
||||
* |
||||
* Set to false for CI3 Encryption compatibility. |
||||
*/ |
||||
public bool $rawData = true; |
||||
|
||||
/** |
||||
* Encryption key info. |
||||
* This setting is only used by OpenSSLHandler. |
||||
* |
||||
* Set to 'encryption' for CI3 Encryption compatibility. |
||||
*/ |
||||
public string $encryptKeyInfo = ''; |
||||
|
||||
/** |
||||
* Authentication key info. |
||||
* This setting is only used by OpenSSLHandler. |
||||
* |
||||
* Set to 'authentication' for CI3 Encryption compatibility. |
||||
*/ |
||||
public string $authKeyInfo = ''; |
||||
|
||||
/** |
||||
* Cipher to use. |
||||
* This setting is only used by OpenSSLHandler. |
||||
* |
||||
* Set to 'AES-128-CBC' to decrypt encrypted data that encrypted |
||||
* by CI3 Encryption default configuration. |
||||
*/ |
||||
public string $cipher = 'AES-256-CTR'; |
||||
} |
@ -0,0 +1,55 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Events\Events; |
||||
use CodeIgniter\Exceptions\FrameworkException; |
||||
use CodeIgniter\HotReloader\HotReloader; |
||||
|
||||
/* |
||||
* -------------------------------------------------------------------- |
||||
* Application Events |
||||
* -------------------------------------------------------------------- |
||||
* Events allow you to tap into the execution of the program without |
||||
* modifying or extending core files. This file provides a central |
||||
* location to define your events, though they can always be added |
||||
* at run-time, also, if needed. |
||||
* |
||||
* You create code that can execute by subscribing to events with |
||||
* the 'on()' method. This accepts any form of callable, including |
||||
* Closures, that will be executed when the event is triggered. |
||||
* |
||||
* Example: |
||||
* Events::on('create', [$myInstance, 'myMethod']); |
||||
*/ |
||||
|
||||
Events::on('pre_system', static function () { |
||||
if (ENVIRONMENT !== 'testing') { |
||||
if (ini_get('zlib.output_compression')) { |
||||
throw FrameworkException::forEnabledZlibOutputCompression(); |
||||
} |
||||
|
||||
while (ob_get_level() > 0) { |
||||
ob_end_flush(); |
||||
} |
||||
|
||||
ob_start(static fn ($buffer) => $buffer); |
||||
} |
||||
|
||||
/* |
||||
* -------------------------------------------------------------------- |
||||
* Debug Toolbar Listeners. |
||||
* -------------------------------------------------------------------- |
||||
* If you delete, they will no longer be collected. |
||||
*/ |
||||
if (CI_DEBUG && ! is_cli()) { |
||||
Events::on('DBQuery', 'CodeIgniter\Debug\Toolbar\Collectors\Database::collect'); |
||||
Services::toolbar()->respond(); |
||||
// Hot Reload route - for framework use on the hot reloader. |
||||
if (ENVIRONMENT === 'development') { |
||||
Services::routes()->get('__hot-reload', static function () { |
||||
(new HotReloader())->run(); |
||||
}); |
||||
} |
||||
} |
||||
}); |
@ -0,0 +1,104 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use CodeIgniter\Debug\ExceptionHandler; |
||||
use CodeIgniter\Debug\ExceptionHandlerInterface; |
||||
use Psr\Log\LogLevel; |
||||
use Throwable; |
||||
|
||||
/** |
||||
* Setup how the exception handler works. |
||||
*/ |
||||
class Exceptions extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* LOG EXCEPTIONS? |
||||
* -------------------------------------------------------------------------- |
||||
* If true, then exceptions will be logged |
||||
* through Services::Log. |
||||
* |
||||
* Default: true |
||||
*/ |
||||
public bool $log = true; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* DO NOT LOG STATUS CODES |
||||
* -------------------------------------------------------------------------- |
||||
* Any status codes here will NOT be logged if logging is turned on. |
||||
* By default, only 404 (Page Not Found) exceptions are ignored. |
||||
*/ |
||||
public array $ignoreCodes = [404]; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Error Views Path |
||||
* -------------------------------------------------------------------------- |
||||
* This is the path to the directory that contains the 'cli' and 'html' |
||||
* directories that hold the views used to generate errors. |
||||
* |
||||
* Default: APPPATH.'Views/errors' |
||||
*/ |
||||
public string $errorViewPath = APPPATH . 'Views/errors'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* HIDE FROM DEBUG TRACE |
||||
* -------------------------------------------------------------------------- |
||||
* Any data that you would like to hide from the debug trace. |
||||
* In order to specify 2 levels, use "/" to separate. |
||||
* ex. ['server', 'setup/password', 'secret_token'] |
||||
*/ |
||||
public array $sensitiveDataInTrace = []; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* LOG DEPRECATIONS INSTEAD OF THROWING? |
||||
* -------------------------------------------------------------------------- |
||||
* By default, CodeIgniter converts deprecations into exceptions. Also, |
||||
* starting in PHP 8.1 will cause a lot of deprecated usage warnings. |
||||
* Use this option to temporarily cease the warnings and instead log those. |
||||
* This option also works for user deprecations. |
||||
*/ |
||||
public bool $logDeprecations = true; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* LOG LEVEL THRESHOLD FOR DEPRECATIONS |
||||
* -------------------------------------------------------------------------- |
||||
* If `$logDeprecations` is set to `true`, this sets the log level |
||||
* to which the deprecation will be logged. This should be one of the log |
||||
* levels recognized by PSR-3. |
||||
* |
||||
* The related `Config\Logger::$threshold` should be adjusted, if needed, |
||||
* to capture logging the deprecations. |
||||
*/ |
||||
public string $deprecationLogLevel = LogLevel::WARNING; |
||||
|
||||
/* |
||||
* DEFINE THE HANDLERS USED |
||||
* -------------------------------------------------------------------------- |
||||
* Given the HTTP status code, returns exception handler that |
||||
* should be used to deal with this error. By default, it will run CodeIgniter's |
||||
* default handler and display the error information in the expected format |
||||
* for CLI, HTTP, or AJAX requests, as determined by is_cli() and the expected |
||||
* response format. |
||||
* |
||||
* Custom handlers can be returned if you want to handle one or more specific |
||||
* error codes yourself like: |
||||
* |
||||
* if (in_array($statusCode, [400, 404, 500])) { |
||||
* return new \App\Libraries\MyExceptionHandler(); |
||||
* } |
||||
* if ($exception instanceOf PageNotFoundException) { |
||||
* return new \App\Libraries\MyExceptionHandler(); |
||||
* } |
||||
*/ |
||||
public function handler(int $statusCode, Throwable $exception): ExceptionHandlerInterface |
||||
{ |
||||
return new ExceptionHandler($this); |
||||
} |
||||
} |
@ -0,0 +1,30 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
/** |
||||
* Enable/disable backward compatibility breaking features. |
||||
*/ |
||||
class Feature extends BaseConfig |
||||
{ |
||||
/** |
||||
* Enable multiple filters for a route or not. |
||||
* |
||||
* If you enable this: |
||||
* - CodeIgniter\CodeIgniter::handleRequest() uses: |
||||
* - CodeIgniter\Filters\Filters::enableFilters(), instead of enableFilter() |
||||
* - CodeIgniter\CodeIgniter::tryToRouteIt() uses: |
||||
* - CodeIgniter\Router\Router::getFilters(), instead of getFilter() |
||||
* - CodeIgniter\Router\Router::handle() uses: |
||||
* - property $filtersInfo, instead of $filterInfo |
||||
* - CodeIgniter\Router\RouteCollection::getFiltersForRoute(), instead of getFilterForRoute() |
||||
*/ |
||||
public bool $multipleFilters = false; |
||||
|
||||
/** |
||||
* Use improved new auto routing instead of the default legacy version. |
||||
*/ |
||||
public bool $autoRoutesImproved = false; |
||||
} |
@ -0,0 +1,69 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use CodeIgniter\Filters\CSRF; |
||||
use CodeIgniter\Filters\DebugToolbar; |
||||
use CodeIgniter\Filters\Honeypot; |
||||
use CodeIgniter\Filters\InvalidChars; |
||||
use CodeIgniter\Filters\SecureHeaders; |
||||
|
||||
class Filters extends BaseConfig |
||||
{ |
||||
/** |
||||
* Configures aliases for Filter classes to |
||||
* make reading things nicer and simpler. |
||||
* |
||||
* @var array<string, class-string|list<class-string>> [filter_name => classname] |
||||
* or [filter_name => [classname1, classname2, ...]] |
||||
*/ |
||||
public array $aliases = [ |
||||
'csrf' => CSRF::class, |
||||
'toolbar' => DebugToolbar::class, |
||||
'honeypot' => Honeypot::class, |
||||
'invalidchars' => InvalidChars::class, |
||||
'secureheaders' => SecureHeaders::class, |
||||
]; |
||||
|
||||
/** |
||||
* List of filter aliases that are always |
||||
* applied before and after every request. |
||||
* |
||||
* @var array<string, array<string, array<string, string>>>|array<string, list<string>> |
||||
*/ |
||||
public array $globals = [ |
||||
'before' => [ |
||||
// 'honeypot', |
||||
// 'csrf', |
||||
// 'invalidchars', |
||||
], |
||||
'after' => [ |
||||
'toolbar', |
||||
// 'honeypot', |
||||
// 'secureheaders', |
||||
], |
||||
]; |
||||
|
||||
/** |
||||
* List of filter aliases that works on a |
||||
* particular HTTP method (GET, POST, etc.). |
||||
* |
||||
* Example: |
||||
* 'post' => ['foo', 'bar'] |
||||
* |
||||
* If you use this, you should disable auto-routing because auto-routing |
||||
* permits any HTTP method to access a controller. Accessing the controller |
||||
* with a method you don't expect could bypass the filter. |
||||
*/ |
||||
public array $methods = []; |
||||
|
||||
/** |
||||
* List of filter aliases that should run on any |
||||
* before or after URI patterns. |
||||
* |
||||
* Example: |
||||
* 'isLoggedIn' => ['before' => ['account/*', 'profiles/*']] |
||||
*/ |
||||
public array $filters = []; |
||||
} |
@ -0,0 +1,12 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\ForeignCharacters as BaseForeignCharacters; |
||||
|
||||
/** |
||||
* @immutable |
||||
*/ |
||||
class ForeignCharacters extends BaseForeignCharacters |
||||
{ |
||||
} |
@ -0,0 +1,77 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use CodeIgniter\Format\FormatterInterface; |
||||
use CodeIgniter\Format\JSONFormatter; |
||||
use CodeIgniter\Format\XMLFormatter; |
||||
|
||||
class Format extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Available Response Formats |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* When you perform content negotiation with the request, these are the |
||||
* available formats that your application supports. This is currently |
||||
* only used with the API\ResponseTrait. A valid Formatter must exist |
||||
* for the specified format. |
||||
* |
||||
* These formats are only checked when the data passed to the respond() |
||||
* method is an array. |
||||
* |
||||
* @var string[] |
||||
*/ |
||||
public array $supportedResponseFormats = [ |
||||
'application/json', |
||||
'application/xml', // machine-readable XML |
||||
'text/xml', // human-readable XML |
||||
]; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Formatters |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Lists the class to use to format responses with of a particular type. |
||||
* For each mime type, list the class that should be used. Formatters |
||||
* can be retrieved through the getFormatter() method. |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $formatters = [ |
||||
'application/json' => JSONFormatter::class, |
||||
'application/xml' => XMLFormatter::class, |
||||
'text/xml' => XMLFormatter::class, |
||||
]; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Formatters Options |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Additional Options to adjust default formatters behaviour. |
||||
* For each mime type, list the additional options that should be used. |
||||
* |
||||
* @var array<string, int> |
||||
*/ |
||||
public array $formatterOptions = [ |
||||
'application/json' => JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES, |
||||
'application/xml' => 0, |
||||
'text/xml' => 0, |
||||
]; |
||||
|
||||
/** |
||||
* A Factory method to return the appropriate formatter for the given mime type. |
||||
* |
||||
* @return FormatterInterface |
||||
* |
||||
* @deprecated This is an alias of `\CodeIgniter\Format\Format::getFormatter`. Use that instead. |
||||
*/ |
||||
public function getFormatter(string $mime) |
||||
{ |
||||
return Services::format()->getFormatter($mime); |
||||
} |
||||
} |
@ -0,0 +1,42 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class Generators extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Generator Commands' Views |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This array defines the mapping of generator commands to the view files |
||||
* they are using. If you need to customize them for your own, copy these |
||||
* view files in your own folder and indicate the location here. |
||||
* |
||||
* You will notice that the views have special placeholders enclosed in |
||||
* curly braces `{...}`. These placeholders are used internally by the |
||||
* generator commands in processing replacements, thus you are warned |
||||
* not to delete them or modify the names. If you will do so, you may |
||||
* end up disrupting the scaffolding process and throw errors. |
||||
* |
||||
* YOU HAVE BEEN WARNED! |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $views = [ |
||||
'make:cell' => 'CodeIgniter\Commands\Generators\Views\cell.tpl.php', |
||||
'make:cell_view' => 'CodeIgniter\Commands\Generators\Views\cell_view.tpl.php', |
||||
'make:command' => 'CodeIgniter\Commands\Generators\Views\command.tpl.php', |
||||
'make:config' => 'CodeIgniter\Commands\Generators\Views\config.tpl.php', |
||||
'make:controller' => 'CodeIgniter\Commands\Generators\Views\controller.tpl.php', |
||||
'make:entity' => 'CodeIgniter\Commands\Generators\Views\entity.tpl.php', |
||||
'make:filter' => 'CodeIgniter\Commands\Generators\Views\filter.tpl.php', |
||||
'make:migration' => 'CodeIgniter\Commands\Generators\Views\migration.tpl.php', |
||||
'make:model' => 'CodeIgniter\Commands\Generators\Views\model.tpl.php', |
||||
'make:seeder' => 'CodeIgniter\Commands\Generators\Views\seeder.tpl.php', |
||||
'make:validation' => 'CodeIgniter\Commands\Generators\Views\validation.tpl.php', |
||||
'session:migration' => 'CodeIgniter\Commands\Generators\Views\migration.tpl.php', |
||||
]; |
||||
} |
@ -0,0 +1,42 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class Honeypot extends BaseConfig |
||||
{ |
||||
/** |
||||
* Makes Honeypot visible or not to human |
||||
*/ |
||||
public bool $hidden = true; |
||||
|
||||
/** |
||||
* Honeypot Label Content |
||||
*/ |
||||
public string $label = 'Fill This Field'; |
||||
|
||||
/** |
||||
* Honeypot Field Name |
||||
*/ |
||||
public string $name = 'honeypot'; |
||||
|
||||
/** |
||||
* Honeypot HTML Template |
||||
*/ |
||||
public string $template = '<label>{label}</label><input type="text" name="{name}" value="">'; |
||||
|
||||
/** |
||||
* Honeypot container |
||||
* |
||||
* If you enabled CSP, you can remove `style="display:none"`. |
||||
*/ |
||||
public string $container = '<div style="display:none">{template}</div>'; |
||||
|
||||
/** |
||||
* The id attribute for Honeypot container tag |
||||
* |
||||
* Used when CSP is enabled. |
||||
*/ |
||||
public string $containerId = 'hpc'; |
||||
} |
@ -0,0 +1,31 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use CodeIgniter\Images\Handlers\GDHandler; |
||||
use CodeIgniter\Images\Handlers\ImageMagickHandler; |
||||
|
||||
class Images extends BaseConfig |
||||
{ |
||||
/** |
||||
* Default handler used if no other handler is specified. |
||||
*/ |
||||
public string $defaultHandler = 'gd'; |
||||
|
||||
/** |
||||
* The path to the image library. |
||||
* Required for ImageMagick, GraphicsMagick, or NetPBM. |
||||
*/ |
||||
public string $libraryPath = '/usr/local/bin/convert'; |
||||
|
||||
/** |
||||
* The available handler classes. |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $handlers = [ |
||||
'gd' => GDHandler::class, |
||||
'imagick' => ImageMagickHandler::class, |
||||
]; |
||||
} |
@ -0,0 +1,66 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use Kint\Parser\ConstructablePluginInterface; |
||||
use Kint\Renderer\AbstractRenderer; |
||||
use Kint\Renderer\Rich\TabPluginInterface; |
||||
use Kint\Renderer\Rich\ValuePluginInterface; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Kint |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options |
||||
* that you can set to customize how Kint works for you. |
||||
* |
||||
* @see https://kint-php.github.io/kint/ for details on these settings. |
||||
*/ |
||||
class Kint extends BaseConfig |
||||
{ |
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| Global Settings |
||||
|-------------------------------------------------------------------------- |
||||
*/ |
||||
|
||||
/** |
||||
* @var list<class-string<ConstructablePluginInterface>|ConstructablePluginInterface>|null |
||||
*/ |
||||
public $plugins; |
||||
|
||||
public int $maxDepth = 6; |
||||
public bool $displayCalledFrom = true; |
||||
public bool $expanded = false; |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| RichRenderer Settings |
||||
|-------------------------------------------------------------------------- |
||||
*/ |
||||
public string $richTheme = 'aante-light.css'; |
||||
public bool $richFolder = false; |
||||
public int $richSort = AbstractRenderer::SORT_FULL; |
||||
|
||||
/** |
||||
* @var array<string, class-string<ValuePluginInterface>>|null |
||||
*/ |
||||
public $richObjectPlugins; |
||||
|
||||
/** |
||||
* @var array<string, class-string<TabPluginInterface>>|null |
||||
*/ |
||||
public $richTabPlugins; |
||||
|
||||
/* |
||||
|-------------------------------------------------------------------------- |
||||
| CLI Settings |
||||
|-------------------------------------------------------------------------- |
||||
*/ |
||||
public bool $cliColors = true; |
||||
public bool $cliForceUTF8 = false; |
||||
public bool $cliDetectWidth = true; |
||||
public int $cliMinWidth = 40; |
||||
} |
@ -0,0 +1,148 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use CodeIgniter\Log\Handlers\FileHandler; |
||||
|
||||
class Logger extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Error Logging Threshold |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* You can enable error logging by setting a threshold over zero. The |
||||
* threshold determines what gets logged. Any values below or equal to the |
||||
* threshold will be logged. |
||||
* |
||||
* Threshold options are: |
||||
* |
||||
* - 0 = Disables logging, Error logging TURNED OFF |
||||
* - 1 = Emergency Messages - System is unusable |
||||
* - 2 = Alert Messages - Action Must Be Taken Immediately |
||||
* - 3 = Critical Messages - Application component unavailable, unexpected exception. |
||||
* - 4 = Runtime Errors - Don't need immediate action, but should be monitored. |
||||
* - 5 = Warnings - Exceptional occurrences that are not errors. |
||||
* - 6 = Notices - Normal but significant events. |
||||
* - 7 = Info - Interesting events, like user logging in, etc. |
||||
* - 8 = Debug - Detailed debug information. |
||||
* - 9 = All Messages |
||||
* |
||||
* You can also pass an array with threshold levels to show individual error types |
||||
* |
||||
* array(1, 2, 3, 8) = Emergency, Alert, Critical, and Debug messages |
||||
* |
||||
* For a live site you'll usually enable Critical or higher (3) to be logged otherwise |
||||
* your log files will fill up very fast. |
||||
* |
||||
* @var array|int |
||||
*/ |
||||
public $threshold = (ENVIRONMENT === 'production') ? 4 : 9; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Date Format for Logs |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Each item that is logged has an associated date. You can use PHP date |
||||
* codes to set your own date formatting |
||||
*/ |
||||
public string $dateFormat = 'Y-m-d H:i:s'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Log Handlers |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The logging system supports multiple actions to be taken when something |
||||
* is logged. This is done by allowing for multiple Handlers, special classes |
||||
* designed to write the log to their chosen destinations, whether that is |
||||
* a file on the getServer, a cloud-based service, or even taking actions such |
||||
* as emailing the dev team. |
||||
* |
||||
* Each handler is defined by the class name used for that handler, and it |
||||
* MUST implement the `CodeIgniter\Log\Handlers\HandlerInterface` interface. |
||||
* |
||||
* The value of each key is an array of configuration items that are sent |
||||
* to the constructor of each handler. The only required configuration item |
||||
* is the 'handles' element, which must be an array of integer log levels. |
||||
* This is most easily handled by using the constants defined in the |
||||
* `Psr\Log\LogLevel` class. |
||||
* |
||||
* Handlers are executed in the order defined in this array, starting with |
||||
* the handler on top and continuing down. |
||||
*/ |
||||
public array $handlers = [ |
||||
/* |
||||
* -------------------------------------------------------------------- |
||||
* File Handler |
||||
* -------------------------------------------------------------------- |
||||
*/ |
||||
FileHandler::class => [ |
||||
// The log levels that this handler will handle. |
||||
'handles' => [ |
||||
'critical', |
||||
'alert', |
||||
'emergency', |
||||
'debug', |
||||
'error', |
||||
'info', |
||||
'notice', |
||||
'warning', |
||||
], |
||||
|
||||
/* |
||||
* The default filename extension for log files. |
||||
* An extension of 'php' allows for protecting the log files via basic |
||||
* scripting, when they are to be stored under a publicly accessible directory. |
||||
* |
||||
* NOTE: Leaving it blank will default to 'log'. |
||||
*/ |
||||
'fileExtension' => '', |
||||
|
||||
/* |
||||
* The file system permissions to be applied on newly created log files. |
||||
* |
||||
* IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal |
||||
* integer notation (i.e. 0700, 0644, etc.) |
||||
*/ |
||||
'filePermissions' => 0644, |
||||
|
||||
/* |
||||
* Logging Directory Path |
||||
* |
||||
* By default, logs are written to WRITEPATH . 'logs/' |
||||
* Specify a different destination here, if desired. |
||||
*/ |
||||
'path' => '', |
||||
], |
||||
|
||||
/* |
||||
* The ChromeLoggerHandler requires the use of the Chrome web browser |
||||
* and the ChromeLogger extension. Uncomment this block to use it. |
||||
*/ |
||||
// 'CodeIgniter\Log\Handlers\ChromeLoggerHandler' => [ |
||||
// /* |
||||
// * The log levels that this handler will handle. |
||||
// */ |
||||
// 'handles' => ['critical', 'alert', 'emergency', 'debug', |
||||
// 'error', 'info', 'notice', 'warning'], |
||||
// ], |
||||
|
||||
/* |
||||
* The ErrorlogHandler writes the logs to PHP's native `error_log()` function. |
||||
* Uncomment this block to use it. |
||||
*/ |
||||
// 'CodeIgniter\Log\Handlers\ErrorlogHandler' => [ |
||||
// /* The log levels this handler can handle. */ |
||||
// 'handles' => ['critical', 'alert', 'emergency', 'debug', 'error', 'info', 'notice', 'warning'], |
||||
// |
||||
// /* |
||||
// * The message type where the error should go. Can be 0 or 4, or use the |
||||
// * class constants: `ErrorlogHandler::TYPE_OS` (0) or `ErrorlogHandler::TYPE_SAPI` (4) |
||||
// */ |
||||
// 'messageType' => 0, |
||||
// ], |
||||
]; |
||||
} |
@ -0,0 +1,50 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class Migrations extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Enable/Disable Migrations |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Migrations are enabled by default. |
||||
* |
||||
* You should enable migrations whenever you intend to do a schema migration |
||||
* and disable it back when you're done. |
||||
*/ |
||||
public bool $enabled = true; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Migrations Table |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This is the name of the table that will store the current migrations state. |
||||
* When migrations runs it will store in a database table which migration |
||||
* files have already been run. |
||||
*/ |
||||
public string $table = 'migrations'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Timestamp Format |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* This is the format that will be used when creating new migrations |
||||
* using the CLI command: |
||||
* > php spark make:migration |
||||
* |
||||
* NOTE: if you set an unsupported format, migration runner will not find |
||||
* your migration files. |
||||
* |
||||
* Supported formats: |
||||
* - YmdHis_ |
||||
* - Y-m-d-His_ |
||||
* - Y_m_d_His_ |
||||
*/ |
||||
public string $timestampFormat = 'Y-m-d-His_'; |
||||
} |
@ -0,0 +1,534 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
/** |
||||
* Mimes |
||||
* |
||||
* This file contains an array of mime types. It is used by the |
||||
* Upload class to help identify allowed file types. |
||||
* |
||||
* When more than one variation for an extension exist (like jpg, jpeg, etc) |
||||
* the most common one should be first in the array to aid the guess* |
||||
* methods. The same applies when more than one mime-type exists for a |
||||
* single extension. |
||||
* |
||||
* When working with mime types, please make sure you have the ´fileinfo´ |
||||
* extension enabled to reliably detect the media types. |
||||
* |
||||
* @immutable |
||||
*/ |
||||
class Mimes |
||||
{ |
||||
/** |
||||
* Map of extensions to mime types. |
||||
*/ |
||||
public static array $mimes = [ |
||||
'hqx' => [ |
||||
'application/mac-binhex40', |
||||
'application/mac-binhex', |
||||
'application/x-binhex40', |
||||
'application/x-mac-binhex40', |
||||
], |
||||
'cpt' => 'application/mac-compactpro', |
||||
'csv' => [ |
||||
'text/csv', |
||||
'text/x-comma-separated-values', |
||||
'text/comma-separated-values', |
||||
'application/vnd.ms-excel', |
||||
'application/x-csv', |
||||
'text/x-csv', |
||||
'application/csv', |
||||
'application/excel', |
||||
'application/vnd.msexcel', |
||||
'text/plain', |
||||
], |
||||
'bin' => [ |
||||
'application/macbinary', |
||||
'application/mac-binary', |
||||
'application/octet-stream', |
||||
'application/x-binary', |
||||
'application/x-macbinary', |
||||
], |
||||
'dms' => 'application/octet-stream', |
||||
'lha' => 'application/octet-stream', |
||||
'lzh' => 'application/octet-stream', |
||||
'exe' => [ |
||||
'application/octet-stream', |
||||
'application/vnd.microsoft.portable-executable', |
||||
'application/x-dosexec', |
||||
'application/x-msdownload', |
||||
], |
||||
'class' => 'application/octet-stream', |
||||
'psd' => [ |
||||
'application/x-photoshop', |
||||
'image/vnd.adobe.photoshop', |
||||
], |
||||
'so' => 'application/octet-stream', |
||||
'sea' => 'application/octet-stream', |
||||
'dll' => 'application/octet-stream', |
||||
'oda' => 'application/oda', |
||||
'pdf' => [ |
||||
'application/pdf', |
||||
'application/force-download', |
||||
'application/x-download', |
||||
], |
||||
'ai' => [ |
||||
'application/pdf', |
||||
'application/postscript', |
||||
], |
||||
'eps' => 'application/postscript', |
||||
'ps' => 'application/postscript', |
||||
'smi' => 'application/smil', |
||||
'smil' => 'application/smil', |
||||
'mif' => 'application/vnd.mif', |
||||
'xls' => [ |
||||
'application/vnd.ms-excel', |
||||
'application/msexcel', |
||||
'application/x-msexcel', |
||||
'application/x-ms-excel', |
||||
'application/x-excel', |
||||
'application/x-dos_ms_excel', |
||||
'application/xls', |
||||
'application/x-xls', |
||||
'application/excel', |
||||
'application/download', |
||||
'application/vnd.ms-office', |
||||
'application/msword', |
||||
], |
||||
'ppt' => [ |
||||
'application/vnd.ms-powerpoint', |
||||
'application/powerpoint', |
||||
'application/vnd.ms-office', |
||||
'application/msword', |
||||
], |
||||
'pptx' => [ |
||||
'application/vnd.openxmlformats-officedocument.presentationml.presentation', |
||||
], |
||||
'wbxml' => 'application/wbxml', |
||||
'wmlc' => 'application/wmlc', |
||||
'dcr' => 'application/x-director', |
||||
'dir' => 'application/x-director', |
||||
'dxr' => 'application/x-director', |
||||
'dvi' => 'application/x-dvi', |
||||
'gtar' => 'application/x-gtar', |
||||
'gz' => 'application/x-gzip', |
||||
'gzip' => 'application/x-gzip', |
||||
'php' => [ |
||||
'application/x-php', |
||||
'application/x-httpd-php', |
||||
'application/php', |
||||
'text/php', |
||||
'text/x-php', |
||||
'application/x-httpd-php-source', |
||||
], |
||||
'php4' => 'application/x-httpd-php', |
||||
'php3' => 'application/x-httpd-php', |
||||
'phtml' => 'application/x-httpd-php', |
||||
'phps' => 'application/x-httpd-php-source', |
||||
'js' => [ |
||||
'application/x-javascript', |
||||
'text/plain', |
||||
], |
||||
'swf' => 'application/x-shockwave-flash', |
||||
'sit' => 'application/x-stuffit', |
||||
'tar' => 'application/x-tar', |
||||
'tgz' => [ |
||||
'application/x-tar', |
||||
'application/x-gzip-compressed', |
||||
], |
||||
'z' => 'application/x-compress', |
||||
'xhtml' => 'application/xhtml+xml', |
||||
'xht' => 'application/xhtml+xml', |
||||
'zip' => [ |
||||
'application/x-zip', |
||||
'application/zip', |
||||
'application/x-zip-compressed', |
||||
'application/s-compressed', |
||||
'multipart/x-zip', |
||||
], |
||||
'rar' => [ |
||||
'application/vnd.rar', |
||||
'application/x-rar', |
||||
'application/rar', |
||||
'application/x-rar-compressed', |
||||
], |
||||
'mid' => 'audio/midi', |
||||
'midi' => 'audio/midi', |
||||
'mpga' => 'audio/mpeg', |
||||
'mp2' => 'audio/mpeg', |
||||
'mp3' => [ |
||||
'audio/mpeg', |
||||
'audio/mpg', |
||||
'audio/mpeg3', |
||||
'audio/mp3', |
||||
], |
||||
'aif' => [ |
||||
'audio/x-aiff', |
||||
'audio/aiff', |
||||
], |
||||
'aiff' => [ |
||||
'audio/x-aiff', |
||||
'audio/aiff', |
||||
], |
||||
'aifc' => 'audio/x-aiff', |
||||
'ram' => 'audio/x-pn-realaudio', |
||||
'rm' => 'audio/x-pn-realaudio', |
||||
'rpm' => 'audio/x-pn-realaudio-plugin', |
||||
'ra' => 'audio/x-realaudio', |
||||
'rv' => 'video/vnd.rn-realvideo', |
||||
'wav' => [ |
||||
'audio/x-wav', |
||||
'audio/wave', |
||||
'audio/wav', |
||||
], |
||||
'bmp' => [ |
||||
'image/bmp', |
||||
'image/x-bmp', |
||||
'image/x-bitmap', |
||||
'image/x-xbitmap', |
||||
'image/x-win-bitmap', |
||||
'image/x-windows-bmp', |
||||
'image/ms-bmp', |
||||
'image/x-ms-bmp', |
||||
'application/bmp', |
||||
'application/x-bmp', |
||||
'application/x-win-bitmap', |
||||
], |
||||
'gif' => 'image/gif', |
||||
'jpg' => [ |
||||
'image/jpeg', |
||||
'image/pjpeg', |
||||
], |
||||
'jpeg' => [ |
||||
'image/jpeg', |
||||
'image/pjpeg', |
||||
], |
||||
'jpe' => [ |
||||
'image/jpeg', |
||||
'image/pjpeg', |
||||
], |
||||
'jp2' => [ |
||||
'image/jp2', |
||||
'video/mj2', |
||||
'image/jpx', |
||||
'image/jpm', |
||||
], |
||||
'j2k' => [ |
||||
'image/jp2', |
||||
'video/mj2', |
||||
'image/jpx', |
||||
'image/jpm', |
||||
], |
||||
'jpf' => [ |
||||
'image/jp2', |
||||
'video/mj2', |
||||
'image/jpx', |
||||
'image/jpm', |
||||
], |
||||
'jpg2' => [ |
||||
'image/jp2', |
||||
'video/mj2', |
||||
'image/jpx', |
||||
'image/jpm', |
||||
], |
||||
'jpx' => [ |
||||
'image/jp2', |
||||
'video/mj2', |
||||
'image/jpx', |
||||
'image/jpm', |
||||
], |
||||
'jpm' => [ |
||||
'image/jp2', |
||||
'video/mj2', |
||||
'image/jpx', |
||||
'image/jpm', |
||||
], |
||||
'mj2' => [ |
||||
'image/jp2', |
||||
'video/mj2', |
||||
'image/jpx', |
||||
'image/jpm', |
||||
], |
||||
'mjp2' => [ |
||||
'image/jp2', |
||||
'video/mj2', |
||||
'image/jpx', |
||||
'image/jpm', |
||||
], |
||||
'png' => [ |
||||
'image/png', |
||||
'image/x-png', |
||||
], |
||||
'webp' => 'image/webp', |
||||
'tif' => 'image/tiff', |
||||
'tiff' => 'image/tiff', |
||||
'css' => [ |
||||
'text/css', |
||||
'text/plain', |
||||
], |
||||
'html' => [ |
||||
'text/html', |
||||
'text/plain', |
||||
], |
||||
'htm' => [ |
||||
'text/html', |
||||
'text/plain', |
||||
], |
||||
'shtml' => [ |
||||
'text/html', |
||||
'text/plain', |
||||
], |
||||
'txt' => 'text/plain', |
||||
'text' => 'text/plain', |
||||
'log' => [ |
||||
'text/plain', |
||||
'text/x-log', |
||||
], |
||||
'rtx' => 'text/richtext', |
||||
'rtf' => 'text/rtf', |
||||
'xml' => [ |
||||
'application/xml', |
||||
'text/xml', |
||||
'text/plain', |
||||
], |
||||
'xsl' => [ |
||||
'application/xml', |
||||
'text/xsl', |
||||
'text/xml', |
||||
], |
||||
'mpeg' => 'video/mpeg', |
||||
'mpg' => 'video/mpeg', |
||||
'mpe' => 'video/mpeg', |
||||
'qt' => 'video/quicktime', |
||||
'mov' => 'video/quicktime', |
||||
'avi' => [ |
||||
'video/x-msvideo', |
||||
'video/msvideo', |
||||
'video/avi', |
||||
'application/x-troff-msvideo', |
||||
], |
||||
'movie' => 'video/x-sgi-movie', |
||||
'doc' => [ |
||||
'application/msword', |
||||
'application/vnd.ms-office', |
||||
], |
||||
'docx' => [ |
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.document', |
||||
'application/zip', |
||||
'application/msword', |
||||
'application/x-zip', |
||||
], |
||||
'dot' => [ |
||||
'application/msword', |
||||
'application/vnd.ms-office', |
||||
], |
||||
'dotx' => [ |
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.document', |
||||
'application/zip', |
||||
'application/msword', |
||||
], |
||||
'xlsx' => [ |
||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', |
||||
'application/zip', |
||||
'application/vnd.ms-excel', |
||||
'application/msword', |
||||
'application/x-zip', |
||||
], |
||||
'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroEnabled.12', |
||||
'xlsm' => 'application/vnd.ms-excel.sheet.macroEnabled.12', |
||||
'word' => [ |
||||
'application/msword', |
||||
'application/octet-stream', |
||||
], |
||||
'xl' => 'application/excel', |
||||
'eml' => 'message/rfc822', |
||||
'json' => [ |
||||
'application/json', |
||||
'text/json', |
||||
], |
||||
'pem' => [ |
||||
'application/x-x509-user-cert', |
||||
'application/x-pem-file', |
||||
'application/octet-stream', |
||||
], |
||||
'p10' => [ |
||||
'application/x-pkcs10', |
||||
'application/pkcs10', |
||||
], |
||||
'p12' => 'application/x-pkcs12', |
||||
'p7a' => 'application/x-pkcs7-signature', |
||||
'p7c' => [ |
||||
'application/pkcs7-mime', |
||||
'application/x-pkcs7-mime', |
||||
], |
||||
'p7m' => [ |
||||
'application/pkcs7-mime', |
||||
'application/x-pkcs7-mime', |
||||
], |
||||
'p7r' => 'application/x-pkcs7-certreqresp', |
||||
'p7s' => 'application/pkcs7-signature', |
||||
'crt' => [ |
||||
'application/x-x509-ca-cert', |
||||
'application/x-x509-user-cert', |
||||
'application/pkix-cert', |
||||
], |
||||
'crl' => [ |
||||
'application/pkix-crl', |
||||
'application/pkcs-crl', |
||||
], |
||||
'der' => 'application/x-x509-ca-cert', |
||||
'kdb' => 'application/octet-stream', |
||||
'pgp' => 'application/pgp', |
||||
'gpg' => 'application/gpg-keys', |
||||
'sst' => 'application/octet-stream', |
||||
'csr' => 'application/octet-stream', |
||||
'rsa' => 'application/x-pkcs7', |
||||
'cer' => [ |
||||
'application/pkix-cert', |
||||
'application/x-x509-ca-cert', |
||||
], |
||||
'3g2' => 'video/3gpp2', |
||||
'3gp' => [ |
||||
'video/3gp', |
||||
'video/3gpp', |
||||
], |
||||
'mp4' => 'video/mp4', |
||||
'm4a' => 'audio/x-m4a', |
||||
'f4v' => [ |
||||
'video/mp4', |
||||
'video/x-f4v', |
||||
], |
||||
'flv' => 'video/x-flv', |
||||
'webm' => 'video/webm', |
||||
'aac' => 'audio/x-acc', |
||||
'm4u' => 'application/vnd.mpegurl', |
||||
'm3u' => 'text/plain', |
||||
'xspf' => 'application/xspf+xml', |
||||
'vlc' => 'application/videolan', |
||||
'wmv' => [ |
||||
'video/x-ms-wmv', |
||||
'video/x-ms-asf', |
||||
], |
||||
'au' => 'audio/x-au', |
||||
'ac3' => 'audio/ac3', |
||||
'flac' => 'audio/x-flac', |
||||
'ogg' => [ |
||||
'audio/ogg', |
||||
'video/ogg', |
||||
'application/ogg', |
||||
], |
||||
'kmz' => [ |
||||
'application/vnd.google-earth.kmz', |
||||
'application/zip', |
||||
'application/x-zip', |
||||
], |
||||
'kml' => [ |
||||
'application/vnd.google-earth.kml+xml', |
||||
'application/xml', |
||||
'text/xml', |
||||
], |
||||
'ics' => 'text/calendar', |
||||
'ical' => 'text/calendar', |
||||
'zsh' => 'text/x-scriptzsh', |
||||
'7zip' => [ |
||||
'application/x-compressed', |
||||
'application/x-zip-compressed', |
||||
'application/zip', |
||||
'multipart/x-zip', |
||||
], |
||||
'cdr' => [ |
||||
'application/cdr', |
||||
'application/coreldraw', |
||||
'application/x-cdr', |
||||
'application/x-coreldraw', |
||||
'image/cdr', |
||||
'image/x-cdr', |
||||
'zz-application/zz-winassoc-cdr', |
||||
], |
||||
'wma' => [ |
||||
'audio/x-ms-wma', |
||||
'video/x-ms-asf', |
||||
], |
||||
'jar' => [ |
||||
'application/java-archive', |
||||
'application/x-java-application', |
||||
'application/x-jar', |
||||
'application/x-compressed', |
||||
], |
||||
'svg' => [ |
||||
'image/svg+xml', |
||||
'image/svg', |
||||
'application/xml', |
||||
'text/xml', |
||||
], |
||||
'vcf' => 'text/x-vcard', |
||||
'srt' => [ |
||||
'text/srt', |
||||
'text/plain', |
||||
], |
||||
'vtt' => [ |
||||
'text/vtt', |
||||
'text/plain', |
||||
], |
||||
'ico' => [ |
||||
'image/x-icon', |
||||
'image/x-ico', |
||||
'image/vnd.microsoft.icon', |
||||
], |
||||
'stl' => [ |
||||
'application/sla', |
||||
'application/vnd.ms-pki.stl', |
||||
'application/x-navistyle', |
||||
], |
||||
]; |
||||
|
||||
/** |
||||
* Attempts to determine the best mime type for the given file extension. |
||||
* |
||||
* @return string|null The mime type found, or none if unable to determine. |
||||
*/ |
||||
public static function guessTypeFromExtension(string $extension) |
||||
{ |
||||
$extension = trim(strtolower($extension), '. '); |
||||
|
||||
if (! array_key_exists($extension, static::$mimes)) { |
||||
return null; |
||||
} |
||||
|
||||
return is_array(static::$mimes[$extension]) ? static::$mimes[$extension][0] : static::$mimes[$extension]; |
||||
} |
||||
|
||||
/** |
||||
* Attempts to determine the best file extension for a given mime type. |
||||
* |
||||
* @param string|null $proposedExtension - default extension (in case there is more than one with the same mime type) |
||||
* |
||||
* @return string|null The extension determined, or null if unable to match. |
||||
*/ |
||||
public static function guessExtensionFromType(string $type, ?string $proposedExtension = null) |
||||
{ |
||||
$type = trim(strtolower($type), '. '); |
||||
|
||||
$proposedExtension = trim(strtolower($proposedExtension ?? '')); |
||||
|
||||
if ( |
||||
$proposedExtension !== '' |
||||
&& array_key_exists($proposedExtension, static::$mimes) |
||||
&& in_array($type, (array) static::$mimes[$proposedExtension], true) |
||||
) { |
||||
// The detected mime type matches with the proposed extension. |
||||
return $proposedExtension; |
||||
} |
||||
|
||||
// Reverse check the mime type list if no extension was proposed. |
||||
// This search is order sensitive! |
||||
foreach (static::$mimes as $ext => $types) { |
||||
if (in_array($type, (array) $types, true)) { |
||||
return $ext; |
||||
} |
||||
} |
||||
|
||||
return null; |
||||
} |
||||
} |
@ -0,0 +1,84 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Modules\Modules as BaseModules; |
||||
|
||||
/** |
||||
* Modules Configuration. |
||||
* |
||||
* NOTE: This class is required prior to Autoloader instantiation, |
||||
* and does not extend BaseConfig. |
||||
* |
||||
* @immutable |
||||
*/ |
||||
class Modules extends BaseModules |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Enable Auto-Discovery? |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If true, then auto-discovery will happen across all elements listed in |
||||
* $aliases below. If false, no auto-discovery will happen at all, |
||||
* giving a slight performance boost. |
||||
* |
||||
* @var bool |
||||
*/ |
||||
public $enabled = true; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Enable Auto-Discovery Within Composer Packages? |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If true, then auto-discovery will happen across all namespaces loaded |
||||
* by Composer, as well as the namespaces configured locally. |
||||
* |
||||
* @var bool |
||||
*/ |
||||
public $discoverInComposer = true; |
||||
|
||||
/** |
||||
* The Composer package list for Auto-Discovery |
||||
* This setting is optional. |
||||
* |
||||
* E.g.: |
||||
* [ |
||||
* 'only' => [ |
||||
* // List up all packages to auto-discover |
||||
* 'codeigniter4/shield', |
||||
* ], |
||||
* ] |
||||
* or |
||||
* [ |
||||
* 'exclude' => [ |
||||
* // List up packages to exclude. |
||||
* 'pestphp/pest', |
||||
* ], |
||||
* ] |
||||
* |
||||
* @var array{only?: list<string>, exclude?: list<string>} |
||||
*/ |
||||
public $composerPackages = []; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Auto-Discovery Rules |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Aliases list of all discovery classes that will be active and used during |
||||
* the current application request. |
||||
* |
||||
* If it is not listed, only the base application elements will be used. |
||||
* |
||||
* @var list<string> |
||||
*/ |
||||
public $aliases = [ |
||||
'events', |
||||
'filters', |
||||
'registrars', |
||||
'routes', |
||||
'services', |
||||
]; |
||||
} |
@ -0,0 +1,37 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class Pager extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Templates |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Pagination links are rendered out using views to configure their |
||||
* appearance. This array contains aliases and the view names to |
||||
* use when rendering the links. |
||||
* |
||||
* Within each view, the Pager object will be available as $pager, |
||||
* and the desired group as $pagerGroup; |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $templates = [ |
||||
'default_full' => 'CodeIgniter\Pager\Views\default_full', |
||||
'default_simple' => 'CodeIgniter\Pager\Views\default_simple', |
||||
'default_head' => 'CodeIgniter\Pager\Views\default_head', |
||||
]; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Items Per Page |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The default number of results shown in a single page. |
||||
*/ |
||||
public int $perPage = 20; |
||||
} |
@ -0,0 +1,80 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
/** |
||||
* Paths |
||||
* |
||||
* Holds the paths that are used by the system to |
||||
* locate the main directories, app, system, etc. |
||||
* |
||||
* Modifying these allows you to restructure your application, |
||||
* share a system folder between multiple applications, and more. |
||||
* |
||||
* All paths are relative to the project's root folder. |
||||
* |
||||
* NOTE: This class is required prior to Autoloader instantiation, |
||||
* and does not extend BaseConfig. |
||||
* |
||||
* @immutable |
||||
*/ |
||||
class Paths |
||||
{ |
||||
/** |
||||
* --------------------------------------------------------------- |
||||
* SYSTEM FOLDER NAME |
||||
* --------------------------------------------------------------- |
||||
* |
||||
* This must contain the name of your "system" folder. Include |
||||
* the path if the folder is not in the same directory as this file. |
||||
*/ |
||||
public string $systemDirectory = __DIR__ . '/../../system'; |
||||
|
||||
/** |
||||
* --------------------------------------------------------------- |
||||
* APPLICATION FOLDER NAME |
||||
* --------------------------------------------------------------- |
||||
* |
||||
* If you want this front controller to use a different "app" |
||||
* folder than the default one you can set its name here. The folder |
||||
* can also be renamed or relocated anywhere on your server. If |
||||
* you do, use a full server path. |
||||
* |
||||
* @see http://codeigniter.com/user_guide/general/managing_apps.html |
||||
*/ |
||||
public string $appDirectory = __DIR__ . '/..'; |
||||
|
||||
/** |
||||
* --------------------------------------------------------------- |
||||
* WRITABLE DIRECTORY NAME |
||||
* --------------------------------------------------------------- |
||||
* |
||||
* This variable must contain the name of your "writable" directory. |
||||
* The writable directory allows you to group all directories that |
||||
* need write permission to a single place that can be tucked away |
||||
* for maximum security, keeping it out of the app and/or |
||||
* system directories. |
||||
*/ |
||||
public string $writableDirectory = __DIR__ . '/../../writable'; |
||||
|
||||
/** |
||||
* --------------------------------------------------------------- |
||||
* TESTS DIRECTORY NAME |
||||
* --------------------------------------------------------------- |
||||
* |
||||
* This variable must contain the name of your "tests" directory. |
||||
*/ |
||||
public string $testsDirectory = __DIR__ . '/../../tests'; |
||||
|
||||
/** |
||||
* --------------------------------------------------------------- |
||||
* VIEW DIRECTORY NAME |
||||
* --------------------------------------------------------------- |
||||
* |
||||
* This variable must contain the name of the directory that |
||||
* contains the view files used by your application. By |
||||
* default this is in `app/Views`. This value |
||||
* is used when no value is provided to `Services::renderer()`. |
||||
*/ |
||||
public string $viewDirectory = __DIR__ . '/../Views'; |
||||
} |
@ -0,0 +1,28 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\Publisher as BasePublisher; |
||||
|
||||
/** |
||||
* Publisher Configuration |
||||
* |
||||
* Defines basic security restrictions for the Publisher class |
||||
* to prevent abuse by injecting malicious files into a project. |
||||
*/ |
||||
class Publisher extends BasePublisher |
||||
{ |
||||
/** |
||||
* A list of allowed destinations with a (pseudo-)regex |
||||
* of allowed files for each destination. |
||||
* Attempts to publish to directories not in this list will |
||||
* result in a PublisherException. Files that do no fit the |
||||
* pattern will cause copy/merge to fail. |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public $restrictions = [ |
||||
ROOTPATH => '*', |
||||
FCPATH => '#\.(s?css|js|map|html?|xml|json|webmanifest|ttf|eot|woff2?|gif|jpe?g|tiff?|png|webp|bmp|ico|svg)$#i', |
||||
]; |
||||
} |
@ -0,0 +1,51 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
// Create a new instance of our RouteCollection class. |
||||
$routes = Services::routes(); |
||||
|
||||
// Load the system's routing file first, so that the app and ENVIRONMENT |
||||
// can override as needed. |
||||
if (file_exists(SYSTEMPATH . 'Config/Routes.php')) { |
||||
require SYSTEMPATH . 'Config/Routes.php'; |
||||
} |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------- |
||||
* Router Setup |
||||
* -------------------------------------------------------------------- |
||||
*/ |
||||
$routes->setDefaultNamespace('App\Controllers'); |
||||
$routes->setDefaultController('Auth'); |
||||
$routes->setDefaultMethod('index'); |
||||
$routes->setTranslateURIDashes(false); |
||||
$routes->set404Override(); |
||||
$routes->setAutoRoute(true); |
||||
|
||||
/* |
||||
* -------------------------------------------------------------------- |
||||
* Route Definitions |
||||
* -------------------------------------------------------------------- |
||||
*/ |
||||
|
||||
// We get a performance increase by specifying the default |
||||
// route since we don't have to scan directories. |
||||
$routes->get('/', 'Auth::index'); |
||||
|
||||
/* |
||||
* -------------------------------------------------------------------- |
||||
* Additional Routing |
||||
* -------------------------------------------------------------------- |
||||
* |
||||
* There will often be times that you need additional routing and you |
||||
* need it to be able to override any defaults in this file. Environment |
||||
* based routes is one such time. require() additional route files here |
||||
* to make that happen. |
||||
* |
||||
* You will have access to the $routes object within that file without |
||||
* needing to reload it. |
||||
*/ |
||||
if (file_exists(APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php')) { |
||||
require APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php'; |
||||
} |
@ -0,0 +1,113 @@
|
||||
<?php |
||||
|
||||
/** |
||||
* This file is part of CodeIgniter 4 framework. |
||||
* |
||||
* (c) CodeIgniter Foundation <admin@codeigniter.com> |
||||
* |
||||
* For the full copyright and license information, please view |
||||
* the LICENSE file that was distributed with this source code. |
||||
*/ |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\Routing as BaseRouting; |
||||
|
||||
/** |
||||
* Routing configuration |
||||
*/ |
||||
class Routing extends BaseRouting |
||||
{ |
||||
/** |
||||
* An array of files that contain route definitions. |
||||
* Route files are read in order, with the first match |
||||
* found taking precedence. |
||||
* |
||||
* Default: APPPATH . 'Config/Routes.php' |
||||
*/ |
||||
public array $routeFiles = [ |
||||
APPPATH . 'Config/Routes.php', |
||||
]; |
||||
|
||||
/** |
||||
* The default namespace to use for Controllers when no other |
||||
* namespace has been specified. |
||||
* |
||||
* Default: 'App\Controllers' |
||||
*/ |
||||
public string $defaultNamespace = 'App\Controllers'; |
||||
|
||||
/** |
||||
* The default controller to use when no other controller has been |
||||
* specified. |
||||
* |
||||
* Default: 'Home' |
||||
*/ |
||||
public string $defaultController = 'Home'; |
||||
|
||||
/** |
||||
* The default method to call on the controller when no other |
||||
* method has been set in the route. |
||||
* |
||||
* Default: 'index' |
||||
*/ |
||||
public string $defaultMethod = 'index'; |
||||
|
||||
/** |
||||
* Whether to translate dashes in URIs to underscores. |
||||
* Primarily useful when using the auto-routing. |
||||
* |
||||
* Default: false |
||||
*/ |
||||
public bool $translateURIDashes = false; |
||||
|
||||
/** |
||||
* Sets the class/method that should be called if routing doesn't |
||||
* find a match. It can be either a closure or the controller/method |
||||
* name exactly like a route is defined: Users::index |
||||
* |
||||
* This setting is passed to the Router class and handled there. |
||||
* |
||||
* If you want to use a closure, you will have to set it in the |
||||
* class constructor or the routes file by calling: |
||||
* |
||||
* $routes->set404Override(function() { |
||||
* // Do something here |
||||
* }); |
||||
* |
||||
* Example: |
||||
* public $override404 = 'App\Errors::show404'; |
||||
*/ |
||||
public ?string $override404 = null; |
||||
|
||||
/** |
||||
* If TRUE, the system will attempt to match the URI against |
||||
* Controllers by matching each segment against folders/files |
||||
* in APPPATH/Controllers, when a match wasn't found against |
||||
* defined routes. |
||||
* |
||||
* If FALSE, will stop searching and do NO automatic routing. |
||||
*/ |
||||
public bool $autoRoute = false; |
||||
|
||||
/** |
||||
* If TRUE, will enable the use of the 'prioritize' option |
||||
* when defining routes. |
||||
* |
||||
* Default: false |
||||
*/ |
||||
public bool $prioritize = false; |
||||
|
||||
/** |
||||
* Map of URI segments and namespaces. For Auto Routing (Improved). |
||||
* |
||||
* The key is the first URI segment. The value is the controller namespace. |
||||
* E.g., |
||||
* [ |
||||
* 'blog' => 'Acme\Blog\Controllers', |
||||
* ] |
||||
* |
||||
* @var array [ uri_segment => namespace ] |
||||
*/ |
||||
public array $moduleRoutes = []; |
||||
} |
@ -0,0 +1,101 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
class Security extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF Protection Method |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Protection Method for Cross Site Request Forgery protection. |
||||
* |
||||
* @var string 'cookie' or 'session' |
||||
*/ |
||||
public string $csrfProtection = 'cookie'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF Token Randomization |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Randomize the CSRF Token for added security. |
||||
*/ |
||||
public bool $tokenRandomize = false; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF Token Name |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Token name for Cross Site Request Forgery protection. |
||||
*/ |
||||
public string $tokenName = 'csrf_test_name'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF Header Name |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Header name for Cross Site Request Forgery protection. |
||||
*/ |
||||
public string $headerName = 'X-CSRF-TOKEN'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF Cookie Name |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Cookie name for Cross Site Request Forgery protection. |
||||
*/ |
||||
public string $cookieName = 'csrf_cookie_name'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF Expires |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Expiration time for Cross Site Request Forgery protection cookie. |
||||
* |
||||
* Defaults to two hours (in seconds). |
||||
*/ |
||||
public int $expires = 7200; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF Regenerate |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Regenerate CSRF Token on every submission. |
||||
*/ |
||||
public bool $regenerate = true; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF Redirect |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Redirect to previous page with error on failure. |
||||
*/ |
||||
public bool $redirect = false; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* CSRF SameSite |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Setting for CSRF SameSite cookie token. |
||||
* |
||||
* Allowed values are: None - Lax - Strict - ''. |
||||
* |
||||
* Defaults to `Lax` as recommended in this link: |
||||
* |
||||
* @see https://portswigger.net/web-security/csrf/samesite-cookies |
||||
* |
||||
* @deprecated `Config\Cookie` $samesite property is used. |
||||
*/ |
||||
public string $samesite = 'Lax'; |
||||
} |
@ -0,0 +1,32 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseService; |
||||
|
||||
/** |
||||
* Services Configuration file. |
||||
* |
||||
* Services are simply other classes/libraries that the system uses |
||||
* to do its job. This is used by CodeIgniter to allow the core of the |
||||
* framework to be swapped out easily without affecting the usage within |
||||
* the rest of your application. |
||||
* |
||||
* This file holds any application-specific services, or service overrides |
||||
* that you might need. An example has been included with the general |
||||
* method format you should use for your service methods. For more examples, |
||||
* see the core Services file at system/Config/Services.php. |
||||
*/ |
||||
class Services extends BaseService |
||||
{ |
||||
/* |
||||
* public static function example($getShared = true) |
||||
* { |
||||
* if ($getShared) { |
||||
* return static::getSharedInstance('example'); |
||||
* } |
||||
* |
||||
* return new \CodeIgniter\Example(); |
||||
* } |
||||
*/ |
||||
} |
@ -0,0 +1,102 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use CodeIgniter\Session\Handlers\BaseHandler; |
||||
use CodeIgniter\Session\Handlers\FileHandler; |
||||
|
||||
class Session extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Session Driver |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The session storage driver to use: |
||||
* - `CodeIgniter\Session\Handlers\FileHandler` |
||||
* - `CodeIgniter\Session\Handlers\DatabaseHandler` |
||||
* - `CodeIgniter\Session\Handlers\MemcachedHandler` |
||||
* - `CodeIgniter\Session\Handlers\RedisHandler` |
||||
* |
||||
* @var class-string<BaseHandler> |
||||
*/ |
||||
public string $driver = FileHandler::class; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Session Cookie Name |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The session cookie name, must contain only [0-9a-z_-] characters |
||||
*/ |
||||
public string $cookieName = 'ci_session'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Session Expiration |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The number of SECONDS you want the session to last. |
||||
* Setting to 0 (zero) means expire when the browser is closed. |
||||
*/ |
||||
public int $expiration = 7200; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Session Save Path |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The location to save sessions to and is driver dependent. |
||||
* |
||||
* For the 'files' driver, it's a path to a writable directory. |
||||
* WARNING: Only absolute paths are supported! |
||||
* |
||||
* For the 'database' driver, it's a table name. |
||||
* Please read up the manual for the format with other session drivers. |
||||
* |
||||
* IMPORTANT: You are REQUIRED to set a valid save path! |
||||
*/ |
||||
public string $savePath = WRITEPATH . 'session'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Session Match IP |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Whether to match the user's IP address when reading the session data. |
||||
* |
||||
* WARNING: If you're using the database driver, don't forget to update |
||||
* your session table's PRIMARY KEY when changing this setting. |
||||
*/ |
||||
public bool $matchIP = false; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Session Time to Update |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* How many seconds between CI regenerating the session ID. |
||||
*/ |
||||
public int $timeToUpdate = 300; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Session Regenerate Destroy |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Whether to destroy session data associated with the old session ID |
||||
* when auto-regenerating the session ID. When set to FALSE, the data |
||||
* will be later deleted by the garbage collector. |
||||
*/ |
||||
public bool $regenerateDestroy = false; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Session Database Group |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* DB Group for the database session. |
||||
*/ |
||||
public ?string $DBGroup = null; |
||||
} |
@ -0,0 +1,118 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use CodeIgniter\Debug\Toolbar\Collectors\Database; |
||||
use CodeIgniter\Debug\Toolbar\Collectors\Events; |
||||
use CodeIgniter\Debug\Toolbar\Collectors\Files; |
||||
use CodeIgniter\Debug\Toolbar\Collectors\Logs; |
||||
use CodeIgniter\Debug\Toolbar\Collectors\Routes; |
||||
use CodeIgniter\Debug\Toolbar\Collectors\Timers; |
||||
use CodeIgniter\Debug\Toolbar\Collectors\Views; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Debug Toolbar |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The Debug Toolbar provides a way to see information about the performance |
||||
* and state of your application during that page display. By default it will |
||||
* NOT be displayed under production environments, and will only display if |
||||
* `CI_DEBUG` is true, since if it's not, there's not much to display anyway. |
||||
*/ |
||||
class Toolbar extends BaseConfig |
||||
{ |
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Toolbar Collectors |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* List of toolbar collectors that will be called when Debug Toolbar |
||||
* fires up and collects data from. |
||||
* |
||||
* @var string[] |
||||
*/ |
||||
public array $collectors = [ |
||||
Timers::class, |
||||
Database::class, |
||||
Logs::class, |
||||
Views::class, |
||||
// \CodeIgniter\Debug\Toolbar\Collectors\Cache::class, |
||||
Files::class, |
||||
Routes::class, |
||||
Events::class, |
||||
]; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Collect Var Data |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If set to false var data from the views will not be colleted. Useful to |
||||
* avoid high memory usage when there are lots of data passed to the view. |
||||
*/ |
||||
public bool $collectVarData = true; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Max History |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* `$maxHistory` sets a limit on the number of past requests that are stored, |
||||
* helping to conserve file space used to store them. You can set it to |
||||
* 0 (zero) to not have any history stored, or -1 for unlimited history. |
||||
*/ |
||||
public int $maxHistory = 20; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Toolbar Views Path |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* The full path to the the views that are used by the toolbar. |
||||
* This MUST have a trailing slash. |
||||
*/ |
||||
public string $viewsPath = SYSTEMPATH . 'Debug/Toolbar/Views/'; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Max Queries |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* If the Database Collector is enabled, it will log every query that the |
||||
* the system generates so they can be displayed on the toolbar's timeline |
||||
* and in the query log. This can lead to memory issues in some instances |
||||
* with hundreds of queries. |
||||
* |
||||
* `$maxQueries` defines the maximum amount of queries that will be stored. |
||||
*/ |
||||
public int $maxQueries = 100; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Watched Directories |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Contains an array of directories that will be watched for changes and |
||||
* used to determine if the hot-reload feature should reload the page or not. |
||||
* We restrict the values to keep performance as high as possible. |
||||
* |
||||
* NOTE: The ROOTPATH will be prepended to all values. |
||||
*/ |
||||
public array $watchedDirectories = [ |
||||
'app', |
||||
]; |
||||
|
||||
/** |
||||
* -------------------------------------------------------------------------- |
||||
* Watched File Extensions |
||||
* -------------------------------------------------------------------------- |
||||
* |
||||
* Contains an array of file extensions that will be watched for changes and |
||||
* used to determine if the hot-reload feature should reload the page or not. |
||||
*/ |
||||
public array $watchedExtensions = [ |
||||
'php', 'css', 'js', 'html', 'svg', 'json', 'env', |
||||
]; |
||||
} |
@ -0,0 +1,252 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* User Agents |
||||
* ------------------------------------------------------------------- |
||||
* |
||||
* This file contains four arrays of user agent data. It is used by the |
||||
* User Agent Class to help identify browser, platform, robot, and |
||||
* mobile device data. The array keys are used to identify the device |
||||
* and the array values are used to set the actual name of the item. |
||||
*/ |
||||
class UserAgents extends BaseConfig |
||||
{ |
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* OS Platforms |
||||
* ------------------------------------------------------------------- |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $platforms = [ |
||||
'windows nt 10.0' => 'Windows 10', |
||||
'windows nt 6.3' => 'Windows 8.1', |
||||
'windows nt 6.2' => 'Windows 8', |
||||
'windows nt 6.1' => 'Windows 7', |
||||
'windows nt 6.0' => 'Windows Vista', |
||||
'windows nt 5.2' => 'Windows 2003', |
||||
'windows nt 5.1' => 'Windows XP', |
||||
'windows nt 5.0' => 'Windows 2000', |
||||
'windows nt 4.0' => 'Windows NT 4.0', |
||||
'winnt4.0' => 'Windows NT 4.0', |
||||
'winnt 4.0' => 'Windows NT', |
||||
'winnt' => 'Windows NT', |
||||
'windows 98' => 'Windows 98', |
||||
'win98' => 'Windows 98', |
||||
'windows 95' => 'Windows 95', |
||||
'win95' => 'Windows 95', |
||||
'windows phone' => 'Windows Phone', |
||||
'windows' => 'Unknown Windows OS', |
||||
'android' => 'Android', |
||||
'blackberry' => 'BlackBerry', |
||||
'iphone' => 'iOS', |
||||
'ipad' => 'iOS', |
||||
'ipod' => 'iOS', |
||||
'os x' => 'Mac OS X', |
||||
'ppc mac' => 'Power PC Mac', |
||||
'freebsd' => 'FreeBSD', |
||||
'ppc' => 'Macintosh', |
||||
'linux' => 'Linux', |
||||
'debian' => 'Debian', |
||||
'sunos' => 'Sun Solaris', |
||||
'beos' => 'BeOS', |
||||
'apachebench' => 'ApacheBench', |
||||
'aix' => 'AIX', |
||||
'irix' => 'Irix', |
||||
'osf' => 'DEC OSF', |
||||
'hp-ux' => 'HP-UX', |
||||
'netbsd' => 'NetBSD', |
||||
'bsdi' => 'BSDi', |
||||
'openbsd' => 'OpenBSD', |
||||
'gnu' => 'GNU/Linux', |
||||
'unix' => 'Unknown Unix OS', |
||||
'symbian' => 'Symbian OS', |
||||
]; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* Browsers |
||||
* ------------------------------------------------------------------- |
||||
* |
||||
* The order of this array should NOT be changed. Many browsers return |
||||
* multiple browser types so we want to identify the subtype first. |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $browsers = [ |
||||
'OPR' => 'Opera', |
||||
'Flock' => 'Flock', |
||||
'Edge' => 'Spartan', |
||||
'Edg' => 'Edge', |
||||
'Chrome' => 'Chrome', |
||||
// Opera 10+ always reports Opera/9.80 and appends Version/<real version> to the user agent string |
||||
'Opera.*?Version' => 'Opera', |
||||
'Opera' => 'Opera', |
||||
'MSIE' => 'Internet Explorer', |
||||
'Internet Explorer' => 'Internet Explorer', |
||||
'Trident.* rv' => 'Internet Explorer', |
||||
'Shiira' => 'Shiira', |
||||
'Firefox' => 'Firefox', |
||||
'Chimera' => 'Chimera', |
||||
'Phoenix' => 'Phoenix', |
||||
'Firebird' => 'Firebird', |
||||
'Camino' => 'Camino', |
||||
'Netscape' => 'Netscape', |
||||
'OmniWeb' => 'OmniWeb', |
||||
'Safari' => 'Safari', |
||||
'Mozilla' => 'Mozilla', |
||||
'Konqueror' => 'Konqueror', |
||||
'icab' => 'iCab', |
||||
'Lynx' => 'Lynx', |
||||
'Links' => 'Links', |
||||
'hotjava' => 'HotJava', |
||||
'amaya' => 'Amaya', |
||||
'IBrowse' => 'IBrowse', |
||||
'Maxthon' => 'Maxthon', |
||||
'Ubuntu' => 'Ubuntu Web Browser', |
||||
'Vivaldi' => 'Vivaldi', |
||||
]; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* Mobiles |
||||
* ------------------------------------------------------------------- |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $mobiles = [ |
||||
// legacy array, old values commented out |
||||
'mobileexplorer' => 'Mobile Explorer', |
||||
// 'openwave' => 'Open Wave', |
||||
// 'opera mini' => 'Opera Mini', |
||||
// 'operamini' => 'Opera Mini', |
||||
// 'elaine' => 'Palm', |
||||
'palmsource' => 'Palm', |
||||
// 'digital paths' => 'Palm', |
||||
// 'avantgo' => 'Avantgo', |
||||
// 'xiino' => 'Xiino', |
||||
'palmscape' => 'Palmscape', |
||||
// 'nokia' => 'Nokia', |
||||
// 'ericsson' => 'Ericsson', |
||||
// 'blackberry' => 'BlackBerry', |
||||
// 'motorola' => 'Motorola' |
||||
|
||||
// Phones and Manufacturers |
||||
'motorola' => 'Motorola', |
||||
'nokia' => 'Nokia', |
||||
'palm' => 'Palm', |
||||
'iphone' => 'Apple iPhone', |
||||
'ipad' => 'iPad', |
||||
'ipod' => 'Apple iPod Touch', |
||||
'sony' => 'Sony Ericsson', |
||||
'ericsson' => 'Sony Ericsson', |
||||
'blackberry' => 'BlackBerry', |
||||
'cocoon' => 'O2 Cocoon', |
||||
'blazer' => 'Treo', |
||||
'lg' => 'LG', |
||||
'amoi' => 'Amoi', |
||||
'xda' => 'XDA', |
||||
'mda' => 'MDA', |
||||
'vario' => 'Vario', |
||||
'htc' => 'HTC', |
||||
'samsung' => 'Samsung', |
||||
'sharp' => 'Sharp', |
||||
'sie-' => 'Siemens', |
||||
'alcatel' => 'Alcatel', |
||||
'benq' => 'BenQ', |
||||
'ipaq' => 'HP iPaq', |
||||
'mot-' => 'Motorola', |
||||
'playstation portable' => 'PlayStation Portable', |
||||
'playstation 3' => 'PlayStation 3', |
||||
'playstation vita' => 'PlayStation Vita', |
||||
'hiptop' => 'Danger Hiptop', |
||||
'nec-' => 'NEC', |
||||
'panasonic' => 'Panasonic', |
||||
'philips' => 'Philips', |
||||
'sagem' => 'Sagem', |
||||
'sanyo' => 'Sanyo', |
||||
'spv' => 'SPV', |
||||
'zte' => 'ZTE', |
||||
'sendo' => 'Sendo', |
||||
'nintendo dsi' => 'Nintendo DSi', |
||||
'nintendo ds' => 'Nintendo DS', |
||||
'nintendo 3ds' => 'Nintendo 3DS', |
||||
'wii' => 'Nintendo Wii', |
||||
'open web' => 'Open Web', |
||||
'openweb' => 'OpenWeb', |
||||
|
||||
// Operating Systems |
||||
'android' => 'Android', |
||||
'symbian' => 'Symbian', |
||||
'SymbianOS' => 'SymbianOS', |
||||
'elaine' => 'Palm', |
||||
'series60' => 'Symbian S60', |
||||
'windows ce' => 'Windows CE', |
||||
|
||||
// Browsers |
||||
'obigo' => 'Obigo', |
||||
'netfront' => 'Netfront Browser', |
||||
'openwave' => 'Openwave Browser', |
||||
'mobilexplorer' => 'Mobile Explorer', |
||||
'operamini' => 'Opera Mini', |
||||
'opera mini' => 'Opera Mini', |
||||
'opera mobi' => 'Opera Mobile', |
||||
'fennec' => 'Firefox Mobile', |
||||
|
||||
// Other |
||||
'digital paths' => 'Digital Paths', |
||||
'avantgo' => 'AvantGo', |
||||
'xiino' => 'Xiino', |
||||
'novarra' => 'Novarra Transcoder', |
||||
'vodafone' => 'Vodafone', |
||||
'docomo' => 'NTT DoCoMo', |
||||
'o2' => 'O2', |
||||
|
||||
// Fallback |
||||
'mobile' => 'Generic Mobile', |
||||
'wireless' => 'Generic Mobile', |
||||
'j2me' => 'Generic Mobile', |
||||
'midp' => 'Generic Mobile', |
||||
'cldc' => 'Generic Mobile', |
||||
'up.link' => 'Generic Mobile', |
||||
'up.browser' => 'Generic Mobile', |
||||
'smartphone' => 'Generic Mobile', |
||||
'cellphone' => 'Generic Mobile', |
||||
]; |
||||
|
||||
/** |
||||
* ------------------------------------------------------------------- |
||||
* Robots |
||||
* ------------------------------------------------------------------- |
||||
* |
||||
* There are hundred of bots but these are the most common. |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $robots = [ |
||||
'googlebot' => 'Googlebot', |
||||
'msnbot' => 'MSNBot', |
||||
'baiduspider' => 'Baiduspider', |
||||
'bingbot' => 'Bing', |
||||
'slurp' => 'Inktomi Slurp', |
||||
'yahoo' => 'Yahoo', |
||||
'ask jeeves' => 'Ask Jeeves', |
||||
'fastcrawler' => 'FastCrawler', |
||||
'infoseek' => 'InfoSeek Robot 1.0', |
||||
'lycos' => 'Lycos', |
||||
'yandex' => 'YandexBot', |
||||
'mediapartners-google' => 'MediaPartners Google', |
||||
'CRAZYWEBCRAWLER' => 'Crazy Webcrawler', |
||||
'adsbot-google' => 'AdsBot Google', |
||||
'feedfetcher-google' => 'Feedfetcher Google', |
||||
'curious george' => 'Curious George', |
||||
'ia_archiver' => 'Alexa Crawler', |
||||
'MJ12bot' => 'Majestic-12', |
||||
'Uptimebot' => 'Uptimebot', |
||||
]; |
||||
} |
@ -0,0 +1,44 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\BaseConfig; |
||||
use CodeIgniter\Validation\StrictRules\CreditCardRules; |
||||
use CodeIgniter\Validation\StrictRules\FileRules; |
||||
use CodeIgniter\Validation\StrictRules\FormatRules; |
||||
use CodeIgniter\Validation\StrictRules\Rules; |
||||
|
||||
class Validation extends BaseConfig |
||||
{ |
||||
// -------------------------------------------------------------------- |
||||
// Setup |
||||
// -------------------------------------------------------------------- |
||||
|
||||
/** |
||||
* Stores the classes that contain the |
||||
* rules that are available. |
||||
* |
||||
* @var string[] |
||||
*/ |
||||
public array $ruleSets = [ |
||||
Rules::class, |
||||
FormatRules::class, |
||||
FileRules::class, |
||||
CreditCardRules::class, |
||||
]; |
||||
|
||||
/** |
||||
* Specifies the views that are used to display the |
||||
* errors. |
||||
* |
||||
* @var array<string, string> |
||||
*/ |
||||
public array $templates = [ |
||||
'list' => 'CodeIgniter\Validation\Views\list', |
||||
'single' => 'CodeIgniter\Validation\Views\single', |
||||
]; |
||||
|
||||
// -------------------------------------------------------------------- |
||||
// Rules |
||||
// -------------------------------------------------------------------- |
||||
} |
@ -0,0 +1,62 @@
|
||||
<?php |
||||
|
||||
namespace Config; |
||||
|
||||
use CodeIgniter\Config\View as BaseView; |
||||
use CodeIgniter\View\ViewDecoratorInterface; |
||||
|
||||
/** |
||||
* @phpstan-type ParserCallable (callable(mixed): mixed) |
||||
* @phpstan-type ParserCallableString (callable(mixed): mixed)&string |
||||
*/ |
||||
class View extends BaseView |
||||
{ |
||||
/** |
||||
* When false, the view method will clear the data between each |
||||
* call. This keeps your data safe and ensures there is no accidental |
||||
* leaking between calls, so you would need to explicitly pass the data |
||||
* to each view. You might prefer to have the data stick around between |
||||
* calls so that it is available to all views. If that is the case, |
||||
* set $saveData to true. |
||||
* |
||||
* @var bool |
||||
*/ |
||||
public $saveData = true; |
||||
|
||||
/** |
||||
* Parser Filters map a filter name with any PHP callable. When the |
||||
* Parser prepares a variable for display, it will chain it |
||||
* through the filters in the order defined, inserting any parameters. |
||||
* To prevent potential abuse, all filters MUST be defined here |
||||
* in order for them to be available for use within the Parser. |
||||
* |
||||
* Examples: |
||||
* { title|esc(js) } |
||||
* { created_on|date(Y-m-d)|esc(attr) } |
||||
* |
||||
* @var array<string, string> |
||||
* @phpstan-var array<string, ParserCallableString> |
||||
*/ |
||||
public $filters = []; |
||||
|
||||
/** |
||||
* Parser Plugins provide a way to extend the functionality provided |
||||
* by the core Parser by creating aliases that will be replaced with |
||||
* any callable. Can be single or tag pair. |
||||
* |
||||
* @var array<string, array<string>|callable|string> |
||||
* @phpstan-var array<string, array<ParserCallableString>|ParserCallableString|ParserCallable> |
||||
*/ |
||||
public $plugins = []; |
||||
|
||||
/** |
||||
* View Decorators are class methods that will be run in sequence to |
||||
* have a chance to alter the generated output just prior to caching |
||||
* the results. |
||||
* |
||||
* All classes must implement CodeIgniter\View\ViewDecoratorInterface |
||||
* |
||||
* @var class-string<ViewDecoratorInterface>[] |
||||
*/ |
||||
public array $decorators = []; |
||||
} |
@ -0,0 +1,52 @@
|
||||
<?php |
||||
|
||||
namespace App\Controllers; |
||||
|
||||
use CodeIgniter\Controller; |
||||
use App\Models\Mauth; |
||||
|
||||
class Auth extends Controller |
||||
{ |
||||
public function index() |
||||
{ |
||||
helper(['form']); |
||||
echo view('pages/loginv'); |
||||
} |
||||
public function login() |
||||
{ |
||||
$session = session(); |
||||
$model = new Mauth(); |
||||
$uname = $this->request->getVar('username'); |
||||
$password = $this->request->getVar('password'); |
||||
|
||||
$param = array('name' => $uname, 'passwd' => $password); |
||||
$data = $model->cekuser($param)->getRowArray(); |
||||
// var_dump($data); |
||||
//exit(); |
||||
if ($data) { |
||||
|
||||
$ses_data = [ |
||||
'nip' => $data['NIP9'], |
||||
'nama' => $data['NAMA'], |
||||
'kppadm' => $data['KPPADM'], |
||||
'jabatan' => $data['NAMA_JABATAN'], |
||||
'kantor' => $data['NAMA_KANTOR'], |
||||
'seksi' => $data['NAMA_UNIT_ES3'] |
||||
]; |
||||
$session->set($ses_data); |
||||
return redirect()->to(base_url('Home')); |
||||
} else { |
||||
//print_r('user tidak ada'); |
||||
//exit; |
||||
$session->setFlashdata('msg', 'User Tidak ada'); |
||||
return redirect()->to('auth'); |
||||
} |
||||
} |
||||
|
||||
public function logout() |
||||
{ |
||||
$session = session(); |
||||
$session->destroy(); |
||||
return redirect()->to('auth'); |
||||
} |
||||
} |
@ -0,0 +1,49 @@
|
||||
<?php |
||||
|
||||
namespace App\Controllers; |
||||
|
||||
use CodeIgniter\Controller; |
||||
use CodeIgniter\HTTP\RequestInterface; |
||||
use CodeIgniter\HTTP\ResponseInterface; |
||||
use Psr\Log\LoggerInterface; |
||||
|
||||
/** |
||||
* Class BaseController |
||||
* |
||||
* BaseController provides a convenient place for loading components |
||||
* and performing functions that are needed by all your controllers. |
||||
* Extend this class in any new controllers: |
||||
* class Home extends BaseController |
||||
* |
||||
* For security be sure to declare any new methods as protected or private. |
||||
*/ |
||||
|
||||
class BaseController extends Controller |
||||
{ |
||||
/** |
||||
* An array of helpers to be loaded automatically upon |
||||
* class instantiation. These helpers will be available |
||||
* to all other controllers that extend BaseController. |
||||
* |
||||
* @var array |
||||
*/ |
||||
protected $helpers = []; |
||||
|
||||
/** |
||||
* Constructor. |
||||
* |
||||
* @param RequestInterface $request |
||||
* @param ResponseInterface $response |
||||
* @param LoggerInterface $logger |
||||
*/ |
||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger) |
||||
{ |
||||
// Do Not Edit This Line |
||||
parent::initController($request, $response, $logger); |
||||
|
||||
//-------------------------------------------------------------------- |
||||
// Preload any models, libraries, etc, here. |
||||
//-------------------------------------------------------------------- |
||||
// E.g.: $this->session = \Config\Services::session(); |
||||
} |
||||
} |
@ -0,0 +1,16 @@
|
||||
<?php |
||||
|
||||
namespace App\Controllers; |
||||
|
||||
class Home extends BaseController |
||||
{ |
||||
public function index() |
||||
{ |
||||
echo view('inc/head'); |
||||
echo view('inc/navbar'); |
||||
echo view('inc/sidebar'); |
||||
echo view('ppm/dashboard'); |
||||
echo view('inc/footer'); |
||||
echo view('inc/js'); |
||||
} |
||||
} |
@ -0,0 +1,4 @@
|
||||
<?php |
||||
|
||||
// override core en language system validation or define your own en language validation message |
||||
return []; |
@ -0,0 +1,17 @@
|
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use CodeIgniter\Model; |
||||
|
||||
class Mauth extends Model |
||||
{ |
||||
|
||||
function cekuser($param) |
||||
{ |
||||
$uname = $param['name']; |
||||
$builder = $this->db->table('PEGAWAI'); |
||||
$builder->where('NIP9', $uname); |
||||
return $builder->get(); |
||||
} |
||||
} |
@ -0,0 +1,7 @@
|
||||
<?php |
||||
|
||||
use CodeIgniter\CLI\CLI; |
||||
|
||||
CLI::error('ERROR: ' . $code); |
||||
CLI::write($message); |
||||
CLI::newLine(); |
@ -0,0 +1,72 @@
|
||||
<?php |
||||
|
||||
use CodeIgniter\CLI\CLI; |
||||
|
||||
// The main Exception |
||||
CLI::newLine(); |
||||
CLI::write('[' . get_class($exception) . ']', 'light_gray', 'red'); |
||||
CLI::newLine(); |
||||
CLI::write($message); |
||||
CLI::newLine(); |
||||
CLI::write('at ' . CLI::color(clean_path($exception->getFile()) . ':' . $exception->getLine(), 'green')); |
||||
CLI::newLine(); |
||||
|
||||
// The backtrace |
||||
if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE) |
||||
{ |
||||
$backtraces = $exception->getTrace(); |
||||
|
||||
if ($backtraces) |
||||
{ |
||||
CLI::write('Backtrace:', 'green'); |
||||
} |
||||
|
||||
foreach ($backtraces as $i => $error) |
||||
{ |
||||
$padFile = ' '; // 4 spaces |
||||
$padClass = ' '; // 7 spaces |
||||
$c = str_pad($i + 1, 3, ' ', STR_PAD_LEFT); |
||||
|
||||
if (isset($error['file'])) |
||||
{ |
||||
$filepath = clean_path($error['file']) . ':' . $error['line']; |
||||
|
||||
CLI::write($c . $padFile . CLI::color($filepath, 'yellow')); |
||||
} |
||||
else |
||||
{ |
||||
CLI::write($c . $padFile . CLI::color('[internal function]', 'yellow')); |
||||
} |
||||
|
||||
$function = ''; |
||||
|
||||
if (isset($error['class'])) |
||||
{ |
||||
$type = ($error['type'] === '->') ? '()' . $error['type'] : $error['type']; |
||||
$function .= $padClass . $error['class'] . $type . $error['function']; |
||||
} |
||||
elseif (! isset($error['class']) && isset($error['function'])) |
||||
{ |
||||
$function .= $padClass . $error['function']; |
||||
} |
||||
|
||||
$args = implode(', ', array_map(function ($value) { |
||||
switch (true) |
||||
{ |
||||
case is_object($value): |
||||
return 'Object(' . get_class($value) . ')'; |
||||
case is_array($value): |
||||
return count($value) ? '[...]' : '[]'; |
||||
case is_null($value): |
||||
return 'null'; // return the lowercased version |
||||
default: |
||||
return var_export($value, true); |
||||
} |
||||
}, array_values($error['args'] ?? []))); |
||||
|
||||
$function .= '(' . $args . ')'; |
||||
|
||||
CLI::write($function); |
||||
CLI::newLine(); |
||||
} |
||||
} |
@ -0,0 +1,5 @@
|
||||
<?php |
||||
|
||||
// On the CLI, we still want errors in productions |
||||
// so just use the exception template. |
||||
include __DIR__ . '/error_exception.php'; |
@ -0,0 +1,177 @@
|
||||
body { |
||||
height: 100%; |
||||
background: #fafafa; |
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
||||
color: #777; |
||||
font-weight: 300; |
||||
margin: 0; |
||||
padding: 0; |
||||
} |
||||
h1 { |
||||
font-weight: lighter; |
||||
letter-spacing: 0.8; |
||||
font-size: 3rem; |
||||
color: #222; |
||||
margin: 0; |
||||
} |
||||
h1.headline { |
||||
margin-top: 20%; |
||||
font-size: 5rem; |
||||
} |
||||
.text-center { |
||||
text-align: center; |
||||
} |
||||
p.lead { |
||||
font-size: 1.6rem; |
||||
} |
||||
.container { |
||||
max-width: 75rem; |
||||
margin: 0 auto; |
||||
padding: 1rem; |
||||
} |
||||
.header { |
||||
background: #85271f; |
||||
color: #fff; |
||||
} |
||||
.header h1 { |
||||
color: #fff; |
||||
} |
||||
.header p { |
||||
font-size: 1.2rem; |
||||
margin: 0; |
||||
line-height: 2.5; |
||||
} |
||||
.header a { |
||||
color: rgba(255,255,255,0.5); |
||||
margin-left: 2rem; |
||||
display: none; |
||||
text-decoration: none; |
||||
} |
||||
.header:hover a { |
||||
display: inline; |
||||
} |
||||
|
||||
.footer .container { |
||||
border-top: 1px solid #e7e7e7; |
||||
margin-top: 1rem; |
||||
text-align: center; |
||||
} |
||||
|
||||
.source { |
||||
background: #333; |
||||
color: #c7c7c7; |
||||
padding: 0.5em 1em; |
||||
border-radius: 5px; |
||||
font-family: Menlo, Monaco, Consolas, "Courier New", monospace; |
||||
margin: 0; |
||||
overflow-x: scroll; |
||||
} |
||||
.source span.line { |
||||
line-height: 1.4; |
||||
} |
||||
.source span.line .number { |
||||
color: #666; |
||||
} |
||||
.source .line .highlight { |
||||
display: block; |
||||
background: #555; |
||||
color: #fff; |
||||
} |
||||
.source span.highlight .number { |
||||
color: #fff; |
||||
} |
||||
|
||||
.tabs { |
||||
list-style: none; |
||||
list-style-position: inside; |
||||
margin: 0; |
||||
padding: 0; |
||||
margin-bottom: -1px; |
||||
} |
||||
.tabs li { |
||||
display: inline; |
||||
} |
||||
.tabs a:link, |
||||
.tabs a:visited { |
||||
padding: 0rem 1rem; |
||||
line-height: 2.7; |
||||
text-decoration: none; |
||||
color: #a7a7a7; |
||||
background: #f1f1f1; |
||||
border: 1px solid #e7e7e7; |
||||
border-bottom: 0; |
||||
border-top-left-radius: 5px; |
||||
border-top-right-radius: 5px; |
||||
display: inline-block; |
||||
} |
||||
.tabs a:hover { |
||||
background: #e7e7e7; |
||||
border-color: #e1e1e1; |
||||
} |
||||
.tabs a.active { |
||||
background: #fff; |
||||
} |
||||
.tab-content { |
||||
background: #fff; |
||||
border: 1px solid #efefef; |
||||
} |
||||
.content { |
||||
padding: 1rem; |
||||
} |
||||
.hide { |
||||
display: none; |
||||
} |
||||
|
||||
.alert { |
||||
margin-top: 2rem; |
||||
display: block; |
||||
text-align: center; |
||||
line-height: 3.0; |
||||
background: #d9edf7; |
||||
border: 1px solid #bcdff1; |
||||
border-radius: 5px; |
||||
color: #31708f; |
||||
} |
||||
ul, ol { |
||||
line-height: 1.8; |
||||
} |
||||
|
||||
table { |
||||
width: 100%; |
||||
overflow: hidden; |
||||
} |
||||
th { |
||||
text-align: left; |
||||
border-bottom: 1px solid #e7e7e7; |
||||
padding-bottom: 0.5rem; |
||||
} |
||||
td { |
||||
padding: 0.2rem 0.5rem 0.2rem 0; |
||||
} |
||||
tr:hover td { |
||||
background: #f1f1f1; |
||||
} |
||||
td pre { |
||||
white-space: pre-wrap; |
||||
} |
||||
|
||||
.trace a { |
||||
color: inherit; |
||||
} |
||||
.trace table { |
||||
width: auto; |
||||
} |
||||
.trace tr td:first-child { |
||||
min-width: 5em; |
||||
font-weight: bold; |
||||
} |
||||
.trace td { |
||||
background: #e7e7e7; |
||||
padding: 0 1rem; |
||||
} |
||||
.trace td pre { |
||||
margin: 0; |
||||
} |
||||
.args { |
||||
display: none; |
||||
} |
@ -0,0 +1,128 @@
|
||||
//--------------------------------------------------------------------
|
||||
// Tabs
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
var tabLinks = new Array(); |
||||
var contentDivs = new Array(); |
||||
|
||||
function init() |
||||
{ |
||||
// Grab the tab links and content divs from the page
|
||||
var tabListItems = document.getElementById('tabs').childNodes; |
||||
console.log(tabListItems); |
||||
for (var i = 0; i < tabListItems.length; i ++) |
||||
{ |
||||
if (tabListItems[i].nodeName == "LI") |
||||
{ |
||||
var tabLink = getFirstChildWithTagName(tabListItems[i], 'A'); |
||||
var id = getHash(tabLink.getAttribute('href')); |
||||
tabLinks[id] = tabLink; |
||||
contentDivs[id] = document.getElementById(id); |
||||
} |
||||
} |
||||
|
||||
// Assign onclick events to the tab links, and
|
||||
// highlight the first tab
|
||||
var i = 0; |
||||
|
||||
for (var id in tabLinks) |
||||
{ |
||||
tabLinks[id].onclick = showTab; |
||||
tabLinks[id].onfocus = function () { |
||||
this.blur() |
||||
}; |
||||
if (i == 0) |
||||
{ |
||||
tabLinks[id].className = 'active'; |
||||
} |
||||
i ++; |
||||
} |
||||
|
||||
// Hide all content divs except the first
|
||||
var i = 0; |
||||
|
||||
for (var id in contentDivs) |
||||
{ |
||||
if (i != 0) |
||||
{ |
||||
console.log(contentDivs[id]); |
||||
contentDivs[id].className = 'content hide'; |
||||
} |
||||
i ++; |
||||
} |
||||
} |
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
function showTab() |
||||
{ |
||||
var selectedId = getHash(this.getAttribute('href')); |
||||
|
||||
// Highlight the selected tab, and dim all others.
|
||||
// Also show the selected content div, and hide all others.
|
||||
for (var id in contentDivs) |
||||
{ |
||||
if (id == selectedId) |
||||
{ |
||||
tabLinks[id].className = 'active'; |
||||
contentDivs[id].className = 'content'; |
||||
} |
||||
else |
||||
{ |
||||
tabLinks[id].className = ''; |
||||
contentDivs[id].className = 'content hide'; |
||||
} |
||||
} |
||||
|
||||
// Stop the browser following the link
|
||||
return false; |
||||
} |
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
function getFirstChildWithTagName(element, tagName) |
||||
{ |
||||
for (var i = 0; i < element.childNodes.length; i ++) |
||||
{ |
||||
if (element.childNodes[i].nodeName == tagName) |
||||
{ |
||||
return element.childNodes[i]; |
||||
} |
||||
} |
||||
} |
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
function getHash(url) |
||||
{ |
||||
var hashPos = url.lastIndexOf('#'); |
||||
return url.substring(hashPos + 1); |
||||
} |
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
function toggle(elem) |
||||
{ |
||||
elem = document.getElementById(elem); |
||||
|
||||
if (elem.style && elem.style['display']) |
||||
{ |
||||
// Only works with the "style" attr
|
||||
var disp = elem.style['display']; |
||||
} |
||||
else if (elem.currentStyle) |
||||
{ |
||||
// For MSIE, naturally
|
||||
var disp = elem.currentStyle['display']; |
||||
} |
||||
else if (window.getComputedStyle) |
||||
{ |
||||
// For most other browsers
|
||||
var disp = document.defaultView.getComputedStyle(elem, null).getPropertyValue('display'); |
||||
} |
||||
|
||||
// Toggle the state of the "display" style
|
||||
elem.style.display = disp == 'block' ? 'none' : 'block'; |
||||
|
||||
return false; |
||||
} |
@ -0,0 +1,84 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>404 Page Not Found</title> |
||||
|
||||
<style> |
||||
div.logo { |
||||
height: 200px; |
||||
width: 155px; |
||||
display: inline-block; |
||||
opacity: 0.08; |
||||
position: absolute; |
||||
top: 2rem; |
||||
left: 50%; |
||||
margin-left: -73px; |
||||
} |
||||
body { |
||||
height: 100%; |
||||
background: #fafafa; |
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
||||
color: #777; |
||||
font-weight: 300; |
||||
} |
||||
h1 { |
||||
font-weight: lighter; |
||||
letter-spacing: 0.8; |
||||
font-size: 3rem; |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
color: #222; |
||||
} |
||||
.wrap { |
||||
max-width: 1024px; |
||||
margin: 5rem auto; |
||||
padding: 2rem; |
||||
background: #fff; |
||||
text-align: center; |
||||
border: 1px solid #efefef; |
||||
border-radius: 0.5rem; |
||||
position: relative; |
||||
} |
||||
pre { |
||||
white-space: normal; |
||||
margin-top: 1.5rem; |
||||
} |
||||
code { |
||||
background: #fafafa; |
||||
border: 1px solid #efefef; |
||||
padding: 0.5rem 1rem; |
||||
border-radius: 5px; |
||||
display: block; |
||||
} |
||||
p { |
||||
margin-top: 1.5rem; |
||||
} |
||||
.footer { |
||||
margin-top: 2rem; |
||||
border-top: 1px solid #efefef; |
||||
padding: 1em 2em 0 2em; |
||||
font-size: 85%; |
||||
color: #999; |
||||
} |
||||
a:active, |
||||
a:link, |
||||
a:visited { |
||||
color: #dd4814; |
||||
} |
||||
</style> |
||||
</head> |
||||
<body> |
||||
<div class="wrap"> |
||||
<h1>404 - File Not Found</h1> |
||||
|
||||
<p> |
||||
<?php if (! empty($message) && $message !== '(null)') : ?> |
||||
<?= esc($message) ?> |
||||
<?php else : ?> |
||||
Sorry! Cannot seem to find the page you were looking for. |
||||
<?php endif ?> |
||||
</p> |
||||
</div> |
||||
</body> |
||||
</html> |
@ -0,0 +1,401 @@
|
||||
<?php $error_id = uniqid('error', true); ?> |
||||
<!doctype html> |
||||
<html> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<meta name="robots" content="noindex"> |
||||
|
||||
<title><?= esc($title) ?></title>
|
||||
<style type="text/css"> |
||||
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?> |
||||
</style> |
||||
|
||||
<script type="text/javascript"> |
||||
<?= file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.js') ?> |
||||
</script> |
||||
</head> |
||||
<body onload="init()"> |
||||
|
||||
<!-- Header --> |
||||
<div class="header"> |
||||
<div class="container"> |
||||
<h1><?= esc($title), esc($exception->getCode() ? ' #' . $exception->getCode() : '') ?></h1>
|
||||
<p> |
||||
<?= esc($exception->getMessage()) ?> |
||||
<a href="https://www.google.com/search?q=<?= urlencode($title . ' ' . preg_replace('#\'.*\'|".*"#Us', '', $exception->getMessage())) ?>"
|
||||
rel="noreferrer" target="_blank">search →</a> |
||||
</p> |
||||
</div> |
||||
</div> |
||||
|
||||
<!-- Source --> |
||||
<div class="container"> |
||||
<p><b><?= esc(static::cleanPath($file, $line)) ?></b> at line <b><?= esc($line) ?></b></p>
|
||||
|
||||
<?php if (is_file($file)) : ?> |
||||
<div class="source"> |
||||
<?= static::highlightFile($file, $line, 15); ?> |
||||
</div> |
||||
<?php endif; ?> |
||||
</div> |
||||
|
||||
<div class="container"> |
||||
|
||||
<ul class="tabs" id="tabs"> |
||||
<li><a href="#backtrace">Backtrace</a></li> |
||||
<li><a href="#server">Server</a></li> |
||||
<li><a href="#request">Request</a></li> |
||||
<li><a href="#response">Response</a></li> |
||||
<li><a href="#files">Files</a></li> |
||||
<li><a href="#memory">Memory</a></li> |
||||
</li> |
||||
</ul> |
||||
|
||||
<div class="tab-content"> |
||||
|
||||
<!-- Backtrace --> |
||||
<div class="content" id="backtrace"> |
||||
|
||||
<ol class="trace"> |
||||
<?php foreach ($trace as $index => $row) : ?> |
||||
|
||||
<li> |
||||
<p> |
||||
<!-- Trace info --> |
||||
<?php if (isset($row['file']) && is_file($row['file'])) :?> |
||||
<?php |
||||
if (isset($row['function']) && in_array($row['function'], ['include', 'include_once', 'require', 'require_once'], true)) |
||||
{ |
||||
echo esc($row['function'] . ' ' . static::cleanPath($row['file'])); |
||||
} |
||||
else |
||||
{ |
||||
echo esc(static::cleanPath($row['file']) . ' : ' . $row['line']); |
||||
} |
||||
?> |
||||
<?php else : ?> |
||||
{PHP internal code} |
||||
<?php endif; ?> |
||||
|
||||
<!-- Class/Method --> |
||||
<?php if (isset($row['class'])) : ?> |
||||
— <?= esc($row['class'] . $row['type'] . $row['function']) ?> |
||||
<?php if (! empty($row['args'])) : ?> |
||||
<?php $args_id = $error_id . 'args' . $index ?> |
||||
( <a href="#" onclick="return toggle('<?= esc($args_id, 'attr') ?>');">arguments</a> )
|
||||
<div class="args" id="<?= esc($args_id, 'attr') ?>">
|
||||
<table cellspacing="0"> |
||||
|
||||
<?php |
||||
$params = null; |
||||
// Reflection by name is not available for closure function |
||||
if (substr($row['function'], -1) !== '}') |
||||
{ |
||||
$mirror = isset($row['class']) ? new \ReflectionMethod($row['class'], $row['function']) : new \ReflectionFunction($row['function']); |
||||
$params = $mirror->getParameters(); |
||||
} |
||||
foreach ($row['args'] as $key => $value) : ?> |
||||
<tr> |
||||
<td><code><?= esc(isset($params[$key]) ? '$' . $params[$key]->name : "#$key") ?></code></td>
|
||||
<td><pre><?= esc(print_r($value, true)) ?></pre></td>
|
||||
</tr> |
||||
<?php endforeach ?> |
||||
|
||||
</table> |
||||
</div> |
||||
<?php else : ?> |
||||
() |
||||
<?php endif; ?> |
||||
<?php endif; ?> |
||||
|
||||
<?php if (! isset($row['class']) && isset($row['function'])) : ?> |
||||
— <?= esc($row['function']) ?>()
|
||||
<?php endif; ?> |
||||
</p> |
||||
|
||||
<!-- Source? --> |
||||
<?php if (isset($row['file']) && is_file($row['file']) && isset($row['class'])) : ?> |
||||
<div class="source"> |
||||
<?= static::highlightFile($row['file'], $row['line']) ?> |
||||
</div> |
||||
<?php endif; ?> |
||||
</li> |
||||
|
||||
<?php endforeach; ?> |
||||
</ol> |
||||
|
||||
</div> |
||||
|
||||
<!-- Server --> |
||||
<div class="content" id="server"> |
||||
<?php foreach (['_SERVER', '_SESSION'] as $var) : ?> |
||||
<?php if (empty($GLOBALS[$var]) || ! is_array($GLOBALS[$var])) |
||||
{ |
||||
continue; |
||||
} ?> |
||||
|
||||
<h3>$<?= esc($var) ?></h3>
|
||||
|
||||
<table> |
||||
<thead> |
||||
<tr> |
||||
<th>Key</th> |
||||
<th>Value</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<?php foreach ($GLOBALS[$var] as $key => $value) : ?> |
||||
<tr> |
||||
<td><?= esc($key) ?></td>
|
||||
<td> |
||||
<?php if (is_string($value)) : ?> |
||||
<?= esc($value) ?> |
||||
<?php else: ?> |
||||
<pre><?= esc(print_r($value, true)) ?></pre>
|
||||
<?php endif; ?> |
||||
</td> |
||||
</tr> |
||||
<?php endforeach; ?> |
||||
</tbody> |
||||
</table> |
||||
|
||||
<?php endforeach ?> |
||||
|
||||
<!-- Constants --> |
||||
<?php $constants = get_defined_constants(true); ?> |
||||
<?php if (! empty($constants['user'])) : ?> |
||||
<h3>Constants</h3> |
||||
|
||||
<table> |
||||
<thead> |
||||
<tr> |
||||
<th>Key</th> |
||||
<th>Value</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<?php foreach ($constants['user'] as $key => $value) : ?> |
||||
<tr> |
||||
<td><?= esc($key) ?></td>
|
||||
<td> |
||||
<?php if (is_string($value)) : ?> |
||||
<?= esc($value) ?> |
||||
<?php else: ?> |
||||
<pre><?= esc(print_r($value, true)) ?></pre>
|
||||
<?php endif; ?> |
||||
</td> |
||||
</tr> |
||||
<?php endforeach; ?> |
||||
</tbody> |
||||
</table> |
||||
<?php endif; ?> |
||||
</div> |
||||
|
||||
<!-- Request --> |
||||
<div class="content" id="request"> |
||||
<?php $request = \Config\Services::request(); ?> |
||||
|
||||
<table> |
||||
<tbody> |
||||
<tr> |
||||
<td style="width: 10em">Path</td> |
||||
<td><?= esc($request->uri) ?></td>
|
||||
</tr> |
||||
<tr> |
||||
<td>HTTP Method</td> |
||||
<td><?= esc($request->getMethod(true)) ?></td>
|
||||
</tr> |
||||
<tr> |
||||
<td>IP Address</td> |
||||
<td><?= esc($request->getIPAddress()) ?></td>
|
||||
</tr> |
||||
<tr> |
||||
<td style="width: 10em">Is AJAX Request?</td> |
||||
<td><?= $request->isAJAX() ? 'yes' : 'no' ?></td>
|
||||
</tr> |
||||
<tr> |
||||
<td>Is CLI Request?</td> |
||||
<td><?= $request->isCLI() ? 'yes' : 'no' ?></td>
|
||||
</tr> |
||||
<tr> |
||||
<td>Is Secure Request?</td> |
||||
<td><?= $request->isSecure() ? 'yes' : 'no' ?></td>
|
||||
</tr> |
||||
<tr> |
||||
<td>User Agent</td> |
||||
<td><?= esc($request->getUserAgent()->getAgentString()) ?></td>
|
||||
</tr> |
||||
|
||||
</tbody> |
||||
</table> |
||||
|
||||
|
||||
<?php $empty = true; ?> |
||||
<?php foreach (['_GET', '_POST', '_COOKIE'] as $var) : ?> |
||||
<?php if (empty($GLOBALS[$var]) || ! is_array($GLOBALS[$var])) |
||||
{ |
||||
continue; |
||||
} ?> |
||||
|
||||
<?php $empty = false; ?> |
||||
|
||||
<h3>$<?= esc($var) ?></h3>
|
||||
|
||||
<table style="width: 100%"> |
||||
<thead> |
||||
<tr> |
||||
<th>Key</th> |
||||
<th>Value</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<?php foreach ($GLOBALS[$var] as $key => $value) : ?> |
||||
<tr> |
||||
<td><?= esc($key) ?></td>
|
||||
<td> |
||||
<?php if (is_string($value)) : ?> |
||||
<?= esc($value) ?> |
||||
<?php else: ?> |
||||
<pre><?= esc(print_r($value, true)) ?></pre>
|
||||
<?php endif; ?> |
||||
</td> |
||||
</tr> |
||||
<?php endforeach; ?> |
||||
</tbody> |
||||
</table> |
||||
|
||||
<?php endforeach ?> |
||||
|
||||
<?php if ($empty) : ?> |
||||
|
||||
<div class="alert"> |
||||
No $_GET, $_POST, or $_COOKIE Information to show. |
||||
</div> |
||||
|
||||
<?php endif; ?> |
||||
|
||||
<?php $headers = $request->getHeaders(); ?> |
||||
<?php if (! empty($headers)) : ?> |
||||
|
||||
<h3>Headers</h3> |
||||
|
||||
<table> |
||||
<thead> |
||||
<tr> |
||||
<th>Header</th> |
||||
<th>Value</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<?php foreach ($headers as $value) : ?> |
||||
<?php if (empty($value)) |
||||
{ |
||||
continue; |
||||
} ?> |
||||
<?php if (! is_array($value)) |
||||
{ |
||||
$value = [$value]; |
||||
} ?> |
||||
<?php foreach ($value as $h) : ?> |
||||
<tr> |
||||
<td><?= esc($h->getName(), 'html') ?></td>
|
||||
<td><?= esc($h->getValueLine(), 'html') ?></td>
|
||||
</tr> |
||||
<?php endforeach; ?> |
||||
<?php endforeach; ?> |
||||
</tbody> |
||||
</table> |
||||
|
||||
<?php endif; ?> |
||||
</div> |
||||
|
||||
<!-- Response --> |
||||
<?php |
||||
$response = \Config\Services::response(); |
||||
$response->setStatusCode(http_response_code()); |
||||
?> |
||||
<div class="content" id="response"> |
||||
<table> |
||||
<tr> |
||||
<td style="width: 15em">Response Status</td> |
||||
<td><?= esc($response->getStatusCode() . ' - ' . $response->getReason()) ?></td>
|
||||
</tr> |
||||
</table> |
||||
|
||||
<?php $headers = $response->getHeaders(); ?> |
||||
<?php if (! empty($headers)) : ?> |
||||
<?php natsort($headers) ?> |
||||
|
||||
<h3>Headers</h3> |
||||
|
||||
<table> |
||||
<thead> |
||||
<tr> |
||||
<th>Header</th> |
||||
<th>Value</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<?php foreach ($headers as $name => $value) : ?> |
||||
<tr> |
||||
<td><?= esc($name, 'html') ?></td>
|
||||
<td><?= esc($response->getHeaderLine($name), 'html') ?></td>
|
||||
</tr> |
||||
<?php endforeach; ?> |
||||
</tbody> |
||||
</table> |
||||
|
||||
<?php endif; ?> |
||||
</div> |
||||
|
||||
<!-- Files --> |
||||
<div class="content" id="files"> |
||||
<?php $files = get_included_files(); ?> |
||||
|
||||
<ol> |
||||
<?php foreach ($files as $file) :?> |
||||
<li><?= esc(static::cleanPath($file)) ?></li>
|
||||
<?php endforeach ?> |
||||
</ol> |
||||
</div> |
||||
|
||||
<!-- Memory --> |
||||
<div class="content" id="memory"> |
||||
|
||||
<table> |
||||
<tbody> |
||||
<tr> |
||||
<td>Memory Usage</td> |
||||
<td><?= esc(static::describeMemory(memory_get_usage(true))) ?></td>
|
||||
</tr> |
||||
<tr> |
||||
<td style="width: 12em">Peak Memory Usage:</td> |
||||
<td><?= esc(static::describeMemory(memory_get_peak_usage(true))) ?></td>
|
||||
</tr> |
||||
<tr> |
||||
<td>Memory Limit:</td> |
||||
<td><?= esc(ini_get('memory_limit')) ?></td>
|
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
|
||||
</div> |
||||
|
||||
</div> <!-- /tab-content --> |
||||
|
||||
</div> <!-- /container --> |
||||
|
||||
<div class="footer"> |
||||
<div class="container"> |
||||
|
||||
<p> |
||||
Displayed at <?= esc(date('H:i:sa')) ?> —
|
||||
PHP: <?= esc(phpversion()) ?> —
|
||||
CodeIgniter: <?= esc(\CodeIgniter\CodeIgniter::CI_VERSION) ?> |
||||
</p> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,25 @@
|
||||
<!doctype html> |
||||
<html> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<meta name="robots" content="noindex"> |
||||
|
||||
<title>Whoops!</title> |
||||
|
||||
<style type="text/css"> |
||||
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?> |
||||
</style> |
||||
</head> |
||||
<body> |
||||
|
||||
<div class="container text-center"> |
||||
|
||||
<h1 class="headline">Whoops!</h1> |
||||
|
||||
<p class="lead">We seem to have hit a snag. Please try again later...</p> |
||||
|
||||
</div> |
||||
|
||||
</body> |
||||
|
||||
</html> |
@ -0,0 +1,8 @@
|
||||
<footer class="footer"> |
||||
<div class="w-100 clearfix"> |
||||
<span class="text-center text-sm-left d-md-inline-block">Copyright ©2024 All Rights Reserved.</span> |
||||
<span class="float-none float-sm-right mt-1 mt-sm-0 text-center"> <a href="<?php base_url() ?> " class="text-dark" target="_blank">Direktorat Ekstensifikasi Perpajakan</a></span>
|
||||
</div> |
||||
</footer> |
||||
</div> |
||||
</div> |
@ -0,0 +1,34 @@
|
||||
<!doctype html> |
||||
<html class="no-js" lang="en"> |
||||
|
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<meta http-equiv="x-ua-compatible" content="ie=edge"> |
||||
<title>Engine - Kewilayahan</title> |
||||
<meta name="description" content=""> |
||||
<meta name="keywords" content=""> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon" /> |
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet"> |
||||
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/bootstrap/dist/css/bootstrap.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/fontawesome-free/css/all.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/icon-kit/dist/css/iconkit.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/ionicons/dist/css/ionicons.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/perfect-scrollbar/css/perfect-scrollbar.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/datatables.net-bs4/css/dataTables.bootstrap4.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/jvectormap/jquery-jvectormap.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/weather-icons/css/weather-icons.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/c3/c3.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/owl.carousel/dist/assets/owl.carousel.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/owl.carousel/dist/assets/owl.theme.default.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/dist/css/theme.min.css') ?>">
|
||||
<script src="<?= base_url('public/theme/src/js/vendor/modernizr-2.8.3.min.js') ?>"></script>
|
||||
</head> |
||||
|
||||
<body> |
||||
|
||||
<div class="wrapper"> |
@ -0,0 +1,23 @@
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> |
||||
<script>window.jQuery || document.write('<script src="src/js/vendor/jquery-3.3.1.min.js"><\/script>')</script> |
||||
<script src="<?= base_url('public/theme/plugins/popper.js/dist/umd/popper.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/bootstrap/dist/js/bootstrap.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/perfect-scrollbar/dist/perfect-scrollbar.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/screenfull/dist/screenfull.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/datatables.net/js/jquery.dataTables.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/datatables.net-bs4/js/dataTables.bootstrap4.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/datatables.net-responsive/js/dataTables.responsive.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/datatables.net-responsive-bs4/js/responsive.bootstrap4.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/jvectormap/jquery-jvectormap.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/jvectormap/tests/assets/jquery-jvectormap-world-mill-en.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/moment/moment.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/tempusdominus-bootstrap-4/build/js/tempusdominus-bootstrap-4.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/d3/dist/d3.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/c3/c3.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/js/tables.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/js/widgets.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/js/charts.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/dist/js/theme.min.js') ?>"></script>
|
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,29 @@
|
||||
<header class="header-top" header-theme="light"> |
||||
<div class="container-fluid"> |
||||
<div class="d-flex justify-content-between"> |
||||
<div class="top-menu d-flex align-items-center"> |
||||
<button type="button" class="btn-icon mobile-nav-toggle d-lg-none"><span></span></button> |
||||
<div class="header-search"> |
||||
<div class="input-group"> |
||||
<span class="input-group-addon search-close"><i class="ik ik-x"></i></span> |
||||
<input type="text" class="form-control"> |
||||
<span class="input-group-addon search-btn"><i class="ik ik-search"></i></span> |
||||
</div> |
||||
</div> |
||||
<button type="button" id="navbar-fullscreen" class="nav-link"><i class="ik ik-maximize"></i></button> |
||||
</div> |
||||
<div class="top-menu d-flex align-items-center"> |
||||
|
||||
|
||||
<div class="dropdown"> |
||||
<a class="dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><img class="avatar" src="<?= base_url('public/theme/img/user.jpg') ?>" alt=""></a>
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="userDropdown"> |
||||
<a class="dropdown-item" href="profile.html"><i class="ik ik-user dropdown-icon"></i> Profile</a> |
||||
<a class="dropdown-item" href="login.html"><i class="ik ik-power dropdown-icon"></i> Logout</a> |
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
||||
</div> |
||||
</div> |
||||
</header> |
@ -0,0 +1,152 @@
|
||||
<div class="page-wrap"> |
||||
<div class="app-sidebar colored"> |
||||
<div class="sidebar-header"> |
||||
<a class="header-brand" href="<?php base_url() ?>">
|
||||
<div class="logo-img"> |
||||
<img src="<?= base_url('public/theme/src/img/brand-white.svg') ?>" class="header-brand-img" alt="lavalite">
|
||||
</div> |
||||
<span class="text">Engine</span> |
||||
</a> |
||||
<button type="button" class="nav-toggle"><i data-toggle="expanded" class="ik ik-toggle-right toggle-icon"></i></button> |
||||
<button id="sidebarClose" class="nav-close"><i class="ik ik-x"></i></button> |
||||
</div> |
||||
|
||||
<div class="sidebar-content"> |
||||
<div class="nav-container"> |
||||
<nav id="main-menu-navigation" class="navigation-main"> |
||||
<div class="nav-lavel">Pengawasan Pembayaran</div> |
||||
<div class="nav-item active"> |
||||
<a href="<?php base_url() ?>"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a>
|
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="<?php base_url() ?>/ossy"><i class="ik ik-menu"></i><span>Ossy</span> <span class="badge badge-success">New</span></a>
|
||||
</div> |
||||
<div class="nav-item has-sub"> |
||||
<a href="javascript:void(0)"><i class="ik ik-layers"></i><span>Widgets</span> <span class="badge badge-danger">150+</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="pages/widgets.html" class="menu-item">Basic</a> |
||||
<a href="pages/widget-statistic.html" class="menu-item">Statistic</a> |
||||
<a href="pages/widget-data.html" class="menu-item">Data</a> |
||||
<a href="pages/widget-chart.html" class="menu-item">Chart Widget</a> |
||||
</div> |
||||
</div> |
||||
<!-- <div class="nav-lavel">UI Element</div> |
||||
<div class="nav-item has-sub"> |
||||
<a href="#"><i class="ik ik-box"></i><span>Basic</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="pages/ui/alerts.html" class="menu-item">Alerts</a> |
||||
<a href="pages/ui/badges.html" class="menu-item">Badges</a> |
||||
<a href="pages/ui/buttons.html" class="menu-item">Buttons</a> |
||||
<a href="pages/ui/navigation.html" class="menu-item">Navigation</a> |
||||
</div> |
||||
</div> |
||||
<div class="nav-item has-sub"> |
||||
<a href="#"><i class="ik ik-gitlab"></i><span>Advance</span> <span class="badge badge-success">New</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="pages/ui/modals.html" class="menu-item">Modals</a> |
||||
<a href="pages/ui/notifications.html" class="menu-item">Notifications</a> |
||||
<a href="pages/ui/carousel.html" class="menu-item">Slider</a> |
||||
<a href="pages/ui/range-slider.html" class="menu-item">Range Slider</a> |
||||
<a href="pages/ui/rating.html" class="menu-item">Rating</a> |
||||
</div> |
||||
</div> |
||||
<div class="nav-item has-sub"> |
||||
<a href="#"><i class="ik ik-package"></i><span>Extra</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="pages/ui/session-timeout.html" class="menu-item">Session Timeout</a> |
||||
</div> |
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="pages/ui/icons.html"><i class="ik ik-command"></i><span>Icons</span></a> |
||||
</div> |
||||
<div class="nav-lavel">Forms</div> |
||||
<div class="nav-item has-sub"> |
||||
<a href="#"><i class="ik ik-edit"></i><span>Forms</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="pages/form-components.html" class="menu-item">Components</a> |
||||
<a href="pages/form-addon.html" class="menu-item">Add-On</a> |
||||
<a href="pages/form-advance.html" class="menu-item">Advance</a> |
||||
</div> |
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="pages/form-picker.html"><i class="ik ik-terminal"></i><span>Form Picker</span> <span class="badge badge-success">New</span></a> |
||||
</div> |
||||
|
||||
<div class="nav-lavel">Tables</div> |
||||
<div class="nav-item"> |
||||
<a href="pages/table-bootstrap.html"><i class="ik ik-credit-card"></i><span>Bootstrap Table</span></a> |
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="pages/table-datatable.html"><i class="ik ik-inbox"></i><span>Data Table</span></a> |
||||
</div> |
||||
|
||||
<div class="nav-lavel">Charts</div> |
||||
<div class="nav-item has-sub"> |
||||
<a href="#"><i class="ik ik-pie-chart"></i><span>Charts</span> <span class="badge badge-success">New</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="pages/charts-chartist.html" class="menu-item active">Chartist</a> |
||||
<a href="pages/charts-flot.html" class="menu-item">Flot</a> |
||||
<a href="pages/charts-knob.html" class="menu-item">Knob</a> |
||||
<a href="pages/charts-amcharts.html" class="menu-item">Amcharts</a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="nav-lavel">Apps</div> |
||||
<div class="nav-item"> |
||||
<a href="pages/calendar.html"><i class="ik ik-calendar"></i><span>Calendar</span></a> |
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="pages/taskboard.html"><i class="ik ik-server"></i><span>Taskboard</span></a> |
||||
</div> |
||||
|
||||
<div class="nav-lavel">Pages</div> |
||||
|
||||
<div class="nav-item has-sub"> |
||||
<a href="#"><i class="ik ik-lock"></i><span>Authentication</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="pages/login.html" class="menu-item">Login</a> |
||||
<a href="pages/register.html" class="menu-item">Register</a> |
||||
<a href="pages/forgot-password.html" class="menu-item">Forgot Password</a> |
||||
</div> |
||||
</div> |
||||
<div class="nav-item has-sub"> |
||||
<a href="#"><i class="ik ik-file-text"></i><span>Other</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="pages/profile.html" class="menu-item">Profile</a> |
||||
<a href="pages/invoice.html" class="menu-item">Invoice</a> |
||||
</div> |
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="pages/layouts.html"><i class="ik ik-layout"></i><span>Layouts</span><span class="badge badge-success">New</span></a> |
||||
</div> |
||||
<div class="nav-lavel">Other</div> |
||||
<div class="nav-item has-sub"> |
||||
<a href="javascript:void(0)"><i class="ik ik-list"></i><span>Menu Levels</span></a> |
||||
<div class="submenu-content"> |
||||
<a href="javascript:void(0)" class="menu-item">Menu Level 2.1</a> |
||||
<div class="nav-item has-sub"> |
||||
<a href="javascript:void(0)" class="menu-item">Menu Level 2.2</a> |
||||
<div class="submenu-content"> |
||||
<a href="javascript:void(0)" class="menu-item">Menu Level 3.1</a> |
||||
</div> |
||||
</div> |
||||
<a href="javascript:void(0)" class="menu-item">Menu Level 2.3</a> |
||||
</div> |
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="javascript:void(0)" class="disabled"><i class="ik ik-slash"></i><span>Disabled Menu</span></a> |
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="javascript:void(0)"><i class="ik ik-award"></i><span>Sample Page</span></a> |
||||
</div> |
||||
<div class="nav-lavel">Support</div> |
||||
<div class="nav-item"> |
||||
<a href="javascript:void(0)"><i class="ik ik-monitor"></i><span>Documentation</span></a> |
||||
</div> |
||||
<div class="nav-item"> |
||||
<a href="javascript:void(0)"><i class="ik ik-help-circle"></i><span>Submit Issue</span></a> |
||||
</div> --> |
||||
</nav> |
||||
</div> |
||||
</div> |
||||
</div> |
@ -0,0 +1,856 @@
|
||||
<!doctype html> |
||||
<html class="no-js" lang="en"> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<meta http-equiv="x-ua-compatible" content="ie=edge"> |
||||
<title>ThemeKit - Admin Template</title> |
||||
<meta name="description" content=""> |
||||
<meta name="keywords" content=""> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon" /> |
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet"> |
||||
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/bootstrap/dist/css/bootstrap.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/fontawesome-free/css/all.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/icon-kit/dist/css/iconkit.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/ionicons/dist/css/ionicons.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/perfect-scrollbar/css/perfect-scrollbar.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/datatables.net-bs4/css/dataTables.bootstrap4.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/jvectormap/jquery-jvectormap.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/weather-icons/css/weather-icons.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/c3/c3.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/owl.carousel/dist/assets/owl.carousel.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/owl.carousel/dist/assets/owl.theme.default.min.css') ?>">
|
||||
<link rel="stylesheet" href="<?= base_url('public/theme/dist/css/theme.min.css') ?>">
|
||||
<script src="<?= base_url('public/theme/src/js/vendor/modernizr-2.8.3.min.js') ?>"></script>
|
||||
</head> |
||||
|
||||
<body> |
||||
<!--[if lt IE 8]> |
||||
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> |
||||
<![endif]--> |
||||
|
||||
<div class="wrapper"> |
||||
<!-- Navbar --> |
||||
<?php $this->load->view('navbar.php') ?> |
||||
<!-- End Navbar --> |
||||
|
||||
<div class="page-wrap"> |
||||
<!-- Sidebar --> |
||||
<?php $this->load->view('sidebar.php') ?> |
||||
<!-- End Sidebar --> |
||||
|
||||
<!-- Content --> |
||||
<div class="main-content"> |
||||
<div class="container-fluid"> |
||||
<div class="row clearfix"> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Bookmarks</h6> |
||||
<h2>1,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-award"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">6% higher than last month</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="62" aria-valuemin="0" aria-valuemax="100" style="width: 62%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Likes</h6> |
||||
<h2>41,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-thumbs-up"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">61% higher than last month</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-success" role="progressbar" aria-valuenow="78" aria-valuemin="0" aria-valuemax="100" style="width: 78%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Events</h6> |
||||
<h2>410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-calendar"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">Total Events</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-warning" role="progressbar" aria-valuenow="31" aria-valuemin="0" aria-valuemax="100" style="width: 31%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Comments</h6> |
||||
<h2>41,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-message-square"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">Total Comments</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col-md-8"> |
||||
<div class="card"> |
||||
<div class="card-body"> |
||||
<div class="row align-items-center"> |
||||
<div class="col-lg-8 col-md-12"> |
||||
<h3 class="card-title">Visitors By Countries</h3> |
||||
<div id="visitfromworld" style="width:100%; height:350px"></div> |
||||
</div> |
||||
<div class="col-lg-4 col-md-12"> |
||||
<div class="row mb-15"> |
||||
<div class="col-9">India</div> |
||||
<div class="col-3 text-right">28%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row mb-15"> |
||||
<div class="col-9"> UK</div> |
||||
<div class="col-3 text-right">21%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-aqua" role="progressbar" style="width: 33%" aria-valuenow="33" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row mb-15"> |
||||
<div class="col-9"> USA</div> |
||||
<div class="col-3 text-right">18%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-purple" role="progressbar" style="width: 40%" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col-9">China</div> |
||||
<div class="col-3 text-right">12%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-danger" role="progressbar" style="width: 15%" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card" style="min-height: 422px;"> |
||||
<div class="card-header"><h3>Donut chart</h3></div> |
||||
<div class="card-body"> |
||||
<div id="c3-donut-chart"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="row"> |
||||
<div class="col-md-4"> |
||||
<div class="card"> |
||||
<div class="card-header"> |
||||
<h3>Recent Chat</h3> |
||||
<div class="card-header-right"> |
||||
<ul class="list-unstyled card-option"> |
||||
<li><i class="ik ik-chevron-left action-toggle"></i></li> |
||||
<li><i class="ik ik-minus minimize-card"></i></li> |
||||
<li><i class="ik ik-x close-card"></i></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<div class="card-body chat-box scrollable" style="height:300px;"> |
||||
<ul class="chat-list"> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/1.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">James Anderson</h6> |
||||
<div class="box bg-light-info">Lorem Ipsum is simply dummy text of the printing & type setting industry.</div> |
||||
</div> |
||||
<div class="chat-time">10:56 am</div> |
||||
</li> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/2.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">Bianca Doe</h6> |
||||
<div class="box bg-light-info">It’s Great opportunity to work.</div> |
||||
</div> |
||||
<div class="chat-time">10:57 am</div> |
||||
</li> |
||||
<li class="odd chat-item"> |
||||
<div class="chat-content"> |
||||
<div class="box bg-light-inverse">I would love to join the team.</div> |
||||
<br> |
||||
</div> |
||||
</li> |
||||
<li class="odd chat-item"> |
||||
<div class="chat-content"> |
||||
<div class="box bg-light-inverse">Whats budget of the new project.</div> |
||||
<br> |
||||
</div> |
||||
<div class="chat-time">10:59 am</div> |
||||
</li> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/3.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">Angelina Rhodes</h6> |
||||
<div class="box bg-light-info">Well we have good budget for the project</div> |
||||
</div> |
||||
<div class="chat-time">11:00 am</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="card-footer chat-footer"> |
||||
<div class="input-wrap"> |
||||
<input type="text" placeholder="Type and enter" class="form-control"> |
||||
</div> |
||||
<button type="button" class="btn btn-icon btn-theme"><i class="fa fa-paper-plane"></i></button> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card"> |
||||
<div class="card-body"> |
||||
<div class="d-flex"> |
||||
<h4 class="card-title">Weather Report</h4> |
||||
<select class="form-control w-25 ml-auto"> |
||||
<option selected="">Today</option> |
||||
<option value="1">Weekly</option> |
||||
</select> |
||||
</div> |
||||
<div class="d-flex align-items-center flex-row mt-30"> |
||||
<div class="p-2 f-50 text-info"><i class="wi wi-day-showers"></i> <span>23<sup>°</sup></span></div> |
||||
<div class="p-2"> |
||||
<h3 class="mb-0">Saturday</h3><small>Banglore, India</small></div> |
||||
</div> |
||||
<table class="table table-borderless"> |
||||
<tbody> |
||||
<tr> |
||||
<td>Wind</td> |
||||
<td class="font-medium">ESE 17 mph</td> |
||||
</tr> |
||||
<tr> |
||||
<td>Humidity</td> |
||||
<td class="font-medium">83%</td> |
||||
</tr> |
||||
<tr> |
||||
<td>Pressure</td> |
||||
<td class="font-medium">28.56 in</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<hr> |
||||
<ul class="list-unstyled row text-center city-weather-days mb-0 mt-20"> |
||||
<li class="col"><i class="wi wi-day-sunny mr-5"></i><span>09:30</span><h3>20<sup>°</sup></h3></li> |
||||
<li class="col"><i class="wi wi-day-cloudy mr-5"></i><span>11:30</span><h3>22<sup>°</sup></h3></li> |
||||
<li class="col"><i class="wi wi-day-hail mr-5"></i><span>13:30</span><h3>25<sup>°</sup></h3></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card" style="min-height: 422px;"> |
||||
<div class="card-header"> |
||||
<h3>Timeline</h3> |
||||
<div class="card-header-right"> |
||||
<ul class="list-unstyled card-option"> |
||||
<li><i class="ik ik-chevron-left action-toggle"></i></li> |
||||
<li><i class="ik ik-minus minimize-card"></i></li> |
||||
<li><i class="ik ik-x close-card"></i></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<div class="card-body timeline"> |
||||
<div class="header bg-theme" style="background-image: url('<?= base_url('public/theme/img/placeholder/placeimg_400_200_nature.jpg') ?>')">
|
||||
<div class="color-overlay d-flex align-items-center"> |
||||
<div class="day-number">8</div> |
||||
<div class="date-right"> |
||||
<div class="day-name">Monday</div> |
||||
<div class="month">February 2018</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<ul> |
||||
<li> |
||||
<div class="bullet bg-pink"></div> |
||||
<div class="time">11am</div> |
||||
<div class="desc"> |
||||
<h3>Attendance</h3> |
||||
<h4>Computer Class</h4> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<div class="bullet bg-green"></div> |
||||
<div class="time">12pm</div> |
||||
<div class="desc"> |
||||
<h3>Design Team</h3> |
||||
<h4>Hangouts</h4> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<div class="bullet bg-orange"></div> |
||||
<div class="time">2pm</div> |
||||
<div class="desc"> |
||||
<h3>Finish</h3> |
||||
<h4>Go to Home</h4> |
||||
</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<div class="card"> |
||||
<div class="card-header row"> |
||||
<div class="col col-sm-3"> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="btn-icon checkbox-dropdown dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></a> |
||||
<div class="dropdown-menu" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" id="checkbox_select_all" href="javascript:void(0);">Select All</a> |
||||
<a class="dropdown-item" id="checkbox_deselect_all" href="javascript:void(0);">Deselect All</a> |
||||
</div> |
||||
</div> |
||||
<div class="card-options d-inline-block"> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-plus"></i></a> |
||||
<a href="#"><i class="ik ik-rotate-cw"></i></a> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="nav-link dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-more-horizontal"></i></a> |
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" href="#">Action</a> |
||||
<a class="dropdown-item" href="#">More Action</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-6"> |
||||
<div class="card-search with-adv-search dropdown"> |
||||
<form action=""> |
||||
<input type="text" class="form-control" placeholder="Search.." required> |
||||
<button type="submit" class="btn btn-icon"><i class="ik ik-search"></i></button> |
||||
<button type="button" id="adv_wrap_toggler" class="adv-btn ik ik-chevron-down dropdown-toggle" data-toggle="dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button> |
||||
<div class="adv-search-wrap dropdown-menu dropdown-menu-right" aria-labelledby="adv_wrap_toggler"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control" placeholder="Full Name"> |
||||
</div> |
||||
<div class="form-group"> |
||||
<input type="email" class="form-control" placeholder="Email"> |
||||
</div> |
||||
<button class="btn btn-theme">Search</button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options text-right"> |
||||
<span class="mr-5">1 - 50 of 2,500</span> |
||||
<a href="#"><i class="ik ik-chevron-left"></i></a> |
||||
<a href="#"><i class="ik ik-chevron-right"></i></a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-body p-0"> |
||||
<div class="list-item-wrap"> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option1"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Lorem Ipsum is simply dumm dummy text of the printing and typesetting industry.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Aenean eu pharetra arcu, vitae elementum sem. Sed non ligula molestie, finibus lacus at, suscipit mi. Nunc luctus lacus vel felis blandit, eu finibus augue tincidunt.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option3"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Donec lectus augue, suscipit in sodales sit amet, semper sit amet enim. Duis pretium, nisi id pretium ornare, tortor nibh sodales tellus.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card"> |
||||
<div class="card-header row"> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options d-inline-block"> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-plus"></i></a> |
||||
<a href="#"><i class="ik ik-rotate-cw"></i></a> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="nav-link dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-more-horizontal"></i></a> |
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" href="#">Action</a> |
||||
<a class="dropdown-item" href="#">More Action</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-6"> |
||||
<div class="card-search with-adv-search dropdown"> |
||||
<form action=""> |
||||
<input type="text" class="form-control global_filter" id="global_filter" placeholder="Search.." required> |
||||
<button type="submit" class="btn btn-icon"><i class="ik ik-search"></i></button> |
||||
<button type="button" id="adv_wrap_toggler" class="adv-btn ik ik-chevron-down dropdown-toggle" data-toggle="dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button> |
||||
<div class="adv-search-wrap dropdown-menu dropdown-menu-right" aria-labelledby="adv_wrap_toggler"> |
||||
<div class="row"> |
||||
<div class="col-md-12"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col0_filter" placeholder="Name" data-column="0"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-6"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col1_filter" placeholder="Position" data-column="1"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-6"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col2_filter" placeholder="Office" data-column="2"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col3_filter" placeholder="Age" data-column="3"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col4_filter" placeholder="Start date" data-column="4"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col5_filter" placeholder="Salary" data-column="5"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<button class="btn btn-theme">Search</button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options text-right"> |
||||
<span class="mr-5" id="top">1 - 50 of 2,500</span> |
||||
<a href="#"><i class="ik ik-chevron-left"></i></a> |
||||
<a href="#"><i class="ik ik-chevron-right"></i></a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-body"> |
||||
<table id="advanced_table" class="table"> |
||||
<thead> |
||||
<tr> |
||||
<th class="nosort" width="10"> |
||||
<label class="custom-control custom-checkbox m-0"> |
||||
<input type="checkbox" class="custom-control-input" id="selectall" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</th> |
||||
<th class="nosort">Avatar</th> |
||||
<th>Name</th> |
||||
<th>Position</th> |
||||
<th>Office</th> |
||||
<th>Age</th> |
||||
<th>Start date</th> |
||||
<th>Salary</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="<?= base_url('public/theme/img/users/1.jpg') ?>" class="table-user-thumb" alt=""></td>
|
||||
<td>Tiger Nixon</td> |
||||
<td>System Architect</td> |
||||
<td>Edinburgh</td> |
||||
<td>61</td> |
||||
<td>2011/04/25</td> |
||||
<td>$320,800</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/2.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Garrett Winters</td> |
||||
<td>Accountant</td> |
||||
<td>Tokyo</td> |
||||
<td>63</td> |
||||
<td>2011/07/25</td> |
||||
<td>$170,750</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/3.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Ashton Cox</td> |
||||
<td>Junior Technical Author</td> |
||||
<td>San Francisco</td> |
||||
<td>66</td> |
||||
<td>2009/01/12</td> |
||||
<td>$86,000</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/4.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Cedric Kelly</td> |
||||
<td>Senior Javascript Developer</td> |
||||
<td>Edinburgh</td> |
||||
<td>22</td> |
||||
<td>2012/03/29</td> |
||||
<td>$433,060</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/5.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Airi Satou</td> |
||||
<td>Accountant</td> |
||||
<td>Tokyo</td> |
||||
<td>33</td> |
||||
<td>2008/11/28</td> |
||||
<td>$162,700</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/1.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Brielle Williamson</td> |
||||
<td>Integration Specialist</td> |
||||
<td>New York</td> |
||||
<td>61</td> |
||||
<td>2012/12/02</td> |
||||
<td>$372,000</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/2.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Herrod Chandler</td> |
||||
<td>Sales Assistant</td> |
||||
<td>San Francisco</td> |
||||
<td>59</td> |
||||
<td>2012/08/06</td> |
||||
<td>$137,500</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/3.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Rhona Davidson</td> |
||||
<td>Integration Specialist</td> |
||||
<td>Tokyo</td> |
||||
<td>55</td> |
||||
<td>2010/10/14</td> |
||||
<td>$327,900</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/4.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Colleen Hurst</td> |
||||
<td>Javascript Developer</td> |
||||
<td>San Francisco</td> |
||||
<td>39</td> |
||||
<td>2009/09/15</td> |
||||
<td>$205,500</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<aside class="right-sidebar"> |
||||
<div class="sidebar-chat" data-plugin="chat-sidebar"> |
||||
<div class="sidebar-chat-info"> |
||||
<h6>Chat List</h6> |
||||
<form class="mr-t-10"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control" placeholder="Search for friends ..."> |
||||
<i class="ik ik-search"></i> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
<div class="chat-list"> |
||||
<div class="list-group row"> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Gene Newman"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Gene Newman</span> <span class="username">@gene_newman</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Billy Black"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/2.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Billy Black</span> <span class="username">@billyblack</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Herbert Diaz"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/3.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Herbert Diaz</span> <span class="username">@herbert</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Sylvia Harvey"> |
||||
<figure class="user--busy"> |
||||
<img src="img/users/4.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Sylvia Harvey</span> <span class="username">@sylvia</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item active" data-chat-user="Marsha Hoffman"> |
||||
<figure class="user--busy"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Marsha Hoffman</span> <span class="username">@m_hoffman</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Mason Grant"> |
||||
<figure class="user--offline"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Mason Grant</span> <span class="username">@masongrant</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Shelly Sullivan"> |
||||
<figure class="user--offline"> |
||||
<img src="img/users/2.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Shelly Sullivan</span> <span class="username">@shelly</span></span> |
||||
</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</aside> |
||||
|
||||
<div class="chat-panel" hidden> |
||||
<div class="card"> |
||||
<div class="card-header d-flex justify-content-between"> |
||||
<a href="javascript:void(0);"><i class="ik ik-message-square text-success"></i></a> |
||||
<span class="user-name">John Doe</span> |
||||
<button type="button" class="close" aria-label="Close"><span aria-hidden="true">×</span></button> |
||||
</div> |
||||
<div class="card-body"> |
||||
<div class="widget-chat-activity flex-1"> |
||||
<div class="messages"> |
||||
<div class="message media reply"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/3.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Epic Cheeseburgers come in all kind of styles.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Cheeseburgers make your knees weak.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media reply"> |
||||
<figure class="user--offline"> |
||||
<a href="#"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Cheeseburgers will never let you down.</p> |
||||
<p>They'll also never run around or desert you.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>A great cheeseburger is a gastronomical event.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media reply"> |
||||
<figure class="user--busy"> |
||||
<a href="#"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>There's a cheesy incarnation waiting for you no matter what you palete preferences are.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>If you are a vegan, we are sorry for you loss.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<form action="javascript:void(0)" class="card-footer" method="post"> |
||||
<div class="d-flex justify-content-end"> |
||||
<textarea class="border-0 flex-1" rows="1" placeholder="Type your message here"></textarea> |
||||
<button class="btn btn-icon" type="submit"><i class="ik ik-arrow-right text-success"></i></button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
<!-- End Content --> |
||||
|
||||
<!-- Footer --> |
||||
<?php $this->load->view('footer.php') ?> |
||||
<!-- End Footer --> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> |
||||
<script>window.jQuery || document.write('<script src="src/js/vendor/jquery-3.3.1.min.js"><\/script>')</script> |
||||
<script src="<?= base_url('public/theme/plugins/popper.js/dist/umd/popper.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/bootstrap/dist/js/bootstrap.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/perfect-scrollbar/dist/perfect-scrollbar.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/screenfull/dist/screenfull.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/datatables.net/js/jquery.dataTables.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/datatables.net-bs4/js/dataTables.bootstrap4.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/datatables.net-responsive/js/dataTables.responsive.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/datatables.net-responsive-bs4/js/responsive.bootstrap4.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/jvectormap/jquery-jvectormap.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/jvectormap/tests/assets/jquery-jvectormap-world-mill-en.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/moment/moment.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/tempusdominus-bootstrap-4/build/js/tempusdominus-bootstrap-4.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/d3/dist/d3.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/plugins/c3/c3.min.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/js/tables.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/js/widgets.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/js/charts.js') ?>"></script>
|
||||
<script src="<?= base_url('public/theme/dist/js/theme.min.js') ?>"></script>
|
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,777 @@
|
||||
<div class="main-content"> |
||||
<div class="container-fluid"> |
||||
<div class="row clearfix"> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Bookmarks</h6> |
||||
<h2>1,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-award"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">6% higher than last month</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="62" aria-valuemin="0" aria-valuemax="100" style="width: 62%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Likes</h6> |
||||
<h2>41,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-thumbs-up"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">61% higher than last month</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-success" role="progressbar" aria-valuenow="78" aria-valuemin="0" aria-valuemax="100" style="width: 78%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Events</h6> |
||||
<h2>410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-calendar"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">Total Events</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-warning" role="progressbar" aria-valuenow="31" aria-valuemin="0" aria-valuemax="100" style="width: 31%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Comments</h6> |
||||
<h2>41,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-message-square"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">Total Comments</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col-md-8"> |
||||
<div class="card"> |
||||
<div class="card-body"> |
||||
<div class="row align-items-center"> |
||||
<div class="col-lg-8 col-md-12"> |
||||
<h3 class="card-title">Visitors By Countries</h3> |
||||
<div id="visitfromworld" style="width:100%; height:350px"></div> |
||||
</div> |
||||
<div class="col-lg-4 col-md-12"> |
||||
<div class="row mb-15"> |
||||
<div class="col-9">India</div> |
||||
<div class="col-3 text-right">28%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row mb-15"> |
||||
<div class="col-9"> UK</div> |
||||
<div class="col-3 text-right">21%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-aqua" role="progressbar" style="width: 33%" aria-valuenow="33" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row mb-15"> |
||||
<div class="col-9"> USA</div> |
||||
<div class="col-3 text-right">18%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-purple" role="progressbar" style="width: 40%" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col-9">China</div> |
||||
<div class="col-3 text-right">12%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-danger" role="progressbar" style="width: 15%" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card" style="min-height: 422px;"> |
||||
<div class="card-header"><h3>Donut chart</h3></div> |
||||
<div class="card-body"> |
||||
<div id="c3-donut-chart"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="row"> |
||||
<div class="col-md-4"> |
||||
<div class="card"> |
||||
<div class="card-header"> |
||||
<h3>Recent Chat</h3> |
||||
<div class="card-header-right"> |
||||
<ul class="list-unstyled card-option"> |
||||
<li><i class="ik ik-chevron-left action-toggle"></i></li> |
||||
<li><i class="ik ik-minus minimize-card"></i></li> |
||||
<li><i class="ik ik-x close-card"></i></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<div class="card-body chat-box scrollable" style="height:300px;"> |
||||
<ul class="chat-list"> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/1.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">James Anderson</h6> |
||||
<div class="box bg-light-info">Lorem Ipsum is simply dummy text of the printing & type setting industry.</div> |
||||
</div> |
||||
<div class="chat-time">10:56 am</div> |
||||
</li> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/2.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">Bianca Doe</h6> |
||||
<div class="box bg-light-info">It’s Great opportunity to work.</div> |
||||
</div> |
||||
<div class="chat-time">10:57 am</div> |
||||
</li> |
||||
<li class="odd chat-item"> |
||||
<div class="chat-content"> |
||||
<div class="box bg-light-inverse">I would love to join the team.</div> |
||||
<br> |
||||
</div> |
||||
</li> |
||||
<li class="odd chat-item"> |
||||
<div class="chat-content"> |
||||
<div class="box bg-light-inverse">Whats budget of the new project.</div> |
||||
<br> |
||||
</div> |
||||
<div class="chat-time">10:59 am</div> |
||||
</li> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/3.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">Angelina Rhodes</h6> |
||||
<div class="box bg-light-info">Well we have good budget for the project</div> |
||||
</div> |
||||
<div class="chat-time">11:00 am</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="card-footer chat-footer"> |
||||
<div class="input-wrap"> |
||||
<input type="text" placeholder="Type and enter" class="form-control"> |
||||
</div> |
||||
<button type="button" class="btn btn-icon btn-theme"><i class="fa fa-paper-plane"></i></button> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card"> |
||||
<div class="card-body"> |
||||
<div class="d-flex"> |
||||
<h4 class="card-title">Weather Report</h4> |
||||
<select class="form-control w-25 ml-auto"> |
||||
<option selected="">Today</option> |
||||
<option value="1">Weekly</option> |
||||
</select> |
||||
</div> |
||||
<div class="d-flex align-items-center flex-row mt-30"> |
||||
<div class="p-2 f-50 text-info"><i class="wi wi-day-showers"></i> <span>23<sup>°</sup></span></div> |
||||
<div class="p-2"> |
||||
<h3 class="mb-0">Saturday</h3><small>Banglore, India</small></div> |
||||
</div> |
||||
<table class="table table-borderless"> |
||||
<tbody> |
||||
<tr> |
||||
<td>Wind</td> |
||||
<td class="font-medium">ESE 17 mph</td> |
||||
</tr> |
||||
<tr> |
||||
<td>Humidity</td> |
||||
<td class="font-medium">83%</td> |
||||
</tr> |
||||
<tr> |
||||
<td>Pressure</td> |
||||
<td class="font-medium">28.56 in</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<hr> |
||||
<ul class="list-unstyled row text-center city-weather-days mb-0 mt-20"> |
||||
<li class="col"><i class="wi wi-day-sunny mr-5"></i><span>09:30</span><h3>20<sup>°</sup></h3></li> |
||||
<li class="col"><i class="wi wi-day-cloudy mr-5"></i><span>11:30</span><h3>22<sup>°</sup></h3></li> |
||||
<li class="col"><i class="wi wi-day-hail mr-5"></i><span>13:30</span><h3>25<sup>°</sup></h3></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card" style="min-height: 422px;"> |
||||
<div class="card-header"> |
||||
<h3>Timeline</h3> |
||||
<div class="card-header-right"> |
||||
<ul class="list-unstyled card-option"> |
||||
<li><i class="ik ik-chevron-left action-toggle"></i></li> |
||||
<li><i class="ik ik-minus minimize-card"></i></li> |
||||
<li><i class="ik ik-x close-card"></i></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<div class="card-body timeline"> |
||||
<div class="header bg-theme" style="background-image: url('<?= base_url('public/theme/img/placeholder/placeimg_400_200_nature.jpg') ?>')">
|
||||
<div class="color-overlay d-flex align-items-center"> |
||||
<div class="day-number">8</div> |
||||
<div class="date-right"> |
||||
<div class="day-name">Monday</div> |
||||
<div class="month">February 2018</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<ul> |
||||
<li> |
||||
<div class="bullet bg-pink"></div> |
||||
<div class="time">11am</div> |
||||
<div class="desc"> |
||||
<h3>Attendance</h3> |
||||
<h4>Computer Class</h4> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<div class="bullet bg-green"></div> |
||||
<div class="time">12pm</div> |
||||
<div class="desc"> |
||||
<h3>Design Team</h3> |
||||
<h4>Hangouts</h4> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<div class="bullet bg-orange"></div> |
||||
<div class="time">2pm</div> |
||||
<div class="desc"> |
||||
<h3>Finish</h3> |
||||
<h4>Go to Home</h4> |
||||
</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<div class="card"> |
||||
<div class="card-header row"> |
||||
<div class="col col-sm-3"> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="btn-icon checkbox-dropdown dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></a> |
||||
<div class="dropdown-menu" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" id="checkbox_select_all" href="javascript:void(0);">Select All</a> |
||||
<a class="dropdown-item" id="checkbox_deselect_all" href="javascript:void(0);">Deselect All</a> |
||||
</div> |
||||
</div> |
||||
<div class="card-options d-inline-block"> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-plus"></i></a> |
||||
<a href="#"><i class="ik ik-rotate-cw"></i></a> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="nav-link dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-more-horizontal"></i></a> |
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" href="#">Action</a> |
||||
<a class="dropdown-item" href="#">More Action</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-6"> |
||||
<div class="card-search with-adv-search dropdown"> |
||||
<form action=""> |
||||
<input type="text" class="form-control" placeholder="Search.." required> |
||||
<button type="submit" class="btn btn-icon"><i class="ik ik-search"></i></button> |
||||
<button type="button" id="adv_wrap_toggler" class="adv-btn ik ik-chevron-down dropdown-toggle" data-toggle="dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button> |
||||
<div class="adv-search-wrap dropdown-menu dropdown-menu-right" aria-labelledby="adv_wrap_toggler"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control" placeholder="Full Name"> |
||||
</div> |
||||
<div class="form-group"> |
||||
<input type="email" class="form-control" placeholder="Email"> |
||||
</div> |
||||
<button class="btn btn-theme">Search</button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options text-right"> |
||||
<span class="mr-5">1 - 50 of 2,500</span> |
||||
<a href="#"><i class="ik ik-chevron-left"></i></a> |
||||
<a href="#"><i class="ik ik-chevron-right"></i></a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-body p-0"> |
||||
<div class="list-item-wrap"> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option1"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Lorem Ipsum is simply dumm dummy text of the printing and typesetting industry.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Aenean eu pharetra arcu, vitae elementum sem. Sed non ligula molestie, finibus lacus at, suscipit mi. Nunc luctus lacus vel felis blandit, eu finibus augue tincidunt.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option3"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Donec lectus augue, suscipit in sodales sit amet, semper sit amet enim. Duis pretium, nisi id pretium ornare, tortor nibh sodales tellus.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card"> |
||||
<div class="card-header row"> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options d-inline-block"> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-plus"></i></a> |
||||
<a href="#"><i class="ik ik-rotate-cw"></i></a> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="nav-link dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-more-horizontal"></i></a> |
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" href="#">Action</a> |
||||
<a class="dropdown-item" href="#">More Action</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-6"> |
||||
<div class="card-search with-adv-search dropdown"> |
||||
<form action=""> |
||||
<input type="text" class="form-control global_filter" id="global_filter" placeholder="Search.." required> |
||||
<button type="submit" class="btn btn-icon"><i class="ik ik-search"></i></button> |
||||
<button type="button" id="adv_wrap_toggler" class="adv-btn ik ik-chevron-down dropdown-toggle" data-toggle="dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button> |
||||
<div class="adv-search-wrap dropdown-menu dropdown-menu-right" aria-labelledby="adv_wrap_toggler"> |
||||
<div class="row"> |
||||
<div class="col-md-12"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col0_filter" placeholder="Name" data-column="0"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-6"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col1_filter" placeholder="Position" data-column="1"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-6"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col2_filter" placeholder="Office" data-column="2"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col3_filter" placeholder="Age" data-column="3"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col4_filter" placeholder="Start date" data-column="4"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col5_filter" placeholder="Salary" data-column="5"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<button class="btn btn-theme">Search</button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options text-right"> |
||||
<span class="mr-5" id="top">1 - 50 of 2,500</span> |
||||
<a href="#"><i class="ik ik-chevron-left"></i></a> |
||||
<a href="#"><i class="ik ik-chevron-right"></i></a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-body"> |
||||
<table id="advanced_table" class="table"> |
||||
<thead> |
||||
<tr> |
||||
<th class="nosort" width="10"> |
||||
<label class="custom-control custom-checkbox m-0"> |
||||
<input type="checkbox" class="custom-control-input" id="selectall" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</th> |
||||
<th class="nosort">Avatar</th> |
||||
<th>Name</th> |
||||
<th>Position</th> |
||||
<th>Office</th> |
||||
<th>Age</th> |
||||
<th>Start date</th> |
||||
<th>Salary</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="<?= base_url('public/theme/img/users/1.jpg') ?>" class="table-user-thumb" alt=""></td>
|
||||
<td>Tiger Nixon</td> |
||||
<td>System Architect</td> |
||||
<td>Edinburgh</td> |
||||
<td>61</td> |
||||
<td>2011/04/25</td> |
||||
<td>$320,800</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/2.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Garrett Winters</td> |
||||
<td>Accountant</td> |
||||
<td>Tokyo</td> |
||||
<td>63</td> |
||||
<td>2011/07/25</td> |
||||
<td>$170,750</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/3.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Ashton Cox</td> |
||||
<td>Junior Technical Author</td> |
||||
<td>San Francisco</td> |
||||
<td>66</td> |
||||
<td>2009/01/12</td> |
||||
<td>$86,000</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/4.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Cedric Kelly</td> |
||||
<td>Senior Javascript Developer</td> |
||||
<td>Edinburgh</td> |
||||
<td>22</td> |
||||
<td>2012/03/29</td> |
||||
<td>$433,060</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/5.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Airi Satou</td> |
||||
<td>Accountant</td> |
||||
<td>Tokyo</td> |
||||
<td>33</td> |
||||
<td>2008/11/28</td> |
||||
<td>$162,700</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/1.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Brielle Williamson</td> |
||||
<td>Integration Specialist</td> |
||||
<td>New York</td> |
||||
<td>61</td> |
||||
<td>2012/12/02</td> |
||||
<td>$372,000</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/2.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Herrod Chandler</td> |
||||
<td>Sales Assistant</td> |
||||
<td>San Francisco</td> |
||||
<td>59</td> |
||||
<td>2012/08/06</td> |
||||
<td>$137,500</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/3.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Rhona Davidson</td> |
||||
<td>Integration Specialist</td> |
||||
<td>Tokyo</td> |
||||
<td>55</td> |
||||
<td>2010/10/14</td> |
||||
<td>$327,900</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/4.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Colleen Hurst</td> |
||||
<td>Javascript Developer</td> |
||||
<td>San Francisco</td> |
||||
<td>39</td> |
||||
<td>2009/09/15</td> |
||||
<td>$205,500</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<aside class="right-sidebar"> |
||||
<div class="sidebar-chat" data-plugin="chat-sidebar"> |
||||
<div class="sidebar-chat-info"> |
||||
<h6>Chat List</h6> |
||||
<form class="mr-t-10"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control" placeholder="Search for friends ..."> |
||||
<i class="ik ik-search"></i> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
<div class="chat-list"> |
||||
<div class="list-group row"> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Gene Newman"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Gene Newman</span> <span class="username">@gene_newman</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Billy Black"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/2.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Billy Black</span> <span class="username">@billyblack</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Herbert Diaz"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/3.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Herbert Diaz</span> <span class="username">@herbert</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Sylvia Harvey"> |
||||
<figure class="user--busy"> |
||||
<img src="img/users/4.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Sylvia Harvey</span> <span class="username">@sylvia</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item active" data-chat-user="Marsha Hoffman"> |
||||
<figure class="user--busy"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Marsha Hoffman</span> <span class="username">@m_hoffman</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Mason Grant"> |
||||
<figure class="user--offline"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Mason Grant</span> <span class="username">@masongrant</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Shelly Sullivan"> |
||||
<figure class="user--offline"> |
||||
<img src="img/users/2.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Shelly Sullivan</span> <span class="username">@shelly</span></span> |
||||
</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</aside> |
||||
|
||||
<div class="chat-panel" hidden> |
||||
<div class="card"> |
||||
<div class="card-header d-flex justify-content-between"> |
||||
<a href="javascript:void(0);"><i class="ik ik-message-square text-success"></i></a> |
||||
<span class="user-name">John Doe</span> |
||||
<button type="button" class="close" aria-label="Close"><span aria-hidden="true">×</span></button> |
||||
</div> |
||||
<div class="card-body"> |
||||
<div class="widget-chat-activity flex-1"> |
||||
<div class="messages"> |
||||
<div class="message media reply"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/3.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Epic Cheeseburgers come in all kind of styles.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Cheeseburgers make your knees weak.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media reply"> |
||||
<figure class="user--offline"> |
||||
<a href="#"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Cheeseburgers will never let you down.</p> |
||||
<p>They'll also never run around or desert you.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>A great cheeseburger is a gastronomical event.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media reply"> |
||||
<figure class="user--busy"> |
||||
<a href="#"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>There's a cheesy incarnation waiting for you no matter what you palete preferences are.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>If you are a vegan, we are sorry for you loss.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<form action="javascript:void(0)" class="card-footer" method="post"> |
||||
<div class="d-flex justify-content-end"> |
||||
<textarea class="border-0 flex-1" rows="1" placeholder="Type your message here"></textarea> |
||||
<button class="btn btn-icon" type="submit"><i class="ik ik-arrow-right text-success"></i></button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
@ -0,0 +1,77 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
|
||||
<head> |
||||
<link rel="icon" type="image/png" sizes="96x96" href="<?php base_url() ?>/assets/img/favicon-32x32.png">
|
||||
<meta charset="utf-8" /> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> |
||||
<meta name="description" content="" /> |
||||
<meta name="author" content="" /> |
||||
<title>Login - Engine N</title> |
||||
<link href="<?= base_url('public/theme/src/authstyles.css') ?>" rel="stylesheet" />
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js" crossorigin="anonymous"></script> |
||||
</head> |
||||
|
||||
<body class="bg-secondary"> |
||||
<div id="layoutAuthentication"> |
||||
<div id="layoutAuthentication_content"> |
||||
<main> |
||||
<div class="container"> |
||||
<div class="row justify-content-center"> |
||||
<div class="col-lg-5"> |
||||
<div class="card shadow-lg border-0 rounded-lg mt-5"> |
||||
<div class="card-header"> |
||||
<h3 class="text-center font-weight-light my-4"><i class="fa fa-user-secret" aria-hidden="true"></i> Engine</h3> |
||||
</div> |
||||
<div class="card-body"> |
||||
<?php if (session()->getFlashdata('msg')) : ?> |
||||
<div class="alert alert-danger"><?= session()->getFlashdata('msg') ?></div>
|
||||
<?php endif; ?> |
||||
<form action="<?php base_url() ?>auth/login" method="post">
|
||||
|
||||
<div class="form-floating mb-3"> |
||||
<input class="form-control" name="username" id="username" type="text" placeholder="NIP 9 Digit" /> |
||||
<label for="inputEmail">NIP</label> |
||||
</div> |
||||
<div class="form-floating mb-3"> |
||||
<input class="form-control" name="password" id="password" type="password" placeholder="Password SIKKA" /> |
||||
<label for="inputPassword">Password</label> |
||||
</div> |
||||
<div class="form-check mb-3"> |
||||
<input class="form-check-input" id="inputRememberPassword" type="checkbox" value="" /> |
||||
<label class="form-check-label" for="inputRememberPassword">Ingat Password</label> |
||||
</div> |
||||
<div class="d-flex align-items-center justify-content-between mt-4 mb-0"> |
||||
<a> </a> |
||||
<button type="submit" class="btn btn-primary">Login</button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
<div class="card-footer text-center py-3"> |
||||
<div class="small">Gunakan NIP dan Password Sikka</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
</div> |
||||
<div id="layoutAuthentication_footer"> |
||||
<footer class="py-4 bg-light mt-auto"> |
||||
<div class="container-fluid px-4"> |
||||
<div class="d-flex align-items-center justify-content-between small"> |
||||
<div class="text-muted">Copyright © Direktorat Ekstensifikasi Perpajakan <?php echo date('Y') ?></div>
|
||||
<div> |
||||
|
||||
</div> |
||||
</div> |
||||
</div> |
||||
</footer> |
||||
</div> |
||||
</div> |
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script> |
||||
<script src="<?php base_url('public/theme/src/authscript.js') ?>"></script>
|
||||
</body> |
||||
|
||||
</html> |
@ -0,0 +1,26 @@
|
||||
<div class="main-content"> |
||||
<div class="container-fluid"> |
||||
<div class="row"> |
||||
<div class="col-md-12"> |
||||
<div class="card"> |
||||
<div class="card-body"> |
||||
<table class="table"> |
||||
<tbody> |
||||
<?php foreach ($users as $user) : ?> |
||||
|
||||
<tr> |
||||
<td><?= $user['name'] ?></td>
|
||||
<td><?= $user['username'] ?></td>
|
||||
<td><?= $user['noTelp'] ?></td>
|
||||
<td><?= $user['created_at'] ?></td>
|
||||
</tr> |
||||
|
||||
<?php endforeach; ?> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
@ -0,0 +1,777 @@
|
||||
<div class="main-content"> |
||||
<div class="container-fluid"> |
||||
<div class="row clearfix"> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Bookmarks</h6> |
||||
<h2>1,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-award"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">6% higher than last month</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="62" aria-valuemin="0" aria-valuemax="100" style="width: 62%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Likes</h6> |
||||
<h2>41,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-thumbs-up"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">61% higher than last month</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-success" role="progressbar" aria-valuenow="78" aria-valuemin="0" aria-valuemax="100" style="width: 78%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Events</h6> |
||||
<h2>410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-calendar"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">Total Events</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-warning" role="progressbar" aria-valuenow="31" aria-valuemin="0" aria-valuemax="100" style="width: 31%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-3 col-md-6 col-sm-12"> |
||||
<div class="widget"> |
||||
<div class="widget-body"> |
||||
<div class="d-flex justify-content-between align-items-center"> |
||||
<div class="state"> |
||||
<h6>Comments</h6> |
||||
<h2>41,410</h2> |
||||
</div> |
||||
<div class="icon"> |
||||
<i class="ik ik-message-square"></i> |
||||
</div> |
||||
</div> |
||||
<small class="text-small mt-10 d-block">Total Comments</small> |
||||
</div> |
||||
<div class="progress progress-sm"> |
||||
<div class="progress-bar bg-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%;"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col-md-8"> |
||||
<div class="card"> |
||||
<div class="card-body"> |
||||
<div class="row align-items-center"> |
||||
<div class="col-lg-8 col-md-12"> |
||||
<h3 class="card-title">Visitors By Countries</h3> |
||||
<div id="visitfromworld" style="width:100%; height:350px"></div> |
||||
</div> |
||||
<div class="col-lg-4 col-md-12"> |
||||
<div class="row mb-15"> |
||||
<div class="col-9">India</div> |
||||
<div class="col-3 text-right">28%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row mb-15"> |
||||
<div class="col-9"> UK</div> |
||||
<div class="col-3 text-right">21%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-aqua" role="progressbar" style="width: 33%" aria-valuenow="33" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row mb-15"> |
||||
<div class="col-9"> USA</div> |
||||
<div class="col-3 text-right">18%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-purple" role="progressbar" style="width: 40%" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col-9">China</div> |
||||
<div class="col-3 text-right">12%</div> |
||||
<div class="col-12"> |
||||
<div class="progress progress-sm mt-5"> |
||||
<div class="progress-bar bg-danger" role="progressbar" style="width: 15%" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card" style="min-height: 422px;"> |
||||
<div class="card-header"><h3>Donut chart</h3></div> |
||||
<div class="card-body"> |
||||
<div id="c3-donut-chart"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="row"> |
||||
<div class="col-md-4"> |
||||
<div class="card"> |
||||
<div class="card-header"> |
||||
<h3>Recent Chat</h3> |
||||
<div class="card-header-right"> |
||||
<ul class="list-unstyled card-option"> |
||||
<li><i class="ik ik-chevron-left action-toggle"></i></li> |
||||
<li><i class="ik ik-minus minimize-card"></i></li> |
||||
<li><i class="ik ik-x close-card"></i></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<div class="card-body chat-box scrollable" style="height:300px;"> |
||||
<ul class="chat-list"> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/1.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">James Anderson</h6> |
||||
<div class="box bg-light-info">Lorem Ipsum is simply dummy text of the printing & type setting industry.</div> |
||||
</div> |
||||
<div class="chat-time">10:56 am</div> |
||||
</li> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/2.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">Bianca Doe</h6> |
||||
<div class="box bg-light-info">It’s Great opportunity to work.</div> |
||||
</div> |
||||
<div class="chat-time">10:57 am</div> |
||||
</li> |
||||
<li class="odd chat-item"> |
||||
<div class="chat-content"> |
||||
<div class="box bg-light-inverse">I would love to join the team.</div> |
||||
<br> |
||||
</div> |
||||
</li> |
||||
<li class="odd chat-item"> |
||||
<div class="chat-content"> |
||||
<div class="box bg-light-inverse">Whats budget of the new project.</div> |
||||
<br> |
||||
</div> |
||||
<div class="chat-time">10:59 am</div> |
||||
</li> |
||||
<li class="chat-item"> |
||||
<div class="chat-img"><img src="<?= base_url('public/theme/img/users/3.jpg') ?>" alt="user"></div>
|
||||
<div class="chat-content"> |
||||
<h6 class="font-medium">Angelina Rhodes</h6> |
||||
<div class="box bg-light-info">Well we have good budget for the project</div> |
||||
</div> |
||||
<div class="chat-time">11:00 am</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="card-footer chat-footer"> |
||||
<div class="input-wrap"> |
||||
<input type="text" placeholder="Type and enter" class="form-control"> |
||||
</div> |
||||
<button type="button" class="btn btn-icon btn-theme"><i class="fa fa-paper-plane"></i></button> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card"> |
||||
<div class="card-body"> |
||||
<div class="d-flex"> |
||||
<h4 class="card-title">Weather Report</h4> |
||||
<select class="form-control w-25 ml-auto"> |
||||
<option selected="">Today</option> |
||||
<option value="1">Weekly</option> |
||||
</select> |
||||
</div> |
||||
<div class="d-flex align-items-center flex-row mt-30"> |
||||
<div class="p-2 f-50 text-info"><i class="wi wi-day-showers"></i> <span>23<sup>°</sup></span></div> |
||||
<div class="p-2"> |
||||
<h3 class="mb-0">Saturday</h3><small>Banglore, India</small></div> |
||||
</div> |
||||
<table class="table table-borderless"> |
||||
<tbody> |
||||
<tr> |
||||
<td>Wind</td> |
||||
<td class="font-medium">ESE 17 mph</td> |
||||
</tr> |
||||
<tr> |
||||
<td>Humidity</td> |
||||
<td class="font-medium">83%</td> |
||||
</tr> |
||||
<tr> |
||||
<td>Pressure</td> |
||||
<td class="font-medium">28.56 in</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<hr> |
||||
<ul class="list-unstyled row text-center city-weather-days mb-0 mt-20"> |
||||
<li class="col"><i class="wi wi-day-sunny mr-5"></i><span>09:30</span><h3>20<sup>°</sup></h3></li> |
||||
<li class="col"><i class="wi wi-day-cloudy mr-5"></i><span>11:30</span><h3>22<sup>°</sup></h3></li> |
||||
<li class="col"><i class="wi wi-day-hail mr-5"></i><span>13:30</span><h3>25<sup>°</sup></h3></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="card" style="min-height: 422px;"> |
||||
<div class="card-header"> |
||||
<h3>Timeline</h3> |
||||
<div class="card-header-right"> |
||||
<ul class="list-unstyled card-option"> |
||||
<li><i class="ik ik-chevron-left action-toggle"></i></li> |
||||
<li><i class="ik ik-minus minimize-card"></i></li> |
||||
<li><i class="ik ik-x close-card"></i></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<div class="card-body timeline"> |
||||
<div class="header bg-theme" style="background-image: url('<?= base_url('public/theme/img/placeholder/placeimg_400_200_nature.jpg') ?>')">
|
||||
<div class="color-overlay d-flex align-items-center"> |
||||
<div class="day-number">8</div> |
||||
<div class="date-right"> |
||||
<div class="day-name">Monday</div> |
||||
<div class="month">February 2018</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<ul> |
||||
<li> |
||||
<div class="bullet bg-pink"></div> |
||||
<div class="time">11am</div> |
||||
<div class="desc"> |
||||
<h3>Attendance</h3> |
||||
<h4>Computer Class</h4> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<div class="bullet bg-green"></div> |
||||
<div class="time">12pm</div> |
||||
<div class="desc"> |
||||
<h3>Design Team</h3> |
||||
<h4>Hangouts</h4> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<div class="bullet bg-orange"></div> |
||||
<div class="time">2pm</div> |
||||
<div class="desc"> |
||||
<h3>Finish</h3> |
||||
<h4>Go to Home</h4> |
||||
</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<div class="card"> |
||||
<div class="card-header row"> |
||||
<div class="col col-sm-3"> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="btn-icon checkbox-dropdown dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></a> |
||||
<div class="dropdown-menu" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" id="checkbox_select_all" href="javascript:void(0);">Select All</a> |
||||
<a class="dropdown-item" id="checkbox_deselect_all" href="javascript:void(0);">Deselect All</a> |
||||
</div> |
||||
</div> |
||||
<div class="card-options d-inline-block"> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-plus"></i></a> |
||||
<a href="#"><i class="ik ik-rotate-cw"></i></a> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="nav-link dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-more-horizontal"></i></a> |
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" href="#">Action</a> |
||||
<a class="dropdown-item" href="#">More Action</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-6"> |
||||
<div class="card-search with-adv-search dropdown"> |
||||
<form action=""> |
||||
<input type="text" class="form-control" placeholder="Search.." required> |
||||
<button type="submit" class="btn btn-icon"><i class="ik ik-search"></i></button> |
||||
<button type="button" id="adv_wrap_toggler" class="adv-btn ik ik-chevron-down dropdown-toggle" data-toggle="dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button> |
||||
<div class="adv-search-wrap dropdown-menu dropdown-menu-right" aria-labelledby="adv_wrap_toggler"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control" placeholder="Full Name"> |
||||
</div> |
||||
<div class="form-group"> |
||||
<input type="email" class="form-control" placeholder="Email"> |
||||
</div> |
||||
<button class="btn btn-theme">Search</button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options text-right"> |
||||
<span class="mr-5">1 - 50 of 2,500</span> |
||||
<a href="#"><i class="ik ik-chevron-left"></i></a> |
||||
<a href="#"><i class="ik ik-chevron-right"></i></a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-body p-0"> |
||||
<div class="list-item-wrap"> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option1"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Lorem Ipsum is simply dumm dummy text of the printing and typesetting industry.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Aenean eu pharetra arcu, vitae elementum sem. Sed non ligula molestie, finibus lacus at, suscipit mi. Nunc luctus lacus vel felis blandit, eu finibus augue tincidunt.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="list-item"> |
||||
<div class="item-inner"> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option3"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
<div class="list-title"><a href="javascript:void(0)">Donec lectus augue, suscipit in sodales sit amet, semper sit amet enim. Duis pretium, nisi id pretium ornare, tortor nibh sodales tellus.</a></div> |
||||
<div class="list-actions"> |
||||
<a href="#"><i class="ik ik-eye"></i></a> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-edit-2"></i></a> |
||||
<a href="#"><i class="ik ik-trash-2"></i></a> |
||||
</div> |
||||
</div> |
||||
<div class="qickview-wrap"> |
||||
<div class="desc"> |
||||
<p>Fusce suscipit turpis a dolor posuere ornare at a ante. Quisque nec libero facilisis, egestas tortor eget, mattis dui. Curabitur viverra laoreet ligula at hendrerit. Nullam sollicitudin maximus leo, vel pulvinar orci semper id. Donec vehicula tempus enim a facilisis. Proin dignissim porttitor sem, sed pulvinar tortor gravida vitae.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card"> |
||||
<div class="card-header row"> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options d-inline-block"> |
||||
<a href="#"><i class="ik ik-inbox"></i></a> |
||||
<a href="#"><i class="ik ik-plus"></i></a> |
||||
<a href="#"><i class="ik ik-rotate-cw"></i></a> |
||||
<div class="dropdown d-inline-block"> |
||||
<a class="nav-link dropdown-toggle" href="#" id="moreDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-more-horizontal"></i></a> |
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="moreDropdown"> |
||||
<a class="dropdown-item" href="#">Action</a> |
||||
<a class="dropdown-item" href="#">More Action</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-6"> |
||||
<div class="card-search with-adv-search dropdown"> |
||||
<form action=""> |
||||
<input type="text" class="form-control global_filter" id="global_filter" placeholder="Search.." required> |
||||
<button type="submit" class="btn btn-icon"><i class="ik ik-search"></i></button> |
||||
<button type="button" id="adv_wrap_toggler" class="adv-btn ik ik-chevron-down dropdown-toggle" data-toggle="dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button> |
||||
<div class="adv-search-wrap dropdown-menu dropdown-menu-right" aria-labelledby="adv_wrap_toggler"> |
||||
<div class="row"> |
||||
<div class="col-md-12"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col0_filter" placeholder="Name" data-column="0"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-6"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col1_filter" placeholder="Position" data-column="1"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-6"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col2_filter" placeholder="Office" data-column="2"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col3_filter" placeholder="Age" data-column="3"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col4_filter" placeholder="Start date" data-column="4"> |
||||
</div> |
||||
</div> |
||||
<div class="col-md-4"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control column_filter" id="col5_filter" placeholder="Salary" data-column="5"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<button class="btn btn-theme">Search</button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
<div class="col col-sm-3"> |
||||
<div class="card-options text-right"> |
||||
<span class="mr-5" id="top">1 - 50 of 2,500</span> |
||||
<a href="#"><i class="ik ik-chevron-left"></i></a> |
||||
<a href="#"><i class="ik ik-chevron-right"></i></a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-body"> |
||||
<table id="advanced_table" class="table"> |
||||
<thead> |
||||
<tr> |
||||
<th class="nosort" width="10"> |
||||
<label class="custom-control custom-checkbox m-0"> |
||||
<input type="checkbox" class="custom-control-input" id="selectall" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</th> |
||||
<th class="nosort">Avatar</th> |
||||
<th>Name</th> |
||||
<th>Position</th> |
||||
<th>Office</th> |
||||
<th>Age</th> |
||||
<th>Start date</th> |
||||
<th>Salary</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="<?= base_url('public/theme/img/users/1.jpg') ?>" class="table-user-thumb" alt=""></td>
|
||||
<td>Tiger Nixon</td> |
||||
<td>System Architect</td> |
||||
<td>Edinburgh</td> |
||||
<td>61</td> |
||||
<td>2011/04/25</td> |
||||
<td>$320,800</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/2.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Garrett Winters</td> |
||||
<td>Accountant</td> |
||||
<td>Tokyo</td> |
||||
<td>63</td> |
||||
<td>2011/07/25</td> |
||||
<td>$170,750</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/3.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Ashton Cox</td> |
||||
<td>Junior Technical Author</td> |
||||
<td>San Francisco</td> |
||||
<td>66</td> |
||||
<td>2009/01/12</td> |
||||
<td>$86,000</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/4.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Cedric Kelly</td> |
||||
<td>Senior Javascript Developer</td> |
||||
<td>Edinburgh</td> |
||||
<td>22</td> |
||||
<td>2012/03/29</td> |
||||
<td>$433,060</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/5.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Airi Satou</td> |
||||
<td>Accountant</td> |
||||
<td>Tokyo</td> |
||||
<td>33</td> |
||||
<td>2008/11/28</td> |
||||
<td>$162,700</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/1.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Brielle Williamson</td> |
||||
<td>Integration Specialist</td> |
||||
<td>New York</td> |
||||
<td>61</td> |
||||
<td>2012/12/02</td> |
||||
<td>$372,000</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/2.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Herrod Chandler</td> |
||||
<td>Sales Assistant</td> |
||||
<td>San Francisco</td> |
||||
<td>59</td> |
||||
<td>2012/08/06</td> |
||||
<td>$137,500</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/3.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Rhona Davidson</td> |
||||
<td>Integration Specialist</td> |
||||
<td>Tokyo</td> |
||||
<td>55</td> |
||||
<td>2010/10/14</td> |
||||
<td>$327,900</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
<label class="custom-control custom-checkbox"> |
||||
<input type="checkbox" class="custom-control-input select_all_child" id="" name="" value="option2"> |
||||
<span class="custom-control-label"> </span> |
||||
</label> |
||||
</td> |
||||
<td><img src="img/users/4.jpg" class="table-user-thumb" alt=""></td> |
||||
<td>Colleen Hurst</td> |
||||
<td>Javascript Developer</td> |
||||
<td>San Francisco</td> |
||||
<td>39</td> |
||||
<td>2009/09/15</td> |
||||
<td>$205,500</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<aside class="right-sidebar"> |
||||
<div class="sidebar-chat" data-plugin="chat-sidebar"> |
||||
<div class="sidebar-chat-info"> |
||||
<h6>Chat List</h6> |
||||
<form class="mr-t-10"> |
||||
<div class="form-group"> |
||||
<input type="text" class="form-control" placeholder="Search for friends ..."> |
||||
<i class="ik ik-search"></i> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
<div class="chat-list"> |
||||
<div class="list-group row"> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Gene Newman"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Gene Newman</span> <span class="username">@gene_newman</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Billy Black"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/2.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Billy Black</span> <span class="username">@billyblack</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Herbert Diaz"> |
||||
<figure class="user--online"> |
||||
<img src="img/users/3.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Herbert Diaz</span> <span class="username">@herbert</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Sylvia Harvey"> |
||||
<figure class="user--busy"> |
||||
<img src="img/users/4.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Sylvia Harvey</span> <span class="username">@sylvia</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item active" data-chat-user="Marsha Hoffman"> |
||||
<figure class="user--busy"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Marsha Hoffman</span> <span class="username">@m_hoffman</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Mason Grant"> |
||||
<figure class="user--offline"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Mason Grant</span> <span class="username">@masongrant</span> </span> |
||||
</a> |
||||
<a href="javascript:void(0)" class="list-group-item" data-chat-user="Shelly Sullivan"> |
||||
<figure class="user--offline"> |
||||
<img src="img/users/2.jpg" class="rounded-circle" alt=""> |
||||
</figure><span><span class="name">Shelly Sullivan</span> <span class="username">@shelly</span></span> |
||||
</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</aside> |
||||
|
||||
<div class="chat-panel" hidden> |
||||
<div class="card"> |
||||
<div class="card-header d-flex justify-content-between"> |
||||
<a href="javascript:void(0);"><i class="ik ik-message-square text-success"></i></a> |
||||
<span class="user-name">John Doe</span> |
||||
<button type="button" class="close" aria-label="Close"><span aria-hidden="true">×</span></button> |
||||
</div> |
||||
<div class="card-body"> |
||||
<div class="widget-chat-activity flex-1"> |
||||
<div class="messages"> |
||||
<div class="message media reply"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/3.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Epic Cheeseburgers come in all kind of styles.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Cheeseburgers make your knees weak.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media reply"> |
||||
<figure class="user--offline"> |
||||
<a href="#"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>Cheeseburgers will never let you down.</p> |
||||
<p>They'll also never run around or desert you.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>A great cheeseburger is a gastronomical event.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media reply"> |
||||
<figure class="user--busy"> |
||||
<a href="#"> |
||||
<img src="img/users/5.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>There's a cheesy incarnation waiting for you no matter what you palete preferences are.</p> |
||||
</div> |
||||
</div> |
||||
<div class="message media"> |
||||
<figure class="user--online"> |
||||
<a href="#"> |
||||
<img src="img/users/1.jpg" class="rounded-circle" alt=""> |
||||
</a> |
||||
</figure> |
||||
<div class="message-body media-body"> |
||||
<p>If you are a vegan, we are sorry for you loss.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<form action="javascript:void(0)" class="card-footer" method="post"> |
||||
<div class="d-flex justify-content-end"> |
||||
<textarea class="border-0 flex-1" rows="1" placeholder="Type your message here"></textarea> |
||||
<button class="btn btn-icon" type="submit"><i class="ik ik-arrow-right text-success"></i></button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<title>403 Forbidden</title> |
||||
</head> |
||||
<body> |
||||
|
||||
<p>Directory access is forbidden.</p> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,67 @@
|
||||
{ |
||||
"name": "codeigniter4/framework", |
||||
"description": "The CodeIgniter framework v4", |
||||
"license": "MIT", |
||||
"type": "project", |
||||
"homepage": "https://codeigniter.com", |
||||
"support": { |
||||
"forum": "https://forum.codeigniter.com/", |
||||
"source": "https://github.com/codeigniter4/CodeIgniter4", |
||||
"slack": "https://codeigniterchat.slack.com" |
||||
}, |
||||
"require": { |
||||
"php": "^7.4 || ^8.0", |
||||
"ext-intl": "*", |
||||
"ext-json": "*", |
||||
"ext-mbstring": "*", |
||||
"laminas/laminas-escaper": "^2.9", |
||||
"psr/log": "^1.1" |
||||
}, |
||||
"require-dev": { |
||||
"codeigniter/coding-standard": "^1.7", |
||||
"fakerphp/faker": "^1.9", |
||||
"friendsofphp/php-cs-fixer": "^3.47.1", |
||||
"kint-php/kint": "^5.0.4", |
||||
"mikey179/vfsstream": "^1.6", |
||||
"nexusphp/cs-config": "^3.6", |
||||
"phpunit/phpunit": "^9.1", |
||||
"predis/predis": "^1.1 || ^2.0" |
||||
}, |
||||
"suggest": { |
||||
"ext-curl": "If you use CURLRequest class", |
||||
"ext-dom": "If you use TestResponse", |
||||
"ext-exif": "If you run Image class tests", |
||||
"ext-fileinfo": "Improves mime type detection for files", |
||||
"ext-gd": "If you use Image class GDHandler", |
||||
"ext-imagick": "If you use Image class ImageMagickHandler", |
||||
"ext-libxml": "If you use TestResponse", |
||||
"ext-memcache": "If you use Cache class MemcachedHandler with Memcache", |
||||
"ext-memcached": "If you use Cache class MemcachedHandler with Memcached", |
||||
"ext-mysqli": "If you use MySQL", |
||||
"ext-oci8": "If you use Oracle Database", |
||||
"ext-pgsql": "If you use PostgreSQL", |
||||
"ext-readline": "Improves CLI::input() usability", |
||||
"ext-redis": "If you use Cache class RedisHandler", |
||||
"ext-simplexml": "If you format XML", |
||||
"ext-sodium": "If you use Encryption SodiumHandler", |
||||
"ext-sqlite3": "If you use SQLite3", |
||||
"ext-sqlsrv": "If you use SQL Server", |
||||
"ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()" |
||||
}, |
||||
"autoload": { |
||||
"psr-4": { |
||||
"CodeIgniter\\": "system/" |
||||
}, |
||||
"exclude-from-classmap": [ |
||||
"**/Database/Migrations/**" |
||||
] |
||||
}, |
||||
"config": { |
||||
"optimize-autoloader": true, |
||||
"preferred-install": "dist", |
||||
"sort-packages": true |
||||
}, |
||||
"scripts": { |
||||
"test": "phpunit" |
||||
} |
||||
} |
@ -0,0 +1,143 @@
|
||||
#-------------------------------------------------------------------- |
||||
# Example Environment Configuration file |
||||
# |
||||
# This file can be used as a starting point for your own |
||||
# custom .env files, and contains most of the possible settings |
||||
# available in a default install. |
||||
# |
||||
# By default, all of the settings are commented out. If you want |
||||
# to override the setting, you must un-comment it by removing the '#' |
||||
# at the beginning of the line. |
||||
#-------------------------------------------------------------------- |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# ENVIRONMENT |
||||
#-------------------------------------------------------------------- |
||||
|
||||
CI_ENVIRONMENT = development |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# APP |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# app.baseURL = '' |
||||
# If you have trouble with `.`, you could also use `_`. |
||||
# app_baseURL = '' |
||||
# app.forceGlobalSecureRequests = false |
||||
# app.CSPEnabled = false |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# DATABASE |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# database.default.hostname = localhost |
||||
# database.default.database = ci4 |
||||
# database.default.username = root |
||||
# database.default.password = root |
||||
# database.default.DBDriver = MySQLi |
||||
# database.default.DBPrefix = |
||||
# database.default.port = 3306 |
||||
|
||||
# database.tests.hostname = localhost |
||||
# database.tests.database = ci4_test |
||||
# database.tests.username = root |
||||
# database.tests.password = root |
||||
# database.tests.DBDriver = MySQLi |
||||
# database.tests.DBPrefix = |
||||
# database.tests.port = 3306 |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# CONTENT SECURITY POLICY |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# contentsecuritypolicy.reportOnly = false |
||||
# contentsecuritypolicy.defaultSrc = 'none' |
||||
# contentsecuritypolicy.scriptSrc = 'self' |
||||
# contentsecuritypolicy.styleSrc = 'self' |
||||
# contentsecuritypolicy.imageSrc = 'self' |
||||
# contentsecuritypolicy.baseURI = null |
||||
# contentsecuritypolicy.childSrc = null |
||||
# contentsecuritypolicy.connectSrc = 'self' |
||||
# contentsecuritypolicy.fontSrc = null |
||||
# contentsecuritypolicy.formAction = null |
||||
# contentsecuritypolicy.frameAncestors = null |
||||
# contentsecuritypolicy.frameSrc = null |
||||
# contentsecuritypolicy.mediaSrc = null |
||||
# contentsecuritypolicy.objectSrc = null |
||||
# contentsecuritypolicy.pluginTypes = null |
||||
# contentsecuritypolicy.reportURI = null |
||||
# contentsecuritypolicy.sandbox = false |
||||
# contentsecuritypolicy.upgradeInsecureRequests = false |
||||
# contentsecuritypolicy.styleNonceTag = '{csp-style-nonce}' |
||||
# contentsecuritypolicy.scriptNonceTag = '{csp-script-nonce}' |
||||
# contentsecuritypolicy.autoNonce = true |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# COOKIE |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# cookie.prefix = '' |
||||
# cookie.expires = 0 |
||||
# cookie.path = '/' |
||||
# cookie.domain = '' |
||||
# cookie.secure = false |
||||
# cookie.httponly = false |
||||
# cookie.samesite = 'Lax' |
||||
# cookie.raw = false |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# ENCRYPTION |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# encryption.key = |
||||
# encryption.driver = OpenSSL |
||||
# encryption.blockSize = 16 |
||||
# encryption.digest = SHA512 |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# HONEYPOT |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# honeypot.hidden = 'true' |
||||
# honeypot.label = 'Fill This Field' |
||||
# honeypot.name = 'honeypot' |
||||
# honeypot.template = '<label>{label}</label><input type="text" name="{name}" value=""/>' |
||||
# honeypot.container = '<div style="display:none">{template}</div>' |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# SECURITY |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# security.csrfProtection = 'cookie' |
||||
# security.tokenRandomize = false |
||||
# security.tokenName = 'csrf_token_name' |
||||
# security.headerName = 'X-CSRF-TOKEN' |
||||
# security.cookieName = 'csrf_cookie_name' |
||||
# security.expires = 7200 |
||||
# security.regenerate = true |
||||
# security.redirect = false |
||||
# security.samesite = 'Lax' |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# SESSION |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# session.driver = 'CodeIgniter\Session\Handlers\FileHandler' |
||||
# session.cookieName = 'ci_session' |
||||
# session.expiration = 7200 |
||||
# session.savePath = null |
||||
# session.matchIP = false |
||||
# session.timeToUpdate = 300 |
||||
# session.regenerateDestroy = false |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# LOGGER |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# logger.threshold = 4 |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# CURLRequest |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# curlrequest.shareOptions = false |
@ -0,0 +1,87 @@
|
||||
<?php |
||||
|
||||
// Check PHP version. |
||||
$minPhpVersion = '7.4'; // If you update this, don't forget to update `spark`. |
||||
if (version_compare(PHP_VERSION, $minPhpVersion, '<')) { |
||||
$message = sprintf( |
||||
'Your PHP version must be %s or higher to run CodeIgniter. Current version: %s', |
||||
$minPhpVersion, |
||||
PHP_VERSION |
||||
); |
||||
|
||||
exit($message); |
||||
} |
||||
|
||||
// Path to the front controller (this file) |
||||
define('FCPATH', __DIR__ . DIRECTORY_SEPARATOR); |
||||
|
||||
// Ensure the current directory is pointing to the front controller's directory |
||||
if (getcwd() . DIRECTORY_SEPARATOR !== FCPATH) { |
||||
chdir(FCPATH); |
||||
} |
||||
|
||||
/* |
||||
*--------------------------------------------------------------- |
||||
* BOOTSTRAP THE APPLICATION |
||||
*--------------------------------------------------------------- |
||||
* This process sets up the path constants, loads and registers |
||||
* our autoloader, along with Composer's, loads our constants |
||||
* and fires up an environment-specific bootstrapping. |
||||
*/ |
||||
|
||||
// Load our paths config file |
||||
// This is the line that might need to be changed, depending on your folder structure. |
||||
require FCPATH . 'app/Config/Paths.php'; |
||||
// ^^^ Change this line if you move your application folder |
||||
|
||||
$paths = new Config\Paths(); |
||||
|
||||
// Location of the framework bootstrap file. |
||||
require rtrim($paths->systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; |
||||
|
||||
// Load environment settings from .env files into $_SERVER and $_ENV |
||||
require_once SYSTEMPATH . 'Config/DotEnv.php'; |
||||
(new CodeIgniter\Config\DotEnv(ROOTPATH))->load(); |
||||
|
||||
// Define ENVIRONMENT |
||||
if (!defined('ENVIRONMENT')) { |
||||
define('ENVIRONMENT', env('CI_ENVIRONMENT', 'production')); |
||||
} |
||||
|
||||
// Load Config Cache |
||||
// $factoriesCache = new \CodeIgniter\Cache\FactoriesCache(); |
||||
// $factoriesCache->load('config'); |
||||
// ^^^ Uncomment these lines if you want to use Config Caching. |
||||
|
||||
/* |
||||
* --------------------------------------------------------------- |
||||
* GRAB OUR CODEIGNITER INSTANCE |
||||
* --------------------------------------------------------------- |
||||
* |
||||
* The CodeIgniter class contains the core functionality to make |
||||
* the application run, and does all the dirty work to get |
||||
* the pieces all working together. |
||||
*/ |
||||
|
||||
$app = Config\Services::codeigniter(); |
||||
$app->initialize(); |
||||
$context = is_cli() ? 'php-cli' : 'web'; |
||||
$app->setContext($context); |
||||
|
||||
/* |
||||
*--------------------------------------------------------------- |
||||
* LAUNCH THE APPLICATION |
||||
*--------------------------------------------------------------- |
||||
* Now that everything is set up, it's time to actually fire |
||||
* up the engines and make this app do its thang. |
||||
*/ |
||||
|
||||
$app->run(); |
||||
|
||||
// Save Config Cache |
||||
// $factoriesCache->save('config'); |
||||
// ^^^ Uncomment this line if you want to use Config Caching. |
||||
|
||||
// Exits the application, setting the exit code for CLI-based applications |
||||
// that might be watching. |
||||
exit(EXIT_SUCCESS); |
@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
bootstrap="system/Test/bootstrap.php" |
||||
backupGlobals="false" |
||||
colors="true" |
||||
convertErrorsToExceptions="true" |
||||
convertNoticesToExceptions="true" |
||||
convertWarningsToExceptions="true" |
||||
stopOnError="false" |
||||
stopOnFailure="false" |
||||
stopOnIncomplete="false" |
||||
stopOnSkipped="false" |
||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
||||
<coverage includeUncoveredFiles="true" processUncoveredFiles="true"> |
||||
<include> |
||||
<directory suffix=".php">./app</directory> |
||||
</include> |
||||
<exclude> |
||||
<directory suffix=".php">./app/Views</directory> |
||||
<file>./app/Config/Routes.php</file> |
||||
</exclude> |
||||
<report> |
||||
<clover outputFile="build/logs/clover.xml"/> |
||||
<html outputDirectory="build/logs/html"/> |
||||
<php outputFile="build/logs/coverage.serialized"/> |
||||
<text outputFile="php://stdout" showUncoveredFiles="false"/> |
||||
</report> |
||||
</coverage> |
||||
<testsuites> |
||||
<testsuite name="App"> |
||||
<directory>./tests</directory> |
||||
</testsuite> |
||||
</testsuites> |
||||
<logging> |
||||
<testdoxHtml outputFile="build/logs/testdox.html"/> |
||||
<testdoxText outputFile="build/logs/testdox.txt"/> |
||||
<junit outputFile="build/logs/logfile.xml"/> |
||||
</logging> |
||||
<php> |
||||
<server name="app.baseURL" value="http://example.com/"/> |
||||
<!-- Directory containing phpunit.xml --> |
||||
<const name="HOMEPATH" value="./"/> |
||||
<!-- Directory containing the Paths config file --> |
||||
<const name="CONFIGPATH" value="./app/Config/"/> |
||||
<!-- Directory containing the front controller (index.php) --> |
||||
<const name="PUBLICPATH" value="./public/"/> |
||||
<!-- Database configuration --> |
||||
<!-- Uncomment to provide your own database for testing |
||||
<env name="database.tests.hostname" value="localhost"/> |
||||
<env name="database.tests.database" value="tests"/> |
||||
<env name="database.tests.username" value="tests_user"/> |
||||
<env name="database.tests.password" value=""/> |
||||
<env name="database.tests.DBDriver" value="MySQLi"/> |
||||
<env name="database.tests.DBPrefix" value="tests_"/> |
||||
--> |
||||
</php> |
||||
</phpunit> |
@ -0,0 +1,113 @@
|
||||
<?php |
||||
|
||||
/** |
||||
* This file is part of CodeIgniter 4 framework. |
||||
* |
||||
* (c) CodeIgniter Foundation <admin@codeigniter.com> |
||||
* |
||||
* For the full copyright and license information, please view |
||||
* the LICENSE file that was distributed with this source code. |
||||
*/ |
||||
|
||||
/* |
||||
*--------------------------------------------------------------- |
||||
* Sample file for Preloading |
||||
*--------------------------------------------------------------- |
||||
* See https://www.php.net/manual/en/opcache.preloading.php |
||||
* |
||||
* How to Use: |
||||
* 0. Copy this file to your project root folder. |
||||
* 1. Set the $paths property of the preload class below. |
||||
* 2. Set opcache.preload in php.ini. |
||||
* php.ini: |
||||
* opcache.preload=/path/to/preload.php |
||||
*/ |
||||
|
||||
// Load the paths config file |
||||
require __DIR__ . '/app/Config/Paths.php'; |
||||
|
||||
// Path to the front controller |
||||
define('FCPATH', __DIR__ . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR); |
||||
|
||||
/** |
||||
* See https://www.php.net/manual/en/function.str-contains.php#126277 |
||||
*/ |
||||
if (! function_exists('str_contains')) { |
||||
/** |
||||
* Polyfill of str_contains() |
||||
*/ |
||||
function str_contains(string $haystack, string $needle): bool |
||||
{ |
||||
return empty($needle) || strpos($haystack, $needle) !== false; |
||||
} |
||||
} |
||||
|
||||
class preload |
||||
{ |
||||
/** |
||||
* @var array Paths to preload. |
||||
*/ |
||||
private array $paths = [ |
||||
[ |
||||
'include' => __DIR__ . '/vendor/codeigniter4/framework/system', |
||||
'exclude' => [ |
||||
// Not needed if you don't use them. |
||||
'/system/Database/OCI8/', |
||||
'/system/Database/Postgre/', |
||||
'/system/Database/SQLSRV/', |
||||
// Not needed. |
||||
'/system/Database/Seeder.php', |
||||
'/system/Test/', |
||||
'/system/Language/', |
||||
'/system/CLI/', |
||||
'/system/Commands/', |
||||
'/system/Publisher/', |
||||
'/system/ComposerScripts.php', |
||||
'/Views/', |
||||
// Errors occur. |
||||
'/system/Config/Routes.php', |
||||
'/system/ThirdParty/', |
||||
], |
||||
], |
||||
]; |
||||
|
||||
public function __construct() |
||||
{ |
||||
$this->loadAutoloader(); |
||||
} |
||||
|
||||
private function loadAutoloader() |
||||
{ |
||||
$paths = new Config\Paths(); |
||||
require rtrim($paths->systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; |
||||
} |
||||
|
||||
/** |
||||
* Load PHP files. |
||||
*/ |
||||
public function load() |
||||
{ |
||||
foreach ($this->paths as $path) { |
||||
$directory = new RecursiveDirectoryIterator($path['include']); |
||||
$fullTree = new RecursiveIteratorIterator($directory); |
||||
$phpFiles = new RegexIterator( |
||||
$fullTree, |
||||
'/.+((?<!Test)+\.php$)/i', |
||||
RecursiveRegexIterator::GET_MATCH |
||||
); |
||||
|
||||
foreach ($phpFiles as $key => $file) { |
||||
foreach ($path['exclude'] as $exclude) { |
||||
if (str_contains($file[0], $exclude)) { |
||||
continue 2; |
||||
} |
||||
} |
||||
|
||||
require_once $file[0]; |
||||
echo 'Loaded: ' . $file[0] . "\n"; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
(new preload())->load(); |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 814 B |
After Width: | Height: | Size: 419 B |
@ -0,0 +1,202 @@
|
||||
! function(e, s, i) { |
||||
"use strict"; |
||||
i(s).ready(function() { |
||||
function a(e, s) { |
||||
e.children(".submenu-content").show().slideUp(200, function() { |
||||
i(this).css("display", ""), i(this).find(".menu-item").removeClass("is-shown"), e.removeClass("open"), s && s() |
||||
}) |
||||
} |
||||
var n = i(".app-sidebar"), |
||||
t = i(".sidebar-content"), |
||||
l = i(".wrapper"), |
||||
o = s.querySelector(".sidebar-content"); |
||||
new PerfectScrollbar(o, { |
||||
wheelSpeed: 10, |
||||
wheelPropagation: !0, |
||||
minScrollbarLength: 5 |
||||
}); |
||||
t.on("click", ".navigation-main .nav-item a", function() { |
||||
var e = i(this).parent(".nav-item"); |
||||
if (e.hasClass("has-sub") && e.hasClass("open")) a(e); |
||||
else { |
||||
if (e.hasClass("has-sub") && function(e, s) { |
||||
var a = e.children(".submenu-content"), |
||||
n = a.children(".menu-item").addClass("is-hidden"); |
||||
e.addClass("open"), a.hide().slideDown(200, function() { |
||||
i(this).css("display", ""), s && s() |
||||
}), setTimeout(function() { |
||||
n.addClass("is-shown"), n.removeClass("is-hidden") |
||||
}, 0) |
||||
}(e), t.data("collapsible")) return !1; |
||||
a(e.siblings(".open")), e.siblings(".open").find(".nav-item.open").removeClass("open") |
||||
} |
||||
}), i(".nav-toggle").on("click", function() { |
||||
var e = i(this).find(".toggle-icon"); |
||||
"expanded" === e.attr("data-toggle") ? (l.addClass("nav-collapsed"), i(".nav-toggle").find(".toggle-icon").removeClass("ik-toggle-right").addClass("ik-toggle-left"), e.attr("data-toggle", "collapsed")) : (l.removeClass("nav-collapsed menu-collapsed"), i(".nav-toggle").find(".toggle-icon").removeClass("ik-toggle-left").addClass("ik-toggle-right"), e.attr("data-toggle", "expanded")) |
||||
}), n.on("mouseenter", function() { |
||||
if (l.hasClass("nav-collapsed")) { |
||||
l.removeClass("menu-collapsed"); |
||||
var e = i(".navigation-main .nav-item.nav-collapsed-open"); |
||||
e.children(".submenu-content").hide().slideDown(300, function() { |
||||
i(this).css("display", "") |
||||
}), t.find(".nav-item.active").parents(".nav-item").addClass("open"), e.addClass("open").removeClass("nav-collapsed-open") |
||||
} |
||||
}).on("mouseleave", function(e) { |
||||
if (l.hasClass("nav-collapsed")) { |
||||
l.addClass("menu-collapsed"); |
||||
var s = i(".navigation-main .nav-item.open"), |
||||
a = s.children(".submenu-content"); |
||||
s.addClass("nav-collapsed-open"), a.show().slideUp(300, function() { |
||||
i(this).css("display", "") |
||||
}), s.removeClass("open") |
||||
} |
||||
}), i(e).width() < 992 && (n.addClass("hide-sidebar"), l.removeClass("nav-collapsed menu-collapsed")), i(e).resize(function() { |
||||
i(e).width() < 992 && (n.addClass("hide-sidebar"), l.removeClass("nav-collapsed menu-collapsed")), i(e).width() > 992 && (n.removeClass("hide-sidebar"), "collapsed" === i(".toggle-icon").attr("data-toggle") && l.not(".nav-collapsed menu-collapsed") && l.addClass("nav-collapsed menu-collapsed")) |
||||
}), i(s).on("click", ".navigation li:not(.has-sub)", function() { |
||||
i(e).width() < 992 && n.addClass("hide-sidebar") |
||||
}), i(s).on("click", ".logo-text", function() { |
||||
i(e).width() < 992 && n.addClass("hide-sidebar") |
||||
}), i(".mobile-nav-toggle").on("click", function(e) { |
||||
e.stopPropagation(), n.toggleClass("hide-sidebar") |
||||
}), i("html").on("click", function(s) { |
||||
i(e).width() < 992 && (n.hasClass("hide-sidebar") || 0 !== n.has(s.target).length || n.addClass("hide-sidebar")) |
||||
}), i("#sidebarClose").on("click", function() { |
||||
n.addClass("hide-sidebar") |
||||
}), i('[data-toggle="tooltip"]').tooltip(), i("#checkbox_select_all").on("click", function() { |
||||
for (var e = s.getElementsByName("item_checkbox"), a = 0; a < e.length; a++) "checkbox" == e[a].type && (e[a].checked = !0), i(e).parent().parent().addClass("selected") |
||||
}), i("#checkbox_deselect_all").on("click", function() { |
||||
for (var e = s.getElementsByName("item_checkbox"), a = 0; a < e.length; a++) "checkbox" == e[a].type && (e[a].checked = !1), i(e).parent().parent().removeClass("selected") |
||||
}), i("#quick-search").keyup(function() { |
||||
var e = i(this).val().trim().toLowerCase(); |
||||
i(".app-item").hide().filter(function() { |
||||
return -1 != i(this).html().trim().toLowerCase().indexOf(e) |
||||
}).show() |
||||
}), i(".list-item input:checkbox").change(function() { |
||||
i(this).is(":checked") ? i(this).parent().parent().addClass("selected") : i(this).parent().parent().removeClass("selected") |
||||
}), i("#navbar-fullscreen").on("click", function(e) { |
||||
"undefined" != typeof screenfull && screenfull.enabled && screenfull.toggle() |
||||
}), i("#selectall").click(function() { |
||||
i(this).is(":checked") ? i(".select_all_child:checkbox").attr("checked", !0) : i(".select_all_child:checkbox").attr("checked", !1) |
||||
}), i(".list-item-wrap .list-item .list-title a").on("click", function(e) { |
||||
i(".list-item.quick-view-opened").not(this).removeClass("quick-view-opened"), i(this).parents().parent(".list-item").toggleClass("quick-view-opened") |
||||
}), i(s).on("click", function(e) { |
||||
i(e.target).closest(".list-item").length || i(".list-item").removeClass("quick-view-opened") |
||||
}), "undefined" != typeof screenfull && screenfull.enabled && i(s).on(screenfull.raw.fullscreenchange, function() { |
||||
screenfull.isFullscreen ? i("#navbar-fullscreen").find("i").toggleClass("ik-minimize ik-maximize") : i("#navbar-fullscreen").find("i").toggleClass("ik-maximize ik-minimize") |
||||
}), i(".minimize-widget").on("click", function() { |
||||
var e = i(this), |
||||
s = i(e.parents(".widget")); |
||||
i(s).children(".widget-body").slideToggle(); |
||||
i(this).toggleClass("ik-minus").fadeIn("slow"), i(this).toggleClass("ik-plus").fadeIn("slow") |
||||
}), i(".remove-widget").on("click", function() { |
||||
var e = i(this); |
||||
e.parents(".widget").animate({ |
||||
opacity: "0", |
||||
"-webkit-transform": "scale3d(.3, .3, .3)", |
||||
transform: "scale3d(.3, .3, .3)" |
||||
}), setTimeout(function() { |
||||
e.parents(".widget").remove() |
||||
}, 800) |
||||
}), i(".card-header-right .card-option .action-toggle").on("click", function() { |
||||
var e = i(this); |
||||
e.hasClass("ik-chevron-right") ? e.parents(".card-option").animate({ |
||||
width: "28px" |
||||
}) : e.parents(".card-option").animate({ |
||||
width: "90px" |
||||
}), i(this).toggleClass("ik-chevron-right").fadeIn("slow") |
||||
}), i(".card-header-right .close-card").on("click", function() { |
||||
var e = i(this); |
||||
e.parents(".card").animate({ |
||||
opacity: "0", |
||||
"-webkit-transform": "scale3d(.3, .3, .3)", |
||||
transform: "scale3d(.3, .3, .3)" |
||||
}), setTimeout(function() { |
||||
e.parents(".card").remove() |
||||
}, 800) |
||||
}), i(".card-header-right .minimize-card").on("click", function() { |
||||
var e = i(this), |
||||
s = i(e.parents(".card")); |
||||
i(s).children(".card-body").slideToggle(); |
||||
i(this).toggleClass("ik-minus").fadeIn("slow"), i(this).toggleClass("ik-plus").fadeIn("slow") |
||||
}), i(".task-list").on("click", "li.list", function() { |
||||
i(this).toggleClass("completed") |
||||
}), i(".search-btn").on('click', function() { |
||||
i(".header-search").addClass('open'); |
||||
i('.header-search .form-control').animate({ |
||||
'width': '200px', |
||||
}); |
||||
}), i(".search-close").on('click', function() { |
||||
i('.header-search .form-control').animate({ |
||||
'width': '0', |
||||
}); |
||||
setTimeout(function() { |
||||
i(".header-search").removeClass('open'); |
||||
}, 300); |
||||
}); |
||||
var ps = new PerfectScrollbar(".right-sidebar", { |
||||
wheelSpeed: 10, |
||||
wheelPropagation: true, |
||||
minScrollbarLength: 5 |
||||
}); |
||||
var ps = new PerfectScrollbar(".messages", { |
||||
wheelSpeed: 10, |
||||
wheelPropagation: true, |
||||
minScrollbarLength: 5 |
||||
}); |
||||
$(".right-sidebar-toggle").on("click",function(e) { |
||||
this.classList.toggle('active'); |
||||
$('.wrapper').toggleClass('right-sidebar-expand'); |
||||
return false; |
||||
}); |
||||
|
||||
document.addEventListener('click', function(event) { |
||||
var $rightSidebar = document.getElementsByClassName('right-sidebar')[0], |
||||
$chatPanel = document.getElementsByClassName('chat-panel')[0]; |
||||
var isInsideContainer = $rightSidebar.contains( event.target ) || $chatPanel.contains(event.target); |
||||
if( !isInsideContainer ) { |
||||
document.body.classList.remove('right-sidebar-expand'); |
||||
var toggle = document.getElementsByClassName('right-sidebar-toggle'); |
||||
for( var i = 0; i < toggle.length; i++ ) { |
||||
toggle[i].classList.remove('active'); |
||||
} |
||||
$chatPanel.hidden = 'hidden'; |
||||
} |
||||
}); |
||||
|
||||
var el = $('[data-plugin="chat-sidebar"]'); |
||||
if( !el.length ) return; |
||||
var chatList = el.find('.chat-list'); |
||||
chatList.each(function(index) { |
||||
var $this = $(this); |
||||
$(this).find('.list-group a').on('click', function() { |
||||
$this.find('.list-group a.active').removeClass('active'); |
||||
$(this).addClass('active'); |
||||
var el = $('.chat-panel'); |
||||
if(!el.length) return; |
||||
el.removeAttr('hidden'); |
||||
|
||||
var messages = el.find('.messages'); |
||||
messages[0].scrollTop = messages[0].scrollHeight; |
||||
if( messages[0].classList.contains('scrollbar-enabled') ) { |
||||
messages.perfectScrollbar('update'); |
||||
} |
||||
el.find('.user-name').html( $(this).data('chat-user')); |
||||
}); |
||||
}); |
||||
|
||||
var el = $('.chat-panel'); |
||||
if(!el.length) return; |
||||
el.find('.close').on('click', function(){ |
||||
el.attr('hidden', true); |
||||
el.find('.panel-body').removeClass('hide'); |
||||
}); |
||||
|
||||
el.find('.minimize').on('click', function(){ |
||||
el.find('.card-block').attr('hidden', !el.find('.card-block').attr('hidden') ); |
||||
if( el.find('.card-block').attr('hidden') === 'hidden' ) |
||||
$(this).find('.material-icons').html('expand_less'); |
||||
else |
||||
$(this).find('.material-icons').html('expand_more'); |
||||
}); |
||||
}) |
||||
}(window, document, jQuery); |
After Width: | Height: | Size: 356 KiB |
After Width: | Height: | Size: 119 KiB |
After Width: | Height: | Size: 243 KiB |
After Width: | Height: | Size: 347 KiB |