first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-06-18 14:00:40 -04:00
commit 0429395219
1222 changed files with 167593 additions and 0 deletions
+132
View File
@@ -0,0 +1,132 @@
#-------------------------
# Operating Specific Junk Files
#-------------------------
# OS X
.DS_Store
.AppleDouble
.LSOverride
apache_log
apache_log/*
# OS X Thumbnails
._*
# Windows image file caches
Thumbs.db
ehthumbs.db
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
# Linux
*~
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
#-------------------------
# Environment Files
#-------------------------
# These should never be under version control,
# as it poses a security risk.
.env
.vagrant
Vagrantfile
#-------------------------
# Temporary Files
#-------------------------
writable/cache/*
!writable/cache/index.html
writable/logs/*
!writable/logs/index.html
writable/session/*
!writable/session/index.html
writable/uploads/*
!writable/uploads/index.html
writable/debugbar/*
!writable/debugbar/.gitkeep
php_errors.log
#-------------------------
# User Guide Temp Files
#-------------------------
user_guide_src/build/*
user_guide_src/cilexer/build/*
user_guide_src/cilexer/dist/*
user_guide_src/cilexer/pycilexer.egg-info/*
#-------------------------
# Test Files
#-------------------------
tests/coverage*
# Don't save phpunit under version control.
phpunit
#-------------------------
# Composer
#-------------------------
vendor/
#-------------------------
# IDE / Development Files
#-------------------------
# Modules Testing
_modules/*
# phpenv local config
.php-version
# Jetbrains editors (PHPStorm, etc)
.idea/
*.iml
# Netbeans
nbproject/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
.nb-gradle/
# Sublime Text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
*.sublime-project
.phpintel
/api/
# Visual Studio Code
.vscode/
/results/
/phpunit*.xml
/.phpunit.*.cache
+22
View File
@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2014-2019 British Columbia Institute of Technology
Copyright (c) 2019-2024 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.
+60
View File
@@ -0,0 +1,60 @@
# 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.
You can read the [user guide](https://codeigniter.com/user_guide/)
corresponding to the latest version of the framework.
## 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 8.1 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.
> - The end of life date for PHP 8.0 was November 26, 2023.
> - If you are still using PHP 7.4 or 8.0, you should upgrade immediately.
> - The end of life date for PHP 8.1 will be December 31, 2025.
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
+6
View File
@@ -0,0 +1,6 @@
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>
+15
View File
@@ -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
*/
+202
View File
@@ -0,0 +1,202 @@
<?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:
*
* E.g., http://example.com/
*/
public string $baseURL = 'http://localhost:8080/';
/**
* 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 have configured your web server to remove this file
* from your site URIs, set this variable to an empty string.
*/
public string $indexPage = 'index.php';
/**
* --------------------------------------------------------------------------
* 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 = 'REQUEST_URI';
/*
|--------------------------------------------------------------------------
| Allowed URL Characters
|--------------------------------------------------------------------------
|
| This lets you specify which characters are permitted within your URLs.
| When someone tries to submit a URL with disallowed characters they will
| get a warning message.
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
| as few characters as possible.
|
| By default, only these are allowed: `a-z 0-9~%.:_-`
|
| Set an empty string to allow all characters -- but only if you are insane.
|
| The configured value is actually a regular expression character group
| and it will be used as: '/\A[<permittedURIChars>]+\z/iu'
|
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
*/
public string $permittedURIChars = 'a-z 0-9~%.:_\-';
/**
* --------------------------------------------------------------------------
* 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 list<string>
*/
public array $supportedLocales = ['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 = 'UTC';
/**
* --------------------------------------------------------------------------
* 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 (HSTS) 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 bool $CSPEnabled = false;
}
+94
View File
@@ -0,0 +1,94 @@
<?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 'Config' (APPPATH . 'Config') and 'CodeIgniter' (SYSTEMPATH) 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.
*
* @var array<string, list<string>|string>
*/
public $psr4 = [
APP_NAMESPACE => APPPATH,
];
/**
* -------------------------------------------------------------------
* 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 = [];
}
+34
View File
@@ -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);
+25
View File
@@ -0,0 +1,25 @@
<?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.
*/
error_reporting(E_ALL & ~E_DEPRECATED);
// If you want to suppress more types of errors.
// error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
ini_set('display_errors', '0');
/*
|--------------------------------------------------------------------------
| 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', false);
+38
View File
@@ -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 cant 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);
+20
View File
@@ -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;
}
+171
View File
@@ -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/';
/**
* --------------------------------------------------------------------------
* 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,
];
/**
* --------------------------------------------------------------------------
* Web Page Caching: 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|list<string>
*/
public $cacheQueryString = false;
}
+94
View File
@@ -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);
+176
View File
@@ -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 list<string>|string|null
*/
public $defaultSrc;
/**
* Lists allowed scripts' URLs.
*
* @var list<string>|string
*/
public $scriptSrc = 'self';
/**
* Lists allowed stylesheets' URLs.
*
* @var list<string>|string
*/
public $styleSrc = 'self';
/**
* Defines the origins from which images can be loaded.
*
* @var list<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 list<string>|string|null
*/
public $baseURI;
/**
* Lists the URLs for workers and embedded frame contents
*
* @var list<string>|string
*/
public $childSrc = 'self';
/**
* Limits the origins that you can connect to (via XHR,
* WebSockets, and EventSource).
*
* @var list<string>|string
*/
public $connectSrc = 'self';
/**
* Specifies the origins that can serve web fonts.
*
* @var list<string>|string
*/
public $fontSrc;
/**
* Lists valid endpoints for submission from `<form>` tags.
*
* @var list<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 list<string>|string|null
*/
public $frameAncestors;
/**
* The frame-src directive restricts the URLs which may
* be loaded into nested browsing contexts.
*
* @var list<string>|string|null
*/
public $frameSrc;
/**
* Restricts the origins allowed to deliver video and audio.
*
* @var list<string>|string|null
*/
public $mediaSrc;
/**
* Allows control over Flash and other plugins.
*
* @var list<string>|string
*/
public $objectSrc = 'self';
/**
* @var list<string>|string|null
*/
public $manifestSrc;
/**
* Limits the kinds of plugins a page may invoke.
*
* @var list<string>|string|null
*/
public $pluginTypes;
/**
* List of actions allowed.
*
* @var list<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;
}
+107
View File
@@ -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;
}
+105
View File
@@ -0,0 +1,105 @@
<?php
namespace Config;
use CodeIgniter\Config\BaseConfig;
/**
* Cross-Origin Resource Sharing (CORS) Configuration
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
*/
class Cors extends BaseConfig
{
/**
* The default CORS configuration.
*
* @var array{
* allowedOrigins: list<string>,
* allowedOriginsPatterns: list<string>,
* supportsCredentials: bool,
* allowedHeaders: list<string>,
* exposedHeaders: list<string>,
* allowedMethods: list<string>,
* maxAge: int,
* }
*/
public array $default = [
/**
* Origins for the `Access-Control-Allow-Origin` header.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
*
* E.g.:
* - ['http://localhost:8080']
* - ['https://www.example.com']
*/
'allowedOrigins' => [],
/**
* Origin regex patterns for the `Access-Control-Allow-Origin` header.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
*
* NOTE: A pattern specified here is part of a regular expression. It will
* be actually `#\A<pattern>\z#`.
*
* E.g.:
* - ['https://\w+\.example\.com']
*/
'allowedOriginsPatterns' => [],
/**
* Weather to send the `Access-Control-Allow-Credentials` header.
*
* The Access-Control-Allow-Credentials response header tells browsers whether
* the server allows cross-origin HTTP requests to include credentials.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Credentials
*/
'supportsCredentials' => false,
/**
* Set headers to allow.
*
* The Access-Control-Allow-Headers response header is used in response to
* a preflight request which includes the Access-Control-Request-Headers to
* indicate which HTTP headers can be used during the actual request.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers
*/
'allowedHeaders' => [],
/**
* Set headers to expose.
*
* The Access-Control-Expose-Headers response header allows a server to
* indicate which response headers should be made available to scripts running
* in the browser, in response to a cross-origin request.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers
*/
'exposedHeaders' => [],
/**
* Set methods to allow.
*
* The Access-Control-Allow-Methods response header specifies one or more
* methods allowed when accessing a resource in response to a preflight
* request.
*
* E.g.:
* - ['GET', 'POST', 'PUT', 'DELETE']
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Methods
*/
'allowedMethods' => [],
/**
* Set how many seconds the results of a preflight request can be cached.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age
*/
'maxAge' => 7200,
];
}
+201
View File
@@ -0,0 +1,201 @@
<?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.
*
* @var array<string, mixed>
*/
public array $default = [
'DSN' => '',
'hostname' => 'localhost',
'username' => '',
'password' => '',
'database' => '',
'DBDriver' => 'MySQLi',
'DBPrefix' => '',
'pConnect' => false,
'DBDebug' => true,
'charset' => 'utf8mb4',
'DBCollat' => 'utf8mb4_general_ci',
'swapPre' => '',
'encrypt' => false,
'compress' => false,
'strictOn' => false,
'failover' => [],
'port' => 3306,
'numberNative' => false,
'dateFormat' => [
'date' => 'Y-m-d',
'datetime' => 'Y-m-d H:i:s',
'time' => 'H:i:s',
],
];
// /**
// * Sample database connection for SQLite3.
// *
// * @var array<string, mixed>
// */
// public array $default = [
// 'database' => 'database.db',
// 'DBDriver' => 'SQLite3',
// 'DBPrefix' => '',
// 'DBDebug' => true,
// 'swapPre' => '',
// 'failover' => [],
// 'foreignKeys' => true,
// 'busyTimeout' => 1000,
// 'dateFormat' => [
// 'date' => 'Y-m-d',
// 'datetime' => 'Y-m-d H:i:s',
// 'time' => 'H:i:s',
// ],
// ];
// /**
// * Sample database connection for Postgre.
// *
// * @var array<string, mixed>
// */
// public array $default = [
// 'DSN' => '',
// 'hostname' => 'localhost',
// 'username' => 'root',
// 'password' => 'root',
// 'database' => 'ci4',
// 'schema' => 'public',
// 'DBDriver' => 'Postgre',
// 'DBPrefix' => '',
// 'pConnect' => false,
// 'DBDebug' => true,
// 'charset' => 'utf8',
// 'swapPre' => '',
// 'failover' => [],
// 'port' => 5432,
// 'dateFormat' => [
// 'date' => 'Y-m-d',
// 'datetime' => 'Y-m-d H:i:s',
// 'time' => 'H:i:s',
// ],
// ];
// /**
// * Sample database connection for SQLSRV.
// *
// * @var array<string, mixed>
// */
// public array $default = [
// 'DSN' => '',
// 'hostname' => 'localhost',
// 'username' => 'root',
// 'password' => 'root',
// 'database' => 'ci4',
// 'schema' => 'dbo',
// 'DBDriver' => 'SQLSRV',
// 'DBPrefix' => '',
// 'pConnect' => false,
// 'DBDebug' => true,
// 'charset' => 'utf8',
// 'swapPre' => '',
// 'encrypt' => false,
// 'failover' => [],
// 'port' => 1433,
// 'dateFormat' => [
// 'date' => 'Y-m-d',
// 'datetime' => 'Y-m-d H:i:s',
// 'time' => 'H:i:s',
// ],
// ];
// /**
// * Sample database connection for OCI8.
// *
// * You may need the following environment variables:
// * NLS_LANG = 'AMERICAN_AMERICA.UTF8'
// * NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
// * NLS_TIMESTAMP_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
// * NLS_TIMESTAMP_TZ_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
// *
// * @var array<string, mixed>
// */
// public array $default = [
// 'DSN' => 'localhost:1521/XEPDB1',
// 'username' => 'root',
// 'password' => 'root',
// 'DBDriver' => 'OCI8',
// 'DBPrefix' => '',
// 'pConnect' => false,
// 'DBDebug' => true,
// 'charset' => 'AL32UTF8',
// 'swapPre' => '',
// 'failover' => [],
// 'dateFormat' => [
// 'date' => 'Y-m-d',
// 'datetime' => 'Y-m-d H:i:s',
// 'time' => 'H:i:s',
// ],
// ];
/**
* This database connection is used when running PHPUnit database tests.
*
* @var array<string, mixed>
*/
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' => '',
'swapPre' => '',
'encrypt' => false,
'compress' => false,
'strictOn' => false,
'failover' => [],
'port' => 3306,
'foreignKeys' => true,
'busyTimeout' => 1000,
'dateFormat' => [
'date' => 'Y-m-d',
'datetime' => 'Y-m-d H:i:s',
'time' => 'H:i:s',
],
];
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';
}
}
}
+46
View File
@@ -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;
}
+121
View File
@@ -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;
}
+92
View File
@@ -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';
}
+55
View File
@@ -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();
});
}
}
});
+106
View File
@@ -0,0 +1,106 @@
<?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.
*
* @var list<int>
*/
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']
*
* @var list<string>
*/
public array $sensitiveDataInTrace = [];
/**
* --------------------------------------------------------------------------
* WHETHER TO THROW AN EXCEPTION ON DEPRECATED ERRORS
* --------------------------------------------------------------------------
* If set to `true`, DEPRECATED errors are only logged and no exceptions are
* thrown. 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);
}
}
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace Config;
use CodeIgniter\Config\BaseConfig;
/**
* Enable/disable backward compatibility breaking features.
*/
class Feature extends BaseConfig
{
/**
* Use improved new auto routing instead of the default legacy version.
*/
public bool $autoRoutesImproved = false;
/**
* Use filter execution order in 4.4 or before.
*/
public bool $oldFilterOrder = false;
/**
* The behavior of `limit(0)` in Query Builder.
*
* If true, `limit(0)` returns all records. (the behavior of 4.4.x or before in version 4.x.)
* If false, `limit(0)` returns no records. (the behavior of 3.1.9 or later in version 3.x.)
*/
public bool $limitZeroAsAll = true;
}
+107
View File
@@ -0,0 +1,107 @@
<?php
namespace Config;
use CodeIgniter\Config\Filters as BaseFilters;
use CodeIgniter\Filters\Cors;
use CodeIgniter\Filters\CSRF;
use CodeIgniter\Filters\DebugToolbar;
use CodeIgniter\Filters\ForceHTTPS;
use CodeIgniter\Filters\Honeypot;
use CodeIgniter\Filters\InvalidChars;
use CodeIgniter\Filters\PageCache;
use CodeIgniter\Filters\PerformanceMetrics;
use CodeIgniter\Filters\SecureHeaders;
class Filters extends BaseFilters
{
/**
* 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,
'cors' => Cors::class,
'forcehttps' => ForceHTTPS::class,
'pagecache' => PageCache::class,
'performance' => PerformanceMetrics::class,
];
/**
* List of special required filters.
*
* The filters listed here are special. They are applied before and after
* other kinds of filters, and always applied even if a route does not exist.
*
* Filters set by default provide framework functionality. If removed,
* those functions will no longer work.
*
* @see https://codeigniter.com/user_guide/incoming/filters.html#provided-filters
*
* @var array{before: list<string>, after: list<string>}
*/
public array $required = [
'before' => [
'forcehttps', // Force Global Secure Requests
'pagecache', // Web Page Caching
],
'after' => [
'pagecache', // Web Page Caching
'performance', // Performance Metrics
'toolbar', // Debug Toolbar
],
];
/**
* 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' => [
// '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.
*
* @var array<string, list<string>>
*/
public array $methods = [];
/**
* List of filter aliases that should run on any
* before or after URI patterns.
*
* Example:
* 'isLoggedIn' => ['before' => ['account/*', 'profiles/*']]
*
* @var array<string, array<string, list<string>>>
*/
public array $filters = [];
}
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace Config;
use CodeIgniter\Config\ForeignCharacters as BaseForeignCharacters;
/**
* @immutable
*/
class ForeignCharacters extends BaseForeignCharacters
{
}
+77
View File
@@ -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 list<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);
}
}
+44
View File
@@ -0,0 +1,44 @@
<?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, array<string, string>|string>
*/
public array $views = [
'make:cell' => [
'class' => 'CodeIgniter\Commands\Generators\Views\cell.tpl.php',
'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',
];
}
+42
View File
@@ -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';
}
+31
View File
@@ -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,
];
}
+65
View File
@@ -0,0 +1,65 @@
<?php
namespace Config;
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
{
/*
|--------------------------------------------------------------------------
| 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;
}
+150
View File
@@ -0,0 +1,150 @@
<?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 int|list<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.
*
* @var array<class-string, array<string, int|list<string>|string>>
*/
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,
// ],
];
}
+50
View File
@@ -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_';
}
+536
View File
@@ -0,0 +1,536 @@
<?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.
*
* @var array<string, list<string>|string>
*/
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;
}
}
+84
View File
@@ -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',
];
}
+32
View File
@@ -0,0 +1,32 @@
<?php
namespace Config;
/**
* Optimization Configuration.
*
* NOTE: This class does not extend BaseConfig for performance reasons.
* So you cannot replace the property values with Environment Variables.
*
* @immutable
*/
class Optimize
{
/**
* --------------------------------------------------------------------------
* Config Caching
* --------------------------------------------------------------------------
*
* @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching
*/
public bool $configCacheEnabled = false;
/**
* --------------------------------------------------------------------------
* Config Caching
* --------------------------------------------------------------------------
*
* @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching
*/
public bool $locatorCacheEnabled = false;
}
+37
View File
@@ -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;
}
+80
View File
@@ -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';
}
+28
View File
@@ -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',
];
}
+8
View File
@@ -0,0 +1,8 @@
<?php
use CodeIgniter\Router\RouteCollection;
/**
* @var RouteCollection $routes
*/
$routes->get('/', 'Home::index');
+140
View File
@@ -0,0 +1,140 @@
<?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
{
/**
* For Defined Routes.
* 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'
*
* @var list<string>
*/
public array $routeFiles = [
APPPATH . 'Config/Routes.php',
];
/**
* For Defined Routes and Auto Routing.
* The default namespace to use for Controllers when no other
* namespace has been specified.
*
* Default: 'App\Controllers'
*/
public string $defaultNamespace = 'App\Controllers';
/**
* For Auto Routing.
* The default controller to use when no other controller has been
* specified.
*
* Default: 'Home'
*/
public string $defaultController = 'Home';
/**
* For Defined Routes and Auto Routing.
* The default method to call on the controller when no other
* method has been set in the route.
*
* Default: 'index'
*/
public string $defaultMethod = 'index';
/**
* For Auto Routing.
* Whether to translate dashes in URIs for controller/method 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 the controller/method name like: 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
* 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;
/**
* For Defined Routes.
* If TRUE, will enable the use of the 'prioritize' option
* when defining routes.
*
* Default: false
*/
public bool $prioritize = false;
/**
* For Defined Routes.
* If TRUE, matched multiple URI segments will be passed as one parameter.
*
* Default: false
*/
public bool $multipleSegmentsOneParam = false;
/**
* For Auto Routing (Improved).
* Map of URI segments and namespaces.
*
* The key is the first URI segment. The value is the controller namespace.
* E.g.,
* [
* 'blog' => 'Acme\Blog\Controllers',
* ]
*
* @var array<string, string>
*/
public array $moduleRoutes = [];
/**
* For Auto Routing (Improved).
* Whether to translate dashes in URIs for controller/method to CamelCase.
* E.g., blog-controller -> BlogController
*
* If you enable this, $translateURIDashes is ignored.
*
* Default: false
*/
public bool $translateUriToCamelCase = false;
}
+103
View File
@@ -0,0 +1,103 @@
<?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.
*
* @see https://codeigniter4.github.io/userguide/libraries/security.html#redirection-on-failure
*/
public bool $redirect = (ENVIRONMENT === 'production');
/**
* --------------------------------------------------------------------------
* 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';
}
+32
View File
@@ -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();
* }
*/
}
+127
View File
@@ -0,0 +1,127 @@
<?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;
/**
* --------------------------------------------------------------------------
* Lock Retry Interval (microseconds)
* --------------------------------------------------------------------------
*
* This is used for RedisHandler.
*
* Time (microseconds) to wait if lock cannot be acquired.
* The default is 100,000 microseconds (= 0.1 seconds).
*/
public int $lockRetryInterval = 100_000;
/**
* --------------------------------------------------------------------------
* Lock Max Retries
* --------------------------------------------------------------------------
*
* This is used for RedisHandler.
*
* Maximum number of lock acquisition attempts.
* The default is 300 times. That is lock timeout is about 30 (0.1 * 300)
* seconds.
*/
public int $lockMaxRetries = 300;
}
+122
View File
@@ -0,0 +1,122 @@
<?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 list<class-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 collected. 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.
*
* @var list<string>
*/
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.
*
* @var list<string>
*/
public array $watchedExtensions = [
'php', 'css', 'js', 'html', 'svg', 'json', 'env',
];
}
+252
View File
@@ -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',
];
}
+44
View File
@@ -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 list<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
// --------------------------------------------------------------------
}
+62
View File
@@ -0,0 +1,62 @@
<?php
namespace Config;
use CodeIgniter\Config\View as BaseView;
use CodeIgniter\View\ViewDecoratorInterface;
/**
* @phpstan-type parser_callable (callable(mixed): mixed)
* @phpstan-type parser_callable_string (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, parser_callable_string>
*/
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, callable|list<string>|string>
* @phpstan-var array<string, list<parser_callable_string>|parser_callable_string|parser_callable>
*/
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 list<class-string<ViewDecoratorInterface>>
*/
public array $decorators = [];
}
+58
View File
@@ -0,0 +1,58 @@
<?php
namespace App\Controllers;
use CodeIgniter\Controller;
use CodeIgniter\HTTP\CLIRequest;
use CodeIgniter\HTTP\IncomingRequest;
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.
*/
abstract class BaseController extends Controller
{
/**
* Instance of the main Request object.
*
* @var CLIRequest|IncomingRequest
*/
protected $request;
/**
* An array of helpers to be loaded automatically upon
* class instantiation. These helpers will be available
* to all other controllers that extend BaseController.
*
* @var list<string>
*/
protected $helpers = [];
/**
* Be sure to declare properties for any property fetch you initialized.
* The creation of dynamic property is deprecated in PHP 8.2.
*/
// protected $session;
/**
* @return void
*/
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();
}
}
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
return view('welcome_message');
}
}
View File
View File
View File
View File
View File
+4
View File
@@ -0,0 +1,4 @@
<?php
// override core en language system validation or define your own en language validation message
return [];
View File
View File
View File
+7
View File
@@ -0,0 +1,7 @@
<?php
use CodeIgniter\CLI\CLI;
CLI::error('ERROR: ' . $code);
CLI::write($message);
CLI::newLine();
+65
View File
@@ -0,0 +1,65 @@
<?php
use CodeIgniter\CLI\CLI;
// The main Exception
CLI::write('[' . $exception::class . ']', 'light_gray', 'red');
CLI::write($message);
CLI::write('at ' . CLI::color(clean_path($exception->getFile()) . ':' . $exception->getLine(), 'green'));
CLI::newLine();
$last = $exception;
while ($prevException = $last->getPrevious()) {
$last = $prevException;
CLI::write(' Caused by:');
CLI::write(' [' . $prevException::class . ']', 'red');
CLI::write(' ' . $prevException->getMessage());
CLI::write(' at ' . CLI::color(clean_path($prevException->getFile()) . ':' . $prevException->getLine(), 'green'));
CLI::newLine();
}
// The backtrace
if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE) {
$backtraces = $last->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(static fn ($value) => match (true) {
is_object($value) => 'Object(' . $value::class . ')',
is_array($value) => count($value) ? '[...]' : '[]',
$value === null => 'null', // return the lowercased version
default => var_export($value, true),
}, array_values($error['args'] ?? [])));
$function .= '(' . $args . ')';
CLI::write($function);
CLI::newLine();
}
}
+5
View File
@@ -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';
+190
View File
@@ -0,0 +1,190 @@
:root {
--main-bg-color: #fff;
--main-text-color: #555;
--dark-text-color: #222;
--light-text-color: #c7c7c7;
--brand-primary-color: #E06E3F;
--light-bg-color: #ededee;
--dark-bg-color: #404040;
}
body {
height: 100%;
background: var(--main-bg-color);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
color: var(--main-text-color);
font-weight: 300;
margin: 0;
padding: 0;
}
h1 {
font-weight: lighter;
font-size: 3rem;
color: var(--dark-text-color);
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: var(--light-bg-color);
color: var(--dark-text-color);
}
.header .container {
padding: 1rem;
}
.header h1 {
font-size: 2.5rem;
font-weight: 500;
}
.header p {
font-size: 1.2rem;
margin: 0;
line-height: 2.5;
}
.header a {
color: var(--brand-primary-color);
margin-left: 2rem;
display: none;
text-decoration: none;
}
.header:hover a {
display: inline;
}
.environment {
background: var(--dark-bg-color);
color: var(--light-text-color);
text-align: center;
padding: 0.2rem;
}
.source {
background: #343434;
color: var(--light-text-color);
padding: 0.5em 1em;
border-radius: 5px;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 0.85rem;
margin: 0;
overflow-x: scroll;
}
.source span.line {
line-height: 1.4;
}
.source span.line .number {
color: #666;
}
.source .line .highlight {
display: block;
background: var(--dark-text-color);
color: var(--light-text-color);
}
.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: 0 1rem;
line-height: 2.7;
text-decoration: none;
color: var(--dark-text-color);
background: var(--light-bg-color);
border: 1px solid rgba(0,0,0,0.15);
border-bottom: 0;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
display: inline-block;
}
.tabs a:hover {
background: var(--light-bg-color);
border-color: rgba(0,0,0,0.15);
}
.tabs a.active {
background: var(--main-bg-color);
color: var(--main-text-color);
}
.tab-content {
background: var(--main-bg-color);
border: 1px solid rgba(0,0,0,0.15);
}
.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;
}
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: var(--light-bg-color);
padding: 0 1rem;
}
.trace td pre {
margin: 0;
}
.args {
display: none;
}
+116
View File
@@ -0,0 +1,116 @@
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;
}
+84
View File
@@ -0,0 +1,84 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><?= lang('Errors.pageNotFound') ?></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: normal;
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</h1>
<p>
<?php if (ENVIRONMENT !== 'production') : ?>
<?= nl2br(esc($message)) ?>
<?php else : ?>
<?= lang('Errors.sorryCannotFind') ?>
<?php endif; ?>
</p>
</div>
</body>
</html>
+430
View File
@@ -0,0 +1,430 @@
<?php
use CodeIgniter\HTTP\Header;
use Config\Services;
use CodeIgniter\CodeIgniter;
$errorId = uniqid('error', true);
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<title><?= esc($title) ?></title>
<style>
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
</style>
<script>
<?= file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.js') ?>
</script>
</head>
<body onload="init()">
<!-- Header -->
<div class="header">
<div class="environment">
Displayed at <?= esc(date('H:i:sa')) ?> &mdash;
PHP: <?= esc(PHP_VERSION) ?> &mdash;
CodeIgniter: <?= esc(CodeIgniter::CI_VERSION) ?> --
Environment: <?= ENVIRONMENT ?>
</div>
<div class="container">
<h1><?= esc($title), esc($exception->getCode() ? ' #' . $exception->getCode() : '') ?></h1>
<p>
<?= nl2br(esc($exception->getMessage())) ?>
<a href="https://www.duckduckgo.com/?q=<?= urlencode($title . ' ' . preg_replace('#\'.*\'|".*"#Us', '', $exception->getMessage())) ?>"
rel="noreferrer" target="_blank">search &rarr;</a>
</p>
</div>
</div>
<!-- Source -->
<div class="container">
<p><b><?= esc(clean_path($file)) ?></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">
<?php
$last = $exception;
while ($prevException = $last->getPrevious()) {
$last = $prevException;
?>
<pre>
Caused by:
<?= esc($prevException::class), esc($prevException->getCode() ? ' #' . $prevException->getCode() : '') ?>
<?= nl2br(esc($prevException->getMessage())) ?>
<a href="https://www.duckduckgo.com/?q=<?= urlencode($prevException::class . ' ' . preg_replace('#\'.*\'|".*"#Us', '', $prevException->getMessage())) ?>"
rel="noreferrer" target="_blank">search &rarr;</a>
<?= esc(clean_path($prevException->getFile()) . ':' . $prevException->getLine()) ?>
</pre>
<?php
}
?>
</div>
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE) : ?>
<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>
</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'] . ' ' . clean_path($row['file']));
} else {
echo esc(clean_path($row['file']) . ' : ' . $row['line']);
}
?>
<?php else: ?>
{PHP internal code}
<?php endif; ?>
<!-- Class/Method -->
<?php if (isset($row['class'])) : ?>
&nbsp;&nbsp;&mdash;&nbsp;&nbsp;<?= esc($row['class'] . $row['type'] . $row['function']) ?>
<?php if (! empty($row['args'])) : ?>
<?php $argsId = $errorId . 'args' . $index ?>
( <a href="#" onclick="return toggle('<?= esc($argsId, 'attr') ?>');">arguments</a> )
<div class="args" id="<?= esc($argsId, 'attr') ?>">
<table cellspacing="0">
<?php
$params = null;
// Reflection by name is not available for closure function
if (! str_ends_with($row['function'], '}')) {
$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'])) : ?>
&nbsp;&nbsp;&mdash;&nbsp;&nbsp; <?= 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 = Services::request(); ?>
<table>
<tbody>
<tr>
<td style="width: 10em">Path</td>
<td><?= esc($request->getUri()) ?></td>
</tr>
<tr>
<td>HTTP Method</td>
<td><?= esc($request->getMethod()) ?></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->headers(); ?>
<?php if (! empty($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>
<?php
if ($value instanceof Header) {
echo esc($value->getValueLine(), 'html');
} else {
foreach ($value as $i => $header) {
echo ' ('. $i+1 . ') ' . esc($header->getValueLine(), 'html');
}
}
?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
</div>
<!-- Response -->
<?php
$response = 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->getReasonPhrase()) ?></td>
</tr>
</table>
<?php $headers = $response->headers(); ?>
<?php if (! empty($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>
<?php
if ($value instanceof Header) {
echo esc($response->getHeaderLine($name), 'html');
} else {
foreach ($value as $i => $header) {
echo ' ('. $i+1 . ') ' . esc($header->getValueLine(), '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(clean_path($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 -->
<?php endif; ?>
</body>
</html>
+25
View File
@@ -0,0 +1,25 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<title><?= lang('Errors.whoops') ?></title>
<style>
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
</style>
</head>
<body>
<div class="container text-center">
<h1 class="headline"><?= lang('Errors.whoops') ?></h1>
<p class="lead"><?= lang('Errors.weHitASnag') ?></p>
</div>
</body>
</html>
+808
View File
@@ -0,0 +1,808 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HealthRader - Software and App Landing Pages HTML Template</title>
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/all.min.css">
<link rel="stylesheet" href="./assets/css/animate.css">
<link rel="stylesheet" href="./assets/css/nice-select.css">
<link rel="stylesheet" href="./assets/css/owl.min.css">
<link rel="stylesheet" href="./assets/css/jquery-ui.min.css">
<link rel="stylesheet" href="./assets/css/magnific-popup.css">
<link rel="stylesheet" href="./assets/css/flaticon.css">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon">
</head>
<body>
<!--============= ScrollToTop Section Starts Here =============-->
<div class="preloader">
<div class="preloader-inner">
<div class="preloader-icon">
<span></span>
<span></span>
</div>
</div>
</div>
<a href="#0" class="scrollToTop"><i class="fas fa-angle-up"></i></a>
<div class="overlay"></div>
<!--============= ScrollToTop Section Ends Here =============-->
<!--============= Header Section Starts Here =============-->
<header class="header-section header-cl-black">
<div class="container">
<div class="header-wrapper">
<div class="logo">
<a href="index.html">
<img src="./assets/images/logo/logo2.png" alt="logo">
</a>
</div>
<ul class="menu">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/">Blog</a>
</li>
<li>
<a href="/">Contact</a>
</li>
<li class="d-sm-none">
<a href="#0" class="m-0 header-button">Get HealthRader</a>
</li>
</ul>
<div class="header-bar d-lg-none">
<span></span>
<span></span>
<span></span>
</div>
<div class="header-right">
<select class="select-bar">
<option value="en">En</option>
<option value="Bn">Bn</option>
<option value="pk">Pk</option>
<option value="Fr">Fr</option>
</select>
<a href="#0" class="header-button d-none d-sm-inline-block">Get HealthRader</a>
</div>
</div>
</div>
</header>
<!--============= Header Section Ends Here =============-->
<!--============= Banner Section Starts Here =============-->
<section class="banner-20 pos-rel oh bg_img" data-background="./assets/images/extra-2/banner/banner-bg-20.jpg">
<div class="container">
<div class="row flex-wrap-reverse align-items-center justify-content-lg-between">
<div class="col-lg-5">
<div class="banner-thumb-20 rtl">
<img src="./assets/images/extra-2/banner/banner-20.png" alt="extra-2/banner">
<a href="https://www.youtube.com/watch?v=Djz8Nc0Qxwk" class="video-button popup">
<i class="flaticon-play"></i></a>
</div>
</div>
<div class="col-lg-6 p-lg-0">
<div class="banner-content-20">
<h1 class="title">The Most
Intuitive App
For Your Needs</h1>
<p>
A simple, yet effective way to be more productive
</p>
<a href="#0" class="button-4">Get Started</a>
</div>
</div>
</div>
</div>
</section>
<!--============= Banner Section Ends Here =============-->
<!--============= Logo Slider Section Starts Here =============-->
<section class="logo-slider-section section-bg padding-bottom padding-top">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10 text-center mb-4 mb-lg-5">
<h5 class="title">Trusted by the World's Best Team</h5>
</div>
</div>
<div class="logo-slider owl-theme owl-carousel">
<div class="item">
<img src="./assets/images/banner/banner16/01.png" alt="banner">
</div>
<div class="item">
<img src="./assets/images/banner/banner16/02.png" alt="banner">
</div>
<div class="item">
<img src="./assets/images/banner/banner16/03.png" alt="banner">
</div>
<div class="item">
<img src="./assets/images/banner/banner16/04.png" alt="banner">
</div>
<div class="item">
<img src="./assets/images/banner/banner16/05.png" alt="banner">
</div>
<div class="item">
<img src="./assets/images/banner/banner16/06.png" alt="banner">
</div>
</div>
</div>
</section>
<!--============= Logo Slider Section Ends Here =============-->
<!--============= Feature Section Starts Here =============-->
<section class="feature-section ovelflow-hidden padding-bottom padding-top">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-9">
<div class="section-header mw-100">
<h5 class="cate">Features</h5>
<h2 class="title">Powerful features to Supercharge your productivity</h2>
<p class="mx-auto mw-540px">
Numerous features make it possible to customize the system in accordance with all your needs.
</p>
</div>
</div>
</div>
<div class="feature-wrapper-20">
<div class="feature-wrapper-bg-20 bg_img" data-background="./assets/images/extra-2/feature/feature-bg.png">
<div class="row align-items-center">
<div class="col-lg-6 d-none d-lg-block">
<div class="feature-thumb-20 rtl">
<img src="./assets/images/extra-2/feature/phone.png" alt="">
</div>
</div>
<div class="col-lg-6">
<div class="feature-content-20 cl-white">
<div class="feature-content-slider-20 owl-theme owl-carousel">
<div class="feature-content-item-20">
<div class="feature-content-icon-20">
<img src="./assets/images/extra-2/feature/01.png" alt="extra-2/feature">
</div>
<h3 class="title">
Seamless team-collaboration & task assignment
</h3>
<p>
Nunc eleifend ligula augue, quis varius diam aliquet id. Mauris rhoncus ex nec ultricies venenatis. Sed semper lacus efficitur metus scelerisque, ac tristique sapien aliquet.
</p>
</div>
<div class="feature-content-item-20">
<div class="feature-content-icon-20">
<img src="./assets/images/extra-2/feature/01.png" alt="extra-2/feature">
</div>
<h3 class="title">
Seamless team-collaboration & task assignment
</h3>
<p>
Nunc eleifend ligula augue, quis varius diam aliquet id. Mauris rhoncus ex nec ultricies venenatis. Sed semper lacus efficitur metus scelerisque, ac tristique sapien aliquet.
</p>
</div>
<div class="feature-content-item-20">
<div class="feature-content-icon-20">
<img src="./assets/images/extra-2/feature/01.png" alt="extra-2/feature">
</div>
<h3 class="title">
Seamless team-collaboration & task assignment
</h3>
<p>
Nunc eleifend ligula augue, quis varius diam aliquet id. Mauris rhoncus ex nec ultricies venenatis. Sed semper lacus efficitur metus scelerisque, ac tristique sapien aliquet.
</p>
</div>
<div class="feature-content-item-20">
<div class="feature-content-icon-20">
<img src="./assets/images/extra-2/feature/01.png" alt="extra-2/feature">
</div>
<h3 class="title">
Seamless team-collaboration & task assignment
</h3>
<p>
Nunc eleifend ligula augue, quis varius diam aliquet id. Mauris rhoncus ex nec ultricies venenatis. Sed semper lacus efficitur metus scelerisque, ac tristique sapien aliquet.
</p>
</div>
</div>
<div class="feat-nav mt-4">
<a href="#0" class="feat-prev"><i class="flaticon-left"></i></a>
<a href="#0" class="feat-next active"><i class="flaticon-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--============= Feature Section Ends Here =============-->
<!--============= How Section Starts Here =============-->
<section class="how-section-20 ovelflow-hidden">
<div class="container">
<div class="row align-items-end">
<div class="col-lg-4 col-xl-3">
<div class="move-top--lg-70">
<div class="section-header left-style mb-olpo">
<h5 class="cate">How it works</h5>
<h2 class="title">Simple
Process
to Start</h2>
<p>It's easier than you think.
Follow 3 simple easy steps</p>
</div>
<div class="how-item-wrapper-20">
<div class="how-item-20">
<h6 class="title">Create an Account</h6>
<div class="how-thumb">
<img src="./assets/images/extra-2/how/1.png" alt="how">
</div>
</div>
<div class="how-item-20">
<h6 class="title">Configure</h6>
<div class="how-thumb">
<img src="./assets/images/extra-2/how/2.png" alt="how">
</div>
</div>
<div class="how-item-20">
<h6 class="title">Automation</h6>
<div class="how-thumb">
<img src="./assets/images/extra-2/how/3.png" alt="how">
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-xl-9">
<div class="how-slider-wrapper mt-4 mt-lg-0 ml--lg-78 mr--lg-65">
<div class="how-slider-20 owl-theme owl-carousel">
<div class="thumbs">
<img src="./assets/images/extra-2/feature/phone2.png" alt="extra-2/feature">
</div>
<div class="thumbs">
<img src="./assets/images/extra-2/feature/phone3.png" alt="extra-2/feature">
</div>
<div class="thumbs">
<img src="./assets/images/extra-2/feature/phone2.png" alt="extra-2/feature">
</div>
<div class="thumbs">
<img src="./assets/images/extra-2/feature/phone3.png" alt="extra-2/feature">
</div>
</div>
<div class="dots-2"></div>
</div>
</div>
</div>
</div>
</section>
<!--============= How Section Ends Here =============-->
<!--============= Pricing Section Starts Here =============-->
<section class="apps-screenshot-section-20 padding-top padding-bottom pb-max-lg-0 overflow-hidden position-relative">
<div class="app-screenshot-20 d-none d-lg-flex">
<img src="./assets/images/extra-2/screenshot/background.png" alt="extra-2/screenshot">
</div>
<div class="container">
<div class="row justify-content-lg-between justify-content-center align-items-center flex-wrap-reverse">
<div class="col-md-8 col-lg-7 col-xl-8">
<div class="app-screenshot-slider-20 owl-theme owl-carousel">
<div class="thumbs">
<img src="./assets/images/extra-2/screenshot/group1.png" alt="extra-2/screenshot">
</div>
<div class="thumbs">
<img src="./assets/images/extra-2/screenshot/group2.png" alt="extra-2/screenshot">
</div>
<div class="thumbs">
<img src="./assets/images/extra-2/screenshot/group1.png" alt="extra-2/screenshot">
</div>
</div>
</div>
<div class="col-lg-5 col-xl-4">
<div class="mb-3 mb-lg-0">
<div class="section-header left-style mb-olpo">
<h5 class="cate">A beautiful way to present</h5>
<h2 class="title">Your App
Screenshots</h2>
<p>The only app youll need to power your
life.App store screenshots are among the
main factors that drive app downloads.</p>
<div class="feat-nav mt-0">
<a href="#0" class="feat-prev"><i class="flaticon-left"></i></a>
<a href="#0" class="feat-next active"><i class="flaticon-right"></i></a>
</div>
</div>
<h6 class="title mb-4">Ready to get started?</h6>
<ul class="download-options justify-content-start download-option-20">
<li>
<a href="#0" class="active"><i class="fab fa-apple"></i></a>
<span>Android</span>
</li>
<li>
<a href="#0"><i class="fab fa-android"></i></a>
<span>ios</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--============= Pricing Section Starts Here =============-->
<!--============= Pricing Section Starts Here =============-->
<section class="pricing-section-20 body--bg position-relative padding-bottom padding-top">
<div class="container">
<div class="section-header">
<h5 class="cate">An Exhaustive list of Amazing Features</h5>
<h2 class="title">Simple,Affordable
Pricing Plans.</h2>
<p>
HealthRader has plans, from free to paid, that scale with your needs. Subscribe to a plan that fits the size of your business.
</p>
</div>
<div class="tab">
<ul class="tab-menu pricing-menu cl-black">
<li class="active">Monthly</li>
<li>Yearly</li>
</ul>
<div class="tab-area">
<div class="tab-item active">
<div class="row mb-30-none justify-content-center">
<div class="col-lg-4 col-md-6 col-sm-10">
<div class="pricing-item-20">
<div class="pricing-header">
<span class="name">BRONXE</span>
<h2 class="price"><sup>$</sup>15.99</h2>
<span class="info">Per Month</span>
</div>
<div class="pricing-body">
<ul>
<li>
10 projects
</li>
<li>
Unlimited hosted projects
</li>
<li>
Real-Time Feedback
</li>
<li>
Code export
</li>
<li>
24/7 Chat Support
</li>
</ul>
</div>
<div class="pricing-footer text-center">
<a href="#0" class="button-4">Get Started</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-10">
<div class="pricing-item-20">
<div class="pricing-header">
<span class="name">SILVER</span>
<h2 class="price"><sup>$</sup>35.99</h2>
<span class="info">Per Month</span>
</div>
<div class="pricing-body">
<ul>
<li>
10 projects
</li>
<li>
Unlimited hosted projects
</li>
<li>
Real-Time Feedback
</li>
<li>
Code export
</li>
<li>
24/7 Chat Support
</li>
</ul>
</div>
<div class="pricing-footer text-center">
<a href="#0" class="button-4">Get Started</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-10">
<div class="pricing-item-20">
<div class="pricing-header">
<span class="name">GOLD</span>
<h2 class="price"><sup>$</sup>65.99</h2>
<span class="info">Per Month</span>
</div>
<div class="pricing-body">
<ul>
<li>
10 projects
</li>
<li>
Unlimited hosted projects
</li>
<li>
Real-Time Feedback
</li>
<li>
Code export
</li>
<li>
24/7 Chat Support
</li>
</ul>
</div>
<div class="pricing-footer text-center">
<a href="#0" class="button-4">Get Started</a>
</div>
</div>
</div>
</div>
</div>
<div class="tab-item">
<div class="row mb-30-none justify-content-center">
<div class="col-lg-4 col-md-6 col-sm-10">
<div class="pricing-item-20">
<div class="pricing-header">
<span class="name">BRONXE</span>
<h2 class="price"><sup>$</sup>15.99</h2>
<span class="info">Per Month</span>
</div>
<div class="pricing-body">
<ul>
<li>
10 projects
</li>
<li>
Unlimited hosted projects
</li>
<li>
Real-Time Feedback
</li>
<li>
Code export
</li>
<li>
24/7 Chat Support
</li>
</ul>
</div>
<div class="pricing-footer text-center">
<a href="#0" class="button-4">Get Started</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-10">
<div class="pricing-item-20">
<div class="pricing-header">
<span class="name">SILVER</span>
<h2 class="price"><sup>$</sup>35.99</h2>
<span class="info">Per Month</span>
</div>
<div class="pricing-body">
<ul>
<li>
10 projects
</li>
<li>
Unlimited hosted projects
</li>
<li>
Real-Time Feedback
</li>
<li>
Code export
</li>
<li>
24/7 Chat Support
</li>
</ul>
</div>
<div class="pricing-footer text-center">
<a href="#0" class="button-4">Get Started</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-10">
<div class="pricing-item-20">
<div class="pricing-header">
<span class="name">GOLD</span>
<h2 class="price"><sup>$</sup>65.99</h2>
<span class="info">Per Month</span>
</div>
<div class="pricing-body">
<ul>
<li>
10 projects
</li>
<li>
Unlimited hosted projects
</li>
<li>
Real-Time Feedback
</li>
<li>
Code export
</li>
<li>
24/7 Chat Support
</li>
</ul>
</div>
<div class="pricing-footer text-center">
<a href="#0" class="button-4">Get Started</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--============= Pricing Section Ends Here =============-->
<!--============= Testimonial Section Starts Here =============-->
<section class="testimonial-section up--down--overflow section-bg padding-bottom padding-top">
<div class="container">
<div class="row flex-wrap-reverse align-items-center mb-30-none">
<div class="col-lg-6">
<div class="row align-items-center mb-30-none">
<div class="col-md-6">
<div class="review-item-20">
<div class="review-item-header">
<div class="thumb">
<img src="./assets/images/client/client03.png" alt="extra-2/client">
</div>
<div class="content">
<h6 class="title">Rudy Riley</h6>
<span class="info">CEO & Founder</span>
</div>
</div>
<div class="ratings">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
</div>
<blockquote>
“Always think outside the box and embrace opportunities that appear, wherever they might be.
</blockquote>
<strong>Awesome App!</strong>
</div>
<div class="review-item-20 active">
<div class="review-item-header">
<div class="thumb">
<img src="./assets/images/client/client02.png" alt="extra-2/client">
</div>
<div class="content">
<h6 class="title">Rudy Riley</h6>
<span class="info">CEO & Founder</span>
</div>
</div>
<div class="ratings">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
</div>
<blockquote>
“Always think outside the box and embrace opportunities that appear, wherever they might be.
</blockquote>
<strong>Awesome App!</strong>
</div>
<div class="review-item-20">
<div class="review-item-header">
<div class="thumb">
<img src="./assets/images/client/client01.png" alt="extra-2/client">
</div>
<div class="content">
<h6 class="title">Rudy Riley</h6>
<span class="info">CEO & Founder</span>
</div>
</div>
<div class="ratings">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
</div>
<blockquote>
“Always think outside the box and embrace opportunities that appear, wherever they might be.
</blockquote>
<strong>Awesome App!</strong>
</div>
</div>
<div class="col-md-6">
<div class="review-item-20">
<div class="review-item-header">
<div class="thumb">
<img src="./assets/images/client/client04.png" alt="extra-2/client">
</div>
<div class="content">
<h6 class="title">Rudy Riley</h6>
<span class="info">CEO & Founder</span>
</div>
</div>
<div class="ratings">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
</div>
<blockquote>
“Always think outside the box and embrace opportunities that appear, wherever they might be.
</blockquote>
<strong>Awesome App!</strong>
</div>
<div class="review-item-20">
<div class="review-item-header">
<div class="thumb">
<img src="./assets/images/client/client05.png" alt="extra-2/client">
</div>
<div class="content">
<h6 class="title">Rudy Riley</h6>
<span class="info">CEO & Founder</span>
</div>
</div>
<div class="ratings">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
</div>
<blockquote>
“Always think outside the box and embrace opportunities that appear, wherever they might be.
</blockquote>
<strong>Awesome App!</strong>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="mb-5 mb-lg-0">
<div class="section-header left-style mb-olpo">
<h5 class="cate">Testimonials</h5>
<h2 class="title">Dont just take our word for it!</h2>
<p>Thousands of professionals and business are already enjoying Apps. Hear what some of they are saying!</p>
</div>
<a href="#0" class="button-4">get started</a>
</div>
</div>
</div>
</div>
</section>
<!--============= Testimonial Section Ends Here =============-->
<!--============= Apps Download Section Starts Here =============-->
<section class="apps-download-section overflow-hidden padding-top padding-bottom body--bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-9">
<div class="section-header mw-100">
<h5 class="cate">An Exhaustive list of Amazing Features</h5>
<h2 class="title">Ready to take your productivity to the next level?</h2>
<p class="mx-auto mw-540px">
Are you ready to make the leap? Download Apps for iOS or Android today it's free.
</p>
</div>
</div>
</div>
<div class="apps-download-buttons-20">
<h6 class="title cl-white text-center mb-4">Ready to get started?</h6>
<ul class="download-options">
<li>
<a href="#0" class="active"><i class="fab fa-apple"></i></a>
<span class="cl-white">Android</span>
</li>
<li>
<a href="#0"><i class="fab fa-android"></i></a>
<span class="cl-white">ios</span>
</li>
</ul>
</div>
<div class="apps-download-screen-20">
<div class="apps-download-bg d-flex justify-content-center align-items-center">
<img src="./assets/images/extra-2/screenshot/mocup.png" alt="extra-2/screenshot">
</div>
<div class="apps-download-thumb">
<img src="./assets/images/extra-2/screenshot/mocup-screen.png" alt="extra-2/screenshot">
</div>
</div>
</div>
</section>
<!--============= Apps Download Section Ends Here =============-->
<!--============= Footer Section Starts Here =============-->
<footer class="footer-section" style="background-color: #0c5460;">
<!-- <footer class="footer-section bg_img" data-background="./assets/images/extra-2/footer/footer-bg.png">-->
<div class="container">
<div class="footer-top padding-top padding-bottom">
<div class="logo">
<a href="#0">
<img src="./assets/images/logo/footer-logo.png" alt="logo">
</a>
</div>
<ul class="social-icons light-border-color">
<li>
<a href="#0"><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="#0" class="active"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-pinterest-p"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-google-plus-g"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-instagram"></i></a>
</li>
</ul>
</div>
<div class="footer-bottom">
<ul class="footer-link light-border-color">
<li>
<a href="#0">About</a>
</li>
<li>
<a href="#0">FAQs</a>
</li>
<li>
<a href="#0">Contact</a>
</li>
<li>
<a href="#0">Terms of Service</a>
</li>
<li>
<a href="#0">Privacy</a>
</li>
</ul>
</div>
<div class="copyright light-border">
<p>
Copyright © <span class="currentYear"></span>.All Rights Reserved By <a href="#0">HealthRader</a>
</p>
</div>
</div>
</footer>
<!--============= Footer Section Ends Here =============-->
<script src="./assets/js/jquery.min.js"></script>
<script src="./assets/js/modernizr-3.6.0.min.js"></script>
<script src="./assets/js/plugins.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<script src="./assets/js/magnific-popup.min.js"></script>
<script src="./assets/js/jquery-ui.min.js"></script>
<script src="./assets/js/wow.min.js"></script>
<script src="./assets/js/waypoints.js"></script>
<script src="./assets/js/nice-select.js"></script>
<script src="./assets/js/owl.min.js"></script>
<script src="./assets/js/counterup.min.js"></script>
<script src="./assets/js/paroller.js"></script>
<script src="./assets/js/main.js"></script>
</body>
</html>
+11
View File
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
+66
View File
@@ -0,0 +1,66 @@
{
"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": "^8.1",
"ext-intl": "*",
"ext-mbstring": "*",
"laminas/laminas-escaper": "^2.13",
"psr/log": "^3.0"
},
"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": "^10.5.16",
"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"
}
}
+19
View File
@@ -0,0 +1,19 @@
version: '3'
services:
rader-health:
build:
context: .
dockerfile: docker/apache/Dockerfile
args:
uid: ${UID}
environment:
- APACHE_RUN_USER=#${UID}
- APACHE_RUN_GROUP=#${UID}
restart: unless-stopped
volumes:
- ./:/var/www/html
- ./apache_log:/var/log/apache2
ports:
- 8801:80
volumes:
src:
+59
View File
@@ -0,0 +1,59 @@
FROM php:7.4-apache
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
RUN apt-get update
RUN apt-get install -y \
git \
zip \
curl \
sudo \
unzip \
libicu-dev \
libbz2-dev \
libpng-dev \
libjpeg-dev \
libmcrypt-dev \
libreadline-dev \
libfreetype6-dev \
g++
RUN docker-php-ext-install \
bz2 \
intl \
bcmath \
opcache \
calendar \
pdo_mysql \
mysqli
# pgsql
# pdo_pgsql \
#\
# pdo_pgsql \
# pgsql
# 2. set up document root for apache
COPY docker/apache/000-default.conf /etc/apache2/sites-available/000-default.conf
# 3. mod_rewrite for URL rewrite and mod_headers for .htaccess extra headers like Access-Control-Allow-Origin-
RUN a2enmod rewrite headers
# 4. start with base php config, then add extensions
RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"
# 5. Composer
RUN curl -sS https://getcomposer.org/installer | php
RUN mv composer.phar /usr/local/bin/composer
RUN chmod +x /usr/local/bin/composer
RUN composer self-update
COPY / /var/www/html/
# 6. we need a user with the same UID/GID with host user
# so when we execute CLI commands, all the host file's ownership remains intact
# otherwise command from inside container will create root-owned files and directories
ARG uid=1000
RUN useradd -G www-data,root -u $uid -d /home/devuser devuser
RUN mkdir -p /home/devuser/.composer && \
chown -R devuser:devuser /home/devuser
RUN chmod -R +w writable
EXPOSE 80
+11
View File
@@ -0,0 +1,11 @@
<VirtualHost *:80>
ServerAdmin works@chiefsoft.com
ServerName blogdata.mermsemr.com
DocumentRoot /var/www/html/public
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
+62
View File
@@ -0,0 +1,62 @@
# Use an official PHP runtime as a base image
FROM php:8.2-apache
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
#RUN apt-get update
RUN apt-get update
RUN apt-get install -y \
git \
zip \
curl \
sudo \
unzip \
libicu-dev \
libbz2-dev \
libpng-dev \
libjpeg-dev \
libmcrypt-dev \
libreadline-dev \
libfreetype6-dev \
libpq-dev \
g++
RUN docker-php-ext-install \
bz2 \
intl \
bcmath \
opcache \
calendar \
pdo_mysql \
mysqli \
pdo \
pdo_pgsql \
pgsql
# 2. set up document root for apache
COPY docker/apache/000-default.conf /etc/apache2/sites-available/000-default.conf
# 3. mod_rewrite for URL rewrite and mod_headers for .htaccess extra headers like Access-Control-Allow-Origin-
RUN a2enmod rewrite headers
# 4. start with base php config, then add extensions
RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"
# 5. Composer
RUN curl -sS https://getcomposer.org/installer | php
RUN mv composer.phar /usr/local/bin/composer
RUN chmod +x /usr/local/bin/composer
RUN composer self-update
COPY / /var/www/html/
# 6. we need a user with the same UID/GID with host user
# so when we execute CLI commands, all the host file's ownership remains intact
# otherwise command from inside container will create root-owned files and directories
ARG uid=1000
RUN useradd -G www-data,root -u $uid -d /home/devuser devuser
RUN mkdir -p /home/devuser/.composer && \
chown -R devuser:devuser /home/devuser
#RUN chmod -R +w writable
EXPOSE 80
+69
View File
@@ -0,0 +1,69 @@
#--------------------------------------------------------------------
# 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 = production
#--------------------------------------------------------------------
# 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
# If you use MySQLi as tests, first update the values of Config\Database::$tests.
# 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.charset = utf8mb4
# database.tests.DBCollat = utf8mb4_general_ci
# database.tests.port = 3306
#--------------------------------------------------------------------
# ENCRYPTION
#--------------------------------------------------------------------
# encryption.key =
#--------------------------------------------------------------------
# SESSION
#--------------------------------------------------------------------
# session.driver = 'CodeIgniter\Session\Handlers\FileHandler'
# session.savePath = null
#--------------------------------------------------------------------
# LOGGER
#--------------------------------------------------------------------
# logger.threshold = 4
+63
View File
@@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="system/Test/bootstrap.php"
backupGlobals="false"
beStrictAboutOutputDuringTests="true"
colors="true"
columns="max"
failOnRisky="true"
failOnWarning="true"
cacheDirectory="build/.phpunit.cache">
<coverage
includeUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<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>
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
<exclude>
<directory suffix=".php">./app/Views</directory>
<file>./app/Config/Routes.php</file>
</exclude>
</source>
<php>
<server name="app.baseURL" value="http://example.com/"/>
<server name="CODEIGNITER_SCREAM_DEPRECATIONS" value="0"/>
<!-- 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>
+104
View File
@@ -0,0 +1,104 @@
<?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);
class preload
{
/**
* @var array Paths to preload.
*/
private array $paths = [
[
'include' => __DIR__ . '/vendor/codeigniter4/framework/system', // Change this path if using manual installation
'exclude' => [
'/system/bootstrap.php',
// Not needed if you don't use them.
'/system/Database/OCI8/',
'/system/Database/Postgre/',
'/system/Database/SQLite3/',
'/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(): void
{
$paths = new Config\Paths();
require rtrim($paths->systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'Boot.php';
CodeIgniter\Boot::preload($paths);
}
/**
* Load PHP files.
*/
public function load(): void
{
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();
+49
View File
@@ -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
Binary file not shown.
+211
View File
@@ -0,0 +1,211 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2021-6-15: Created with FontForge (http://fontforge.org)
-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170731 at Mon Jun 15 06:32:14 2021
By root
</metadata>
<defs>
<font id="Flaticon" horiz-adv-x="512" >
<font-face
font-family="Flaticon"
font-weight="400"
font-stretch="normal"
units-per-em="512"
panose-1="2 0 5 3 0 0 0 0 0 0"
ascent="448"
descent="-64"
bbox="-0.000352453 -64 512.001 448.009"
underline-thickness="25.6"
underline-position="-51.2"
unicode-range="U+0020-F110"
/>
<missing-glyph />
<glyph glyph-name="space" unicode=" " horiz-adv-x="200"
/>
<glyph glyph-name="016-eye" unicode="&#xf10e;"
d="M490.007 230.496c13.7715 -8.57129 21.9932 -22.9619 21.9932 -38.4961s-8.22168 -29.9248 -21.9922 -38.4961l-69.2705 -43.1113c-48.7646 -30.3506 -105.73 -46.3926 -164.737 -46.3926s-115.973 16.042 -164.737 46.3926l-69.2695 43.1113
c-13.7715 8.57129 -21.9932 22.9619 -21.9932 38.4961s8.22168 29.9248 21.9932 38.4961l69.2695 43.1113c48.7646 30.3506 105.73 46.3926 164.737 46.3926s115.973 -16.042 164.737 -46.3926zM256 112c44.1123 0 80 35.8877 80 80s-35.8877 80 -80 80
s-80 -35.8877 -80 -80s35.8877 -80 80 -80zM38.9023 180.672l69.2686 -43.1123c23.9893 -14.9297 50.2178 -25.7998 77.4668 -32.6289c-25.3799 20.5508 -41.6377 51.9443 -41.6377 87.0693s16.2578 66.5186 41.6377 87.0684
c-27.249 -6.8291 -53.4775 -17.6992 -77.4668 -32.6289l-69.2695 -43.1113c-4.38574 -2.73047 -6.90137 -6.85938 -6.90137 -11.3281s2.51562 -8.59766 6.90234 -11.3281zM473.099 180.672c4.38574 2.72949 6.90137 6.85938 6.90137 11.3281
s-2.51562 8.59863 -6.90234 11.3291l-69.2686 43.1113c-23.9893 14.9297 -50.2178 25.7998 -77.4668 32.6289c25.3799 -20.5508 41.6377 -51.9443 41.6377 -87.0693s-16.2578 -66.5186 -41.6377 -87.0684c27.25 6.8291 53.4775 17.6992 77.4668 32.6289zM224 192
c0 17.6729 14.3271 32 32 32s32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32z" />
<glyph glyph-name="005-pdf" unicode="&#xf103;"
d="M427.039 335.618c1.72852 -1.72656 2.69727 -4.07031 2.69922 -6.51367v-219.368c0 -5.08789 -4.12695 -9.21289 -9.21387 -9.21289c-5.08789 0 -9.21289 4.12598 -9.21289 9.21289v215.552l-104.285 104.286h-160.709c-25.1602 0 -45.6289 -20.4688 -45.6289 -45.6289
v-383.89c0 -25.1602 20.4688 -45.6289 45.6289 -45.6289h109.685c5.08789 0 9.21289 -4.12598 9.21289 -9.21289s-4.12598 -9.21387 -9.21289 -9.21387h-109.685c-35.3203 0 -64.0537 28.7344 -64.0537 64.0547v383.891c0 35.3203 28.7334 64.0547 64.0537 64.0547h164.525
c2.44336 0 4.78516 -0.970703 6.51367 -2.69824zM420.524 338.316c5.08691 0 9.21191 -4.12402 9.21191 -9.21191c0 -5.08887 -4.12598 -9.21387 -9.21289 -9.21387h-54.8408c-35.3193 0 -64.0537 28.7354 -64.0537 64.0547v54.8408
c0 5.08887 4.12695 9.21387 9.21387 9.21387c5.08789 0 9.21289 -4.125 9.21289 -9.21387v-54.8408c0 -25.1602 20.4688 -45.6289 45.6279 -45.6289h54.8408zM368.426 174.888c5.08691 0 9.21289 -4.125 9.21289 -9.21289c0 -5.08887 -4.125 -9.21387 -9.21289 -9.21387
h-222.108c-5.08789 0 -9.21289 4.125 -9.21289 9.21387c0 5.08789 4.125 9.21289 9.21289 9.21289h222.108zM368.426 228.634c5.08691 0 9.21289 -4.125 9.21289 -9.21289c0 -5.08887 -4.125 -9.21387 -9.21289 -9.21387h-222.108
c-5.08789 0 -9.21289 4.125 -9.21289 9.21387c0 5.08789 4.125 9.21289 9.21289 9.21289h222.108zM368.426 283.476c5.08691 0 9.21289 -4.125 9.21289 -9.21387s-4.125 -9.21387 -9.21289 -9.21387h-222.108c-5.08789 0 -9.21289 4.125 -9.21289 9.21387
s4.125 9.21387 9.21289 9.21387h222.108zM256 393.159c5.08691 0 9.21387 -4.125 9.21484 -9.21387c0 -5.08789 -4.12598 -9.21289 -9.21289 -9.21289h-109.685c-5.08789 0 -9.21289 4.125 -9.21289 9.21289c0 5.08887 4.125 9.21387 9.21289 9.21387h109.683z
M200.062 76.2871c1.64453 -3.29199 2.19434 -7.67871 2.19336 -12.0664c0 -9.32324 -3.29004 -17.001 -8.77441 -21.9365c-6.0332 -4.93555 -14.2578 -7.67676 -24.6787 -7.67676h-12.0645v-21.9375c0 -4.3877 -0.547852 -7.67676 -2.74121 -9.87012
c-1.64551 -2.74414 -4.3877 -3.84082 -7.67773 -3.84082c-3.29199 0 -6.03223 1.64551 -8.22754 3.84082c-1.64453 2.74023 -2.74121 6.03027 -2.74121 9.87012v66.9062c0 4.93652 1.09668 8.22656 3.29004 10.4209c2.19336 2.19336 5.4834 3.29004 9.87109 3.29004h20.8398
c6.58008 0 11.5176 -0.549805 15.3555 -1.64648c3.83887 -1.0957 7.12891 -2.74121 9.87109 -5.48242c2.74219 -2.19336 4.93555 -5.48535 5.48438 -9.87109zM179.222 58.1875c1.09766 1.64355 1.64551 3.83691 1.09766 6.0332
c0 3.29102 -0.548828 6.03223 -2.19434 7.67773c-1.64453 1.09668 -4.38672 2.74219 -12.6123 2.74219h-8.22754v-20.8398h8.77441c3.29004 0 6.58008 0.547852 8.77441 1.09668c1.64648 0.547852 3.29102 1.64355 4.3877 3.29004zM282.325 84.5117
c9.32227 -8.22461 13.71 -20.8389 13.708 -37.2949c0 -5.4834 0 -10.4189 -1.09668 -14.8066c-1.09668 -4.38672 -2.74219 -8.22559 -4.38672 -12.0645c-1.64551 -3.83789 -4.3877 -7.12988 -7.12891 -9.87012c-2.19434 -2.19531 -4.93555 -3.83887 -7.67773 -5.48438
c-2.74023 -1.09668 -5.4834 -2.19336 -8.77441 -2.74121c-3.29004 -0.548828 -6.58008 -0.548828 -10.4189 -0.548828h-21.3887c-3.83789 0 -6.0332 0.549805 -8.22656 1.64551c-2.19336 1.09668 -3.83887 3.29004 -4.3877 5.4834
c-0.547852 2.19336 -0.547852 4.38672 -0.547852 7.67773v63.6162c0 4.3877 1.09668 7.67773 3.29004 9.87109c2.19531 2.19336 5.48438 3.29004 9.87207 3.29004h21.3887c5.48438 0 10.418 -0.549805 14.8066 -1.64648c4.38672 -1.09473 8.22656 -3.28906 10.9688 -7.12695
zM267.518 24.1846c4.93555 4.3877 7.12891 12.0645 7.12891 23.582c0 8.22559 -1.09668 14.2578 -2.74219 17.5498c-1.64453 3.83887 -4.38672 6.03223 -7.12891 7.12891c-3.29004 1.09863 -7.12891 1.64551 -12.0645 1.64551h-8.22656v-53.1963h9.87207h6.03223
c1.09668 0 2.19336 0.548828 3.83887 1.09668c1.09668 0.548828 2.19336 1.09863 3.29004 2.19336zM378.297 84.5117c0 -3.28906 -1.09668 -5.48535 -2.74512 -7.13281c-1.64551 -1.64453 -4.38672 -2.74121 -7.67773 -2.74121h0.00195312v-0.545898h-29.6162v-16.4512
h24.1309c3.28906 0 6.03027 -1.09668 7.67676 -2.74219c1.64551 -1.64453 2.74219 -3.83984 2.74219 -6.58008c0 -2.74219 -1.09668 -4.93555 -2.74219 -6.58203c-2.19336 -1.64551 -4.38672 -2.74219 -7.67676 -2.74219h-24.1309v-25.7773
c0 -4.38672 -0.547852 -7.67676 -2.74121 -9.87012c-1.64355 -2.74414 -4.3877 -3.83887 -7.67773 -3.83887s-6.03223 1.64453 -8.22559 3.83887c-1.64551 2.19336 -2.74219 5.4834 -2.74219 9.87012v66.3594c0 2.74121 0 4.93555 1.09668 7.12891
c0.549805 2.19434 2.19434 3.83984 4.38867 4.93555c2.19336 1.09766 4.3877 1.64648 7.12891 1.64648h38.3896c3.28906 0 6.03223 -0.548828 7.67773 -2.19336c1.64551 -1.64746 2.74219 -3.84082 2.74219 -6.58203z" />
<glyph glyph-name="015-reload" unicode="&#xf10d;"
d="M70.9707 330.749c-17.626 13.2207 -17.6201 39.6133 0 52.8281l79.2188 59.4141c16.3652 12.2754 39.7471 0.586914 39.7471 -19.873v-16.3633h49.543c118.417 0 214.756 -96.3398 214.756 -214.757c0 -3.71191 -2.47656 -6.96875 -6.05371 -7.95996
c-3.56836 -0.988281 -7.37207 0.517578 -9.28809 3.71094c-0.174805 0.289062 -18.6162 30.373 -59.3809 60.0205c-36.4551 26.5137 -98.6045 57.9717 -189.576 59.7852v-16.3447c0 -20.4561 -23.375 -32.1494 -39.7471 -19.875zM80.8818 370.36
c-8.80859 -6.60547 -8.80078 -19.792 0.000976562 -26.3955l79.2188 -59.4131c5.49316 -4.11719 13.3154 -0.220703 13.3154 6.6582v24.6865c0 4.56055 3.69922 8.25977 8.25977 8.25977c111.423 -0.00585938 199.655 -42.9863 254.236 -105.371
c-13.1133 96.6895 -96.2051 171.449 -196.434 171.449h-49.5488l-0.00976562 -16.5244c-0.00292969 -4.5459 -3.68555 -8.25488 -8.26562 -8.25488c-4.56152 0.00292969 -8.25781 3.7041 -8.25391 8.26562c0.0185547 29.793 0.015625 18.4141 0.015625 49.3975
c0 6.89062 -7.83789 10.7637 -13.3154 6.65723zM441.029 53.248c17.6289 -13.2217 17.6172 -39.6152 0 -52.8271l-79.2197 -59.4141c-16.3506 -12.2637 -39.7471 -0.604492 -39.7471 19.873v16.3633h-49.543c-118.417 0 -214.757 96.3398 -214.757 214.756
c0 3.71289 2.47754 6.96973 6.05469 7.96094c3.5791 0.988281 7.37793 -0.527344 9.28809 -3.71094c0.174805 -0.289062 18.6162 -30.373 59.3809 -60.0215c36.4561 -26.5127 98.6045 -57.9717 189.576 -59.7842v16.3447c0 20.4561 23.377 32.1504 39.7471 19.875z
M431.118 13.6367c8.80762 6.60547 8.80078 19.793 -0.000976562 26.3945l-79.2197 59.4131c-5.51465 4.13477 -13.3154 0.191406 -13.3154 -6.65723v-24.6865c0 -4.56152 -3.7002 -8.25977 -8.25977 -8.25977c-112.581 0.00488281 -200.305 43.7314 -254.236 105.371
c13.1133 -96.6895 96.2051 -171.45 196.434 -171.45h49.5488l0.00976562 16.5254c0.00292969 4.56445 3.70703 8.25781 8.26562 8.25488c4.56055 -0.00292969 8.25684 -3.7041 8.25391 -8.26562c-0.0185547 -29.793 -0.015625 -18.4141 -0.015625 -49.3975
c0 -6.88574 7.83496 -10.7686 13.3154 -6.65723zM255.999 249.817c0 -4.56152 -3.69727 -8.25977 -8.25977 -8.25977c-27.3262 0 -49.5586 -22.2314 -49.5586 -49.5596c0 -4.56152 -3.69824 -8.25977 -8.25977 -8.25977s-8.25977 3.69824 -8.25977 8.25977
c0 36.4365 29.6426 66.0791 66.0781 66.0791c4.56152 0 8.25977 -3.69824 8.25977 -8.25977zM247.739 125.92c-4.56152 0 -8.25977 3.69824 -8.25977 8.25977s3.69824 8.25977 8.25977 8.25977c27.3281 0 49.5596 22.2314 49.5596 49.5586
c0 4.56152 3.69824 8.25977 8.25977 8.25977s8.25977 -3.69824 8.25977 -8.25977c0 -36.4355 -29.6426 -66.0781 -66.0791 -66.0781z" />
<glyph glyph-name="014-double-angle-arrow-pointing-to-right" unicode="&#xf10c;"
d="M230.496 -64c-10.6982 0 -21.3135 4.06641 -29.4785 12.1982c-16.2979 16.2803 -16.2979 42.6592 0 58.9072l184.887 184.853l-184.87 184.92c-16.2979 16.3145 -16.2979 42.6934 0 58.9072c16.2969 16.2979 42.6592 16.2979 58.9072 0l243.76 -243.811l-243.743 -243.76
c-8.14941 -8.13184 -18.7803 -12.2148 -29.4619 -12.2148zM79.4199 -51.7852c-8.18164 -8.13184 -18.7627 -12.2148 -29.4443 -12.1982c-10.6982 0 -21.3467 4.06641 -29.4785 12.1982c-16.2979 16.2305 -16.2979 42.6094 0 58.9072l184.903 184.853l-184.887 184.903
c-16.2979 16.248 -16.2979 42.627 0 58.9072c16.2305 16.2979 42.5928 16.2979 58.9062 0l243.761 -243.811z" />
<glyph glyph-name="010-search-1" unicode="&#xf108;"
d="M362.667 -21.333c-58.8164 0 -106.667 47.8506 -106.667 106.666c0 58.8164 47.8506 106.667 106.667 106.667c58.8154 0 106.666 -47.8506 106.666 -106.667c0 -58.8154 -47.8506 -106.666 -106.666 -106.666zM362.667 170.667
c-47.0615 0 -85.334 -38.2725 -85.334 -85.334c0 -47.0605 38.2725 -85.333 85.334 -85.333c47.0605 0 85.333 38.2725 85.333 85.333c0 47.0615 -38.2725 85.334 -85.333 85.334zM501.333 -64c-2.73047 0 -5.46094 1.04492 -7.55176 3.11426l-70.7842 70.7842
c-4.16016 4.16016 -4.16016 10.9229 0 15.083s10.9229 4.16016 15.083 0l70.7842 -70.7842c4.16016 -4.16016 4.16016 -10.9229 0 -15.083c-2.06934 -2.06934 -4.7998 -3.11426 -7.53125 -3.11426zM224 0h-170.667c-29.3975 0 -53.333 23.915 -53.333 53.333v277.334
c0 29.418 23.9355 53.333 53.333 53.333h42.667c5.8877 0 10.667 -4.77832 10.667 -10.667c0 -5.8877 -4.7793 -10.666 -10.667 -10.666h-42.667c-17.6426 0 -32 -14.3574 -32 -32v-277.334c0 -17.6426 14.3574 -32 32 -32h170.667c5.8877 0 10.667 -4.77832 10.667 -10.666
c0 -5.88867 -4.7793 -10.667 -10.667 -10.667zM245.333 320h-128c-17.6426 0 -32 14.3574 -32 32v42.667c0 5.8877 4.7793 10.666 10.667 10.666h33.0664c4.9707 24.3203 26.4961 42.667 52.2666 42.667s47.2959 -18.3467 52.2666 -42.667h33.0674
c5.8877 0 10.666 -4.77832 10.666 -10.666v-42.667c0 -17.6426 -14.3574 -32 -32 -32zM106.667 384v-32c0 -5.86621 4.77832 -10.667 10.666 -10.667h128c5.88867 0 10.667 4.80078 10.667 10.667v32h-32c-5.8877 0 -10.667 4.77832 -10.667 10.667
c0 17.6426 -14.3574 32 -32 32s-32 -14.3574 -32 -32c0 -5.88867 -4.77832 -10.667 -10.666 -10.667h-32zM288 256h-213.333c-5.88867 0 -10.667 4.77832 -10.667 10.667c0 5.8877 4.77832 10.666 10.667 10.666h213.333c5.8877 0 10.667 -4.77832 10.667 -10.666
c0 -5.88867 -4.7793 -10.667 -10.667 -10.667zM266.667 192h-192c-5.88867 0 -10.667 4.77832 -10.667 10.667c0 5.8877 4.77832 10.666 10.667 10.666h192c5.8877 0 10.666 -4.77832 10.666 -10.666c0 -5.88867 -4.77832 -10.667 -10.666 -10.667zM213.333 128h-138.666
c-5.88867 0 -10.667 4.77832 -10.667 10.667c0 5.8877 4.77832 10.666 10.667 10.666h138.666c5.88867 0 10.667 -4.77832 10.667 -10.666c0 -5.88867 -4.77832 -10.667 -10.667 -10.667zM352 234.667c-5.8877 0 -10.667 4.77832 -10.667 10.666v85.334
c0 17.6426 -14.3574 32 -32 32h-42.666c-5.88867 0 -10.667 4.77832 -10.667 10.666c0 5.88867 4.77832 10.667 10.667 10.667h42.666c29.3975 0 53.334 -23.915 53.334 -53.333v-85.334c0 -5.8877 -4.7793 -10.666 -10.667 -10.666z" />
<glyph glyph-name="017-chat-1" unicode="&#xf10f;"
d="M460.747 8.83691l46.7744 -46.1602c9.51074 -9.38672 2.86816 -25.6123 -10.4648 -25.6768c-0.114258 -0.000976562 -195.417 -1 -195.561 -1c-70.3721 0 -134.675 34.8213 -173.6 91.4619l-112.956 0.538086c-13.3789 0.0654297 -19.9453 16.3203 -10.4658 25.6768
l46.7744 46.1602c-33.1494 38.2363 -51.2373 86.5645 -51.2373 137.663c0 116.07 94.4238 210.5 210.488 210.5c81.3994 0 152.149 -46.4492 187.153 -114.233c121.205 -62.3379 152.213 -222.139 63.0938 -324.93zM82.7617 109.983
c5.87305 -5.88574 5.83789 -15.4326 -0.0800781 -21.2744l-31.293 -30.8818l153.259 -0.730469c110.869 -0.865234 186.343 85.0303 186.343 180.403c0 99.5283 -80.9678 180.5 -180.49 180.5s-180.49 -80.9717 -180.49 -180.5c0 -48.1504 18.7354 -93.4365 52.752 -127.517
zM301.496 -34c0.116211 0 158.992 0.827148 159.111 0.827148l-31.293 30.8818c-5.91797 5.84082 -5.9541 15.3887 -0.0800781 21.2744c75.7158 75.8545 68.9209 199.859 -14.0449 267.634c31.8164 -132.608 -69.2871 -259.617 -204.689 -259.617
c-2.62402 0 12.5352 -0.0947266 -44.5693 0.28125c34.0088 -38.792 82.9316 -61.2812 135.565 -61.2812zM121.005 282c-8.2832 0 -14.999 6.71582 -14.999 15s6.71484 15 14.999 15h179.99c8.28418 0 14.999 -6.71582 14.999 -15s-6.71484 -15 -14.999 -15h-179.99z
M121.005 222c-8.2832 0 -14.999 6.71582 -14.999 15s6.71484 15 14.999 15h179.99c8.28418 0 14.999 -6.71582 14.999 -15s-6.71484 -15 -14.999 -15h-179.99zM121.005 162c-8.2832 0 -14.999 6.71582 -14.999 15s6.71484 15 14.999 15h179.99
c8.28418 0 14.999 -6.71582 14.999 -15s-6.71484 -15 -14.999 -15h-179.99z" />
<glyph glyph-name="003-data-management" unicode="&#xf102;"
d="M500.5 24.5c6.34082 0 11.5 -5.15918 11.5 -11.5v-20c0 -18.4717 -15.0283 -33.5 -33.5 -33.5h-62.2637c-4.14355 0 -7.5 3.35742 -7.5 7.5s3.35645 7.5 7.5 7.5h62.2637c10.2012 0 18.5 8.29883 18.5 18.5v16.5h-187.5v-4.5c0 -10.752 -8.74805 -19.5 -19.5 -19.5h-68
c-10.752 0 -19.5 8.74805 -19.5 19.5v4.5h-187.5v-16.5c0 -10.2012 8.29883 -18.5 18.5 -18.5h350.365c4.14258 0 7.5 -3.35742 7.5 -7.5s-3.35742 -7.5 -7.5 -7.5h-350.365c-18.4717 0 -33.5 15.0283 -33.5 33.5v20c0 6.34082 5.15918 11.5 11.5 11.5h25.0283
c-1.9248 3.75293 -3.01855 8 -3.01855 12.5l-0.00976562 259.99c0 15.1631 12.3369 27.5 27.5 27.5l214.003 0.00976562c0.108398 0.262695 0.174805 0.546875 0.174805 0.84082v14.4307c0 0.668945 -0.298828 1.30078 -0.800781 1.69043
c-3.62402 2.8252 -8.21973 7.17285 -11.4375 10.3232c-5.62109 5.50293 -6.79883 14.0967 -2.86133 20.8984l6.77832 11.7129c3.9248 6.78125 11.9492 10.0537 19.5049 7.95898c4.36523 -1.21191 10.46 -3.01562 14.709 -4.72949
c0.59375 -0.240234 1.29883 -0.182617 1.88574 0.15625l12.542 7.22363c0.583008 0.335938 0.984375 0.914062 1.07324 1.54883c0.639648 4.54199 2.11523 10.6797 3.24023 15.0283c1.96582 7.60352 8.81934 12.916 16.667 12.916h13.5752
c7.84863 0 14.7021 -5.3125 16.668 -12.917c1.12402 -4.34668 2.59961 -10.4854 3.24023 -15.0283c0.0888672 -0.633789 0.490234 -1.21191 1.07227 -1.54688l12.5439 -7.22559c0.584961 -0.335938 1.29102 -0.393555 1.88477 -0.155273
c4.25293 1.71582 10.3447 3.51758 14.707 4.72754c7.56055 2.10156 15.582 -1.17578 19.5068 -7.95703l6.77832 -11.7129c3.93652 -6.80078 2.75977 -15.3955 -2.86133 -20.8984c-3.21973 -3.15137 -7.81738 -7.50098 -11.4365 -10.3223
c-0.503906 -0.390625 -0.803711 -1.02246 -0.803711 -1.69141v-14.4307c0 -0.294922 0.0673828 -0.578125 0.175781 -0.84082h39.4609c15.1631 0 27.5 -12.3369 27.5 -27.5l0.000976562 -24.6807c0 -4.14258 -3.35742 -7.5 -7.5 -7.5s-7.5 3.35645 -7.5 7.5
l-0.000976562 24.6807c0 6.89258 -5.60742 12.5 -12.5 12.5h-24.4678c2.57812 -4.55176 2.96484 -10.084 0.938477 -15h13.5293c4.1416 0 7.5 -3.35742 7.5 -7.5l0.00976562 -239.99c0 -1.99023 -0.790039 -3.89648 -2.19629 -5.30273
c-1.40625 -1.40723 -3.31445 -2.19727 -5.30371 -2.19727l-369.99 -0.00976562c-4.1416 0 -7.5 3.35742 -7.5 7.5l-0.00195312 49.2266c0 4.14258 3.35742 7.5 7.5 7.5s7.5 -3.35645 7.5 -7.5l0.00195312 -41.7266l354.988 0.00878906l-0.00976562 224.99h-14.5859
c-4.1416 -5.95117 -11.6436 -8.70996 -18.7324 -6.74512c-4.35938 1.20898 -10.4473 3.01074 -14.7061 4.72852c-0.597656 0.241211 -1.30176 0.182617 -1.8877 -0.154297l-12.543 -7.22461c-0.582031 -0.335938 -0.983398 -0.914062 -1.07324 -1.54883
c-0.638672 -4.53906 -2.11523 -10.6777 -3.24121 -15.0283c-1.96484 -7.60449 -8.81836 -12.916 -16.667 -12.916h-13.5752c-7.84766 0 -14.7012 5.31152 -16.668 12.917c-1.125 4.34863 -2.59863 10.4883 -3.23926 15.0273
c-0.0888672 0.634766 -0.490234 1.21289 -1.07324 1.54883l-12.543 7.22461c-0.584961 0.336914 -1.29102 0.393555 -1.88477 0.155273c-4.25879 -1.71777 -10.3486 -3.51953 -14.707 -4.72852c-7.09375 -1.9707 -14.5938 0.792969 -18.7344 6.74414l-17.9902 -0.000976562
c1.02246 -4.08691 2.16699 -9.08887 2.71094 -12.9443c0.0888672 -0.633789 0.490234 -1.21191 1.07227 -1.54688l12.5439 -7.22559c0.584961 -0.335938 1.29102 -0.393555 1.88477 -0.155273c4.2627 1.71777 10.3506 3.52051 14.707 4.72754
c7.5625 2.09961 15.582 -1.17578 19.5078 -7.95703l6.77734 -11.7129c3.9375 -6.80078 2.75977 -15.3955 -2.86035 -20.8984c-3.2207 -3.15234 -7.81836 -7.50293 -11.4385 -10.3223c-0.501953 -0.389648 -0.800781 -1.02246 -0.800781 -1.69141v-14.4307
c0 -0.668945 0.299805 -1.30176 0.801758 -1.69336c3.62012 -2.81836 8.2168 -7.16992 11.4385 -10.3213c5.62012 -5.50293 6.79785 -14.0977 2.86035 -20.8994l-6.77734 -11.7119c-3.92578 -6.78223 -11.9512 -10.0518 -19.5059 -7.95898
c-4.3584 1.20898 -10.4463 3.01074 -14.7061 4.72852c-0.598633 0.241211 -1.30273 0.182617 -1.88672 -0.154297l-12.5439 -7.22363c-0.582031 -0.336914 -0.982422 -0.915039 -1.07324 -1.5498c-0.639648 -4.53906 -2.11426 -10.6777 -3.24023 -15.0283
c-1.96582 -7.60449 -8.81934 -12.916 -16.667 -12.916h-13.5752c-7.84863 0 -14.7021 5.31152 -16.668 12.917c-1.125 4.34863 -2.60059 10.4883 -3.24023 15.0273c-0.0888672 0.634766 -0.490234 1.21289 -1.07324 1.5498l-12.543 7.22363
c-0.584961 0.336914 -1.29102 0.394531 -1.88477 0.155273c-4.26172 -1.71875 -10.3496 -3.52051 -14.707 -4.72852c-7.56055 -2.10059 -15.582 1.17578 -19.5068 7.95801l-6.77832 11.7119c-3.93652 6.80078 -2.75977 15.3965 2.86133 20.8994
c3.21973 3.15137 7.81738 7.50293 11.4375 10.3223c0.500977 0.389648 0.801758 1.02344 0.801758 1.69238v14.4307c0 0.668945 -0.299805 1.30078 -0.801758 1.69043c-3.62012 2.82031 -8.2168 7.1709 -11.4375 10.3232
c-5.62109 5.50293 -6.79785 14.0967 -2.86133 20.8984l6.77832 11.7129c3.9248 6.78125 11.9502 10.0547 19.5049 7.95898c4.35938 -1.20898 10.4473 -3.01172 14.7061 -4.72852c0.599609 -0.243164 1.30469 -0.182617 1.88867 0.155273l12.542 7.22363
c0.583008 0.335938 0.984375 0.914062 1.07324 1.54883c0.542969 3.85449 1.68848 8.85449 2.71094 12.9414l-123.169 -0.00585938l0.00683594 -150.893c0 -4.1416 -3.35645 -7.5 -7.5 -7.5c-4.1416 0 -7.5 3.35742 -7.5 7.5l-0.00683594 158.393
c0 4.1416 3.35742 7.5 7.5 7.5l147.806 0.0078125c0.0205078 0 0.0400391 0.00195312 0.0615234 0.00195312h13.5752c0.0146484 0 0.0292969 -0.00195312 0.0449219 -0.00195312l26.584 0.000976562c-2.02637 4.91602 -1.6416 10.4482 0.9375 15l-199.009 -0.00878906
c-6.89258 0 -12.5 -5.60742 -12.5 -12.5l0.00976562 -259.99c0 -6.89258 5.60742 -12.5 12.5 -12.5l389.99 0.00976562c6.89258 0 12.5 5.60742 12.5 12.5l-0.0078125 203.495c0 4.14258 3.35645 7.5 7.5 7.5c4.1416 0 7.5 -3.35645 7.5 -7.5l0.0078125 -203.495
c0 -4.50391 -1.09473 -8.75391 -3.02344 -12.5098h25.0234zM234.587 277.828c-0.25293 0.976562 -1.12305 1.65918 -2.12402 1.66992l-13.6299 -0.000976562c-0.995117 -0.0136719 -1.8623 -0.695312 -2.11328 -1.66797
c-1.4541 -5.62109 -2.48633 -10.3682 -2.91016 -13.3682c-0.740234 -5.25293 -3.81738 -9.79102 -8.44043 -12.4531l-12.542 -7.22363c-4.61719 -2.6582 -10.0771 -3.0459 -14.9844 -1.06738c-2.81543 1.13477 -7.46973 2.62207 -13.1035 4.18555
c-0.970703 0.267578 -2.01074 -0.148438 -2.51562 -1.01953l-6.77734 -11.7119c-0.500977 -0.865234 -0.348633 -1.96191 0.373047 -2.66699c4.16113 -4.07422 7.76953 -7.34473 10.1631 -9.20898c4.18262 -3.25684 6.58203 -8.18652 6.58203 -13.5234v-14.4307
c0 -5.33594 -2.39844 -10.2646 -6.58105 -13.5234c-2.39355 -1.86523 -6.00293 -5.13672 -10.1641 -9.20996c-0.72168 -0.705078 -0.874023 -1.80273 -0.373047 -2.66699l6.77734 -11.7129c0.503906 -0.870117 1.53809 -1.29199 2.51758 -1.01758
c5.63086 1.56348 10.2861 3.04883 13.1035 4.18457c2.06836 0.833984 4.23535 1.24805 6.39648 1.24805c2.96484 0 5.91699 -0.777344 8.58691 -2.31543l12.542 -7.22461c4.62305 -2.66211 7.69922 -7.20117 8.43945 -12.4512
c0.423828 -3.00098 1.45605 -7.74805 2.90918 -13.3682c0.254883 -0.984375 1.1377 -1.67188 2.14648 -1.67188h13.5752c1.00879 0 1.89062 0.6875 2.14453 1.6709c1.4541 5.62109 2.4873 10.3682 2.91016 13.3682v0.000976562
c0.741211 5.25 3.81641 9.78906 8.43945 12.4512l12.543 7.22461c4.61328 2.6582 10.0732 3.04688 14.9844 1.06641c2.81641 -1.13477 7.46973 -2.62109 13.1045 -4.18457c0.970703 -0.266602 2.00977 0.148438 2.51465 1.01855l6.77832 11.7129
c0.500977 0.864258 0.347656 1.96191 -0.373047 2.66699c-4.16113 4.07324 -7.77051 7.34473 -10.1631 9.20898c-4.18457 3.25879 -6.58203 8.18848 -6.58203 13.5244v14.4307c0 5.33691 2.39844 10.2656 6.58203 13.5244c2.3916 1.86328 6.00195 5.13379 10.1631 9.20801
c0.720703 0.705078 0.874023 1.80176 0.373047 2.66699l-6.77832 11.7119c-0.504883 0.87207 -1.54004 1.29102 -2.5166 1.01855c-5.63184 -1.56348 -10.2861 -3.0498 -13.1045 -4.18555c-4.90625 -1.97754 -10.3662 -1.58887 -14.9795 1.06738l-12.5449 7.22559
c-4.62109 2.66113 -7.69824 7.19922 -8.43945 12.4512c-0.422852 3.00098 -1.45605 7.74805 -2.90918 13.3682zM273.433 362.504c4.1582 -4.07129 7.76758 -7.3418 10.1641 -9.20898c4.18262 -3.25684 6.58105 -8.18652 6.58105 -13.5234v-14.4307
c0 -5.33594 -2.39746 -10.2646 -6.58105 -13.5234c-2.39551 -1.86816 -6.00586 -5.13965 -10.1641 -9.20996c-0.720703 -0.705078 -0.874023 -1.80273 -0.373047 -2.66699l5.31738 -9.1875c0.0439453 -0.0761719 0.0908203 -0.151367 0.132812 -0.229492l1.32812 -2.2959
c0.503906 -0.871094 1.54004 -1.29102 2.51758 -1.01758c5.63477 1.56445 10.2891 3.0498 13.1035 4.18457c2.06836 0.833984 4.23535 1.24805 6.39648 1.24805c2.96484 0 5.91699 -0.777344 8.58691 -2.31543l12.542 -7.22461
c4.62305 -2.66211 7.69824 -7.20117 8.43945 -12.4512c0.422852 -3.00098 1.45605 -7.74805 2.90918 -13.3682c0.254883 -0.984375 1.13672 -1.67188 2.14551 -1.67188h13.5752c1.00977 0 1.8916 0.6875 2.14551 1.6709c1.4541 5.62109 2.48633 10.3682 2.91016 13.3682
v0.000976562c0.740234 5.25 3.81641 9.78906 8.43945 12.4512l12.543 7.22461c4.61523 2.65918 10.0781 3.0459 14.9844 1.06641c2.81543 -1.13477 7.46973 -2.62109 13.1035 -4.18457c0.972656 -0.267578 2.01172 0.148438 2.51562 1.01855l6.77734 11.7129
c0.500977 0.864258 0.348633 1.96191 -0.373047 2.66699c-4.15918 4.07227 -7.76855 7.34473 -10.1631 9.20898c-4.18262 3.25781 -6.58105 8.1875 -6.58105 13.5244v14.4307c0 5.33789 2.39941 10.2666 6.58496 13.5254c2.38965 1.8623 6 5.13379 10.1592 9.20703
c0.72168 0.705078 0.874023 1.80176 0.373047 2.66699l-6.77734 11.7119c-0.503906 0.87207 -1.54199 1.29102 -2.51758 1.01855c-5.6377 -1.56543 -10.292 -3.05078 -13.1025 -4.18457c-4.90625 -1.98047 -10.3662 -1.59082 -14.9814 1.06641l-12.5449 7.22559
c-4.62207 2.66113 -7.69922 7.19922 -8.43945 12.4512c-0.423828 3.00293 -1.45605 7.75 -2.90918 13.3682c-0.254883 0.983398 -1.13672 1.67188 -2.14648 1.67188h-13.5752c-1.00879 0 -1.89062 -0.688477 -2.14453 -1.6709
c-1.4541 -5.61914 -2.4873 -10.3662 -2.91016 -13.3682c-0.741211 -5.25293 -3.81738 -9.79102 -8.44043 -12.4531l-12.542 -7.22363c-4.61621 -2.6582 -10.0771 -3.04688 -14.9844 -1.06738c-2.80762 1.13281 -7.46094 2.62012 -13.1045 4.18555
c-0.97168 0.267578 -2.01074 -0.148438 -2.51465 -1.01953l-6.77832 -11.7119c-0.500977 -0.865234 -0.347656 -1.96191 0.373047 -2.66699zM294.5 5v4.5h-77v-4.5c0 -2.48145 2.01855 -4.5 4.5 -4.5h68c2.48145 0 4.5 2.01855 4.5 4.5zM343.267 291.714
c-22.5654 0 -40.9238 18.3213 -40.9238 40.8418s18.3584 40.8418 40.9238 40.8418c22.5664 0 40.9248 -18.3213 40.9248 -40.8418s-18.3594 -40.8418 -40.9248 -40.8418zM331.58 309.5c3.51367 -1.77734 7.48438 -2.78613 11.6865 -2.78613
c4.20312 0 8.17285 1.00879 11.6875 2.78613h-23.374zM343.267 358.396c-14.2949 0 -25.9238 -11.5918 -25.9238 -25.8418c0 -2.8125 0.459961 -5.51855 1.29688 -8.05566h49.2539c0.838867 2.53711 1.29785 5.24316 1.29785 8.05566
c0 14.249 -11.6299 25.8418 -25.9248 25.8418zM184.73 202.556c0 22.5195 18.3574 40.8418 40.9238 40.8418c22.5654 0 40.9238 -18.3213 40.9238 -40.8418s-18.3584 -40.8418 -40.9238 -40.8418c-22.5664 0 -40.9238 18.3213 -40.9238 40.8418zM251.578 202.556
c0 14.249 -11.6289 25.8418 -25.9238 25.8418s-25.9238 -11.5928 -25.9238 -25.8418s11.6289 -25.8418 25.9238 -25.8418s25.9238 11.5928 25.9238 25.8418z" />
<glyph glyph-name="001-play" unicode="&#xf100;"
d="M419.926 239.544c18.3184 -12.5371 28.3359 -29.4092 28.332 -47.5215c0 -18.124 -10.1338 -35 -28.4316 -47.541l-284.528 -194.692c-13.1631 -9.02246 -26.1855 -13.7891 -37.2012 -13.7891c-21.2158 0 -34.3545 17.0342 -34.3545 45.5693v420.796
c0 28.5674 13.1553 45.6348 34.4209 45.6348c10.999 0 24.2324 -4.76172 37.3662 -13.7598z" />
<glyph glyph-name="002-search" unicode="&#xf101;"
d="M508.875 -30.709c4.16602 -4.16504 4.16602 -10.9189 0.000976562 -15.085l-15.0811 -15.082c-4.16699 -4.16504 -10.9189 -4.16504 -15.0859 0l-148.732 148.732c-34.8271 -28.209 -79.1035 -45.1914 -127.31 -45.1914c-111.75 0 -202.667 90.917 -202.667 202.668
c0 111.75 90.916 202.667 202.666 202.667c111.751 0 202.668 -90.917 202.668 -202.667c0 -48.2061 -16.9814 -92.4824 -45.1914 -127.31zM202.667 85.332c88.2295 0 160.001 71.7715 160.001 160.001c0 88.2285 -71.7715 160 -160.001 160
c-88.2285 0 -160 -71.7715 -160 -160c0 -88.2295 71.7715 -160.001 160 -160.001z" />
<glyph glyph-name="006-right" unicode="&#xf104;"
d="M508.875 199.542c4.16699 -4.16699 4.16699 -10.917 0.000976562 -15.083l-160 -160c-2.08398 -2.08301 -4.8125 -3.125 -7.54199 -3.125c-2.72852 0 -5.45898 1.04199 -7.54199 3.125c-4.16699 4.16602 -4.16699 10.916 0 15.083l141.792 141.791h-464.917
c-5.89551 0 -10.667 4.77051 -10.667 10.667s4.77148 10.667 10.667 10.667h464.917l-141.792 141.792c-4.16699 4.16602 -4.16699 10.916 0 15.083c4.16602 4.16699 10.916 4.16699 15.083 0z" />
<glyph glyph-name="008-chat" unicode="&#xf106;"
d="M444.555 256.859c4.14258 0 7.5 -3.3584 7.5 -7.5c0 -4.14258 -3.35742 -7.5 -7.5 -7.5h-238c-4.1416 0 -7.5 3.35742 -7.5 7.5c0 4.1416 3.3584 7.5 7.5 7.5h238zM444.555 199.526c4.14258 0 7.5 -3.3584 7.5 -7.5c0 -4.14258 -3.35742 -7.5 -7.5 -7.5h-238
c-4.1416 0 -7.5 3.35742 -7.5 7.5c0 4.1416 3.3584 7.5 7.5 7.5h238zM444.555 142.193c4.14258 0 7.5 -3.3584 7.5 -7.5c0 -4.14258 -3.35742 -7.5 -7.5 -7.5h-238c-4.1416 0 -7.5 3.35742 -7.5 7.5c0 4.1416 3.3584 7.5 7.5 7.5h238zM468.378 322.451
c24.0537 0 43.6221 -19.5684 43.6221 -43.6211v-179.618c0 -21.2178 -15.4277 -39.0986 -35.6533 -42.877v-77.1533c0 -5.63867 -3.44141 -10.4775 -8.76855 -12.3281c-1.44434 -0.501953 -2.91602 -0.744141 -4.36328 -0.744141
c-3.89258 0 -7.61133 1.75781 -10.1592 4.9834l-64.6543 81.8535c-1.32812 1.68066 -3.31738 2.64355 -5.45801 2.64355h-200.211c-24.0547 0 -43.6221 19.5693 -43.6221 43.6221v179.617c0 24.0537 19.5684 43.6221 43.6221 43.6221h285.646zM497 99.2119v179.618
c0 15.7822 -12.8398 28.6221 -28.6221 28.6221h-285.646c-15.7832 0 -28.6221 -12.8398 -28.6221 -28.6221v-179.617c0 -15.7822 12.8398 -28.6221 28.6221 -28.6221h200.211c6.75977 0 13.04 -3.04199 17.2285 -8.34668l61.1738 -77.4473v78.3047
c0 4.10547 3.30078 7.44727 7.4043 7.5c15.5771 0.198242 28.25 13.0332 28.25 28.6104zM110.494 198.439c4.10645 0.584961 7.89746 -2.27051 8.47949 -6.37109c0.583008 -4.10156 -2.26953 -7.89844 -6.37109 -8.48047
c-1.29785 -0.18457 -2.46094 -0.852539 -3.27246 -1.88184l-56.2842 -71.2559c-2.40723 -3.04688 -5.92188 -4.70898 -9.59863 -4.70898c-1.36816 0 -2.75781 0.229492 -4.12305 0.704102c-5.03418 1.74805 -8.28613 6.32031 -8.28613 11.6484v66.3662
c-17.667 3.68652 -31.0381 19.457 -31.0381 38.124v156.361c0 21.4736 17.4707 38.9443 38.9453 38.9443h248.663c21.4736 0 38.9443 -17.4707 38.9443 -38.9443v-28.9326c0 -4.1416 -3.35742 -7.5 -7.5 -7.5c-4.1416 0 -7.5 3.3584 -7.5 7.5v28.9326
c0 13.2031 -10.7422 23.9443 -23.9443 23.9443h-248.663c-13.2031 0 -23.9453 -10.7412 -23.9453 -23.9443v-156.361c0 -13.0322 10.6016 -23.7686 23.6328 -23.9346c4.10449 -0.0537109 7.4043 -3.39551 7.4043 -7.5v-65.3711l51.5205 65.2256
c3.21191 4.06641 7.80664 6.70703 12.9365 7.43555z" />
<glyph glyph-name="009-video-call" unicode="&#xf107;"
d="M296 192c0 -22.0557 -17.9443 -40 -40 -40s-40 17.9443 -40 40s17.9443 40 40 40s40 -17.9443 40 -40zM256 172c11.0283 0 20 8.97168 20 20s-8.97168 20 -20 20s-20 -8.97168 -20 -20s8.97168 -20 20 -20zM70 -28c-38.5977 0 -70 31.4023 -70 70
c0 5.52344 4.47754 10 10 10h35v260c0 5.52344 4.47754 10 10 10h71v80c0 5.52344 4.47754 10 10 10h150c5.52246 0 10 -4.47656 10 -10v-41.3154l74.4531 49.6357c3.06641 2.0459 7.01367 2.23633 10.2656 0.49707c3.25098 -1.74023 5.28125 -5.12891 5.28125 -8.81738v-80
h71c5.52246 0 10 -4.47656 10 -10v-260h35c5.52246 0 10 -4.47656 10 -10c0 -38.5977 -31.4023 -70 -70 -70h-141c-5.52246 0 -10 4.47656 -10 10s4.47754 10 10 10h141c24.1465 0 44.3496 17.2061 48.9951 40.0098h-469.99
c4.64551 -22.8037 24.8486 -40.0098 48.9951 -40.0098h141c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-141zM306 52v30c0 27.5703 -22.4297 50 -50 50s-50 -22.4297 -50 -50v-30h100zM366 383.315l-61.9727 -41.3154l61.9727 -41.3154v82.6309zM146 392v-100h130
v100h-130zM65 302v-250h121v30c0 38.5977 31.4023 70 70 70s70 -31.4023 70 -70v-30h121v250h-61v-20c0 -3.68848 -2.03027 -7.07715 -5.28125 -8.81738c-3.24707 -1.73633 -7.19238 -1.55176 -10.2656 0.49707l-74.4531 49.6357v-41.3154c0 -5.52344 -4.47754 -10 -10 -10
h-150c-5.52246 0 -10 4.47656 -10 10v20h-61zM246 -18c0 5.52246 4.47754 10 10 10s10 -4.47754 10 -10s-4.47754 -10 -10 -10s-10 4.47754 -10 10z" />
<glyph glyph-name="007-left" unicode="&#xf105;"
d="M501.333 202.667c5.89551 0 10.668 -4.77051 10.668 -10.667s-4.77051 -10.667 -10.667 -10.667h-464.917l141.793 -141.791c4.16699 -4.16602 4.16699 -10.916 0 -15.083c-2.08398 -2.08301 -4.8125 -3.125 -7.54199 -3.125c-2.72852 0 -5.45898 1.04199 -7.54199 3.125
l-160 160c-4.16699 4.16602 -4.16699 10.916 0 15.083l160 160c4.16602 4.16699 10.916 4.16699 15.083 0c4.16699 -4.16602 4.16699 -10.916 0 -15.083l-141.792 -141.792h464.916z" />
<glyph glyph-name="018-share" unicode="&#xf110;"
d="M389.332 288c-44.0938 0 -80 35.8828 -80 80s35.9062 80 80 80c44.0977 0 80 -35.8828 80 -80s-35.9023 -80 -80 -80zM389.332 416c-26.4531 0 -48 -21.5234 -48 -48s21.5469 -48 48 -48s48 21.5234 48 48s-21.5469 48 -48 48zM389.332 416zM389.332 -64
c-44.0938 0 -80 35.8828 -80 80s35.9062 80 80 80c44.0977 0 80 -35.8828 80 -80s-35.9023 -80 -80 -80zM389.332 64c-26.4531 0 -48 -21.5234 -48 -48s21.5469 -48 48 -48s48 21.5234 48 48s-21.5469 48 -48 48zM389.332 64zM80 112c-44.0977 0 -80 35.8828 -80 80
s35.9023 80 80 80s80 -35.8828 80 -80s-35.9023 -80 -80 -80zM80 240c-26.4531 0 -48 -21.5234 -48 -48s21.5469 -48 48 -48s48 21.5234 48 48s-21.5469 48 -48 48zM80 240zM135.703 207.574c-5.57031 0 -10.9883 2.90234 -13.9102 8.0625
c-4.375 7.67969 -1.70703 17.4531 5.97266 21.8242l197.953 112.855c7.65625 4.41406 17.4492 1.72656 21.8008 -5.97656c4.375 -7.67969 1.70703 -17.4492 -5.97266 -21.8242l-197.953 -112.852c-2.49609 -1.40625 -5.20312 -2.08984 -7.89062 -2.08984zM135.703 207.574z
M333.633 31.5742c-2.6875 0 -5.39844 0.683594 -7.89453 2.10938l-197.953 112.855c-7.67969 4.37109 -10.3438 14.1445 -5.97266 21.8242c4.35156 7.69922 14.125 10.3672 21.8047 5.97266l197.949 -112.852c7.67969 -4.375 10.3477 -14.1445 5.97656 -21.8242
c-2.94531 -5.18359 -8.36328 -8.08594 -13.9102 -8.08594zM333.633 31.5742z" />
<glyph glyph-name="013-double-left-angle-arrows" unicode="&#xf10b;"
d="M310.973 7.11914c16.2969 -16.2969 16.2969 -42.6748 0 -58.9053c-8.11523 -8.13086 -18.7969 -12.1973 -29.4775 -12.1973c-10.665 0 -21.2959 4.06641 -29.4609 12.1973l-243.786 243.77l243.786 243.803c16.2969 16.2969 42.6416 16.2969 58.9053 0
c16.2969 -16.2803 16.2969 -42.6592 0 -58.9053l-184.864 -184.897zM306.64 191.983l184.914 -184.864c16.2803 -16.2461 16.2803 -42.625 0 -58.9053c-8.14844 -8.13086 -18.7959 -12.1973 -29.4609 -12.1973c-10.6807 0 -21.3623 4.06641 -29.4609 12.1973
l-243.802 243.77l243.818 243.786c16.2139 16.2959 42.5586 16.2959 58.8721 0c16.3135 -16.2139 16.3135 -42.5918 0 -58.9053z" />
<glyph glyph-name="012-layers" unicode="&#xf10a;"
d="M512 192.014c0 -12.126 -6.4541 -23.2168 -17.2715 -29.6719c-7.7627 -4.61914 -17.5488 -10.4355 -28.5322 -16.957l28.5098 -16.7725c10.8398 -6.43262 17.2949 -17.5234 17.2949 -29.6943c0 -12.126 -6.4541 -23.2168 -17.2725 -29.6719
c-46.1133 -27.4336 -159.455 -94.7207 -216.022 -127.154c-6.95508 -3.98926 -14.8193 -6.0918 -22.7051 -6.0918c-7.88672 0 -15.751 2.10254 -22.6826 6.08008c-56.5908 32.4443 -169.933 99.7324 -216.046 127.154c-10.8174 6.4668 -17.2725 17.5576 -17.2725 29.6836
c0 12.1709 6.45508 23.2617 17.2949 29.6943l28.5049 16.7686c-10.9805 6.51758 -20.7656 12.333 -28.5273 16.9492c-10.8174 6.4668 -17.2725 17.5576 -17.2725 29.6836c0 12.1709 6.45508 23.2627 17.2949 29.6943l28.5049 16.7686
c-10.9805 6.51855 -20.7656 12.334 -28.5273 16.9492c-10.8174 6.4668 -17.2725 17.5586 -17.2725 29.6836c0 12.1719 6.45508 23.2627 17.2939 29.6934c53.9102 31.9229 215.91 127.076 215.91 127.076c14.9092 8.30762 31.6816 7.99023 45.4775 0.0683594
c59.5684 -34.1484 180.409 -105.96 216.046 -127.154c10.8174 -6.4668 17.2725 -17.5576 17.2725 -29.6836c0 -12.125 -6.4541 -23.2168 -17.2725 -29.6709c-7.7627 -4.61914 -17.5498 -10.4365 -28.5322 -16.958l28.5098 -16.7725
c10.8398 -6.43164 17.2949 -17.5234 17.2949 -29.6943zM29.1816 275.397c46.0449 -27.375 159.25 -94.5908 215.705 -126.942c6.9541 -3.97754 15.249 -3.99023 22.25 0.0107422c56.4316 32.3408 169.637 99.5576 215.682 126.943
c1.77246 1.05762 5.90918 4.12598 5.90918 9.68164c0 5.55664 -4.13672 8.625 -5.90918 9.69336c-35.5684 21.1592 -156.296 92.8867 -215.705 126.943c-6.86328 3.93164 -14.9541 4.09082 -22.3633 -0.0791016c0.0224609 0.0107422 -161.75 -95.001 -215.591 -126.888
c-1.77344 -1.0459 -5.88672 -4.09082 -5.88672 -9.6709c0 -5.55566 4.13672 -8.62402 5.90918 -9.69238zM482.841 108.58l-39.4922 23.2383c-53.373 -31.6416 -123.776 -73.2051 -164.643 -96.6357c-6.95508 -3.98828 -14.8193 -6.09082 -22.7051 -6.09082
c-7.88672 0 -15.751 2.10254 -22.6826 6.0791c-40.8838 23.4385 -111.294 65.0088 -164.67 96.6465l-39.4893 -23.2373c-1.77344 -1.04688 -5.88672 -4.09082 -5.88672 -9.6709c0 -5.55664 4.13672 -8.625 5.90918 -9.69336
c46.0449 -27.375 159.25 -94.5918 215.705 -126.943c6.9541 -3.97754 15.249 -3.98926 22.25 0.0107422c56.4316 32.3408 169.637 99.5576 215.682 126.943c1.77246 1.05762 5.90918 4.125 5.90918 9.68262c0 5.58008 -4.11328 8.625 -5.88672 9.6709zM482.818 182.317
c1.77246 1.05762 5.90918 4.12598 5.91016 9.68164c0 5.58008 -4.11328 8.62598 -5.88672 9.6709l-39.4932 23.2393c-53.373 -31.6416 -123.776 -73.2061 -164.643 -96.6367c-6.95508 -3.98828 -14.8193 -6.08984 -22.7051 -6.08984
c-7.88672 0 -15.751 2.10156 -22.6826 6.0791c-40.8838 23.4385 -111.294 65.0088 -164.67 96.6465l-39.4893 -23.2383c-1.77344 -1.0459 -5.88672 -4.09082 -5.88672 -9.6709c0 -5.55566 4.13672 -8.62402 5.90918 -9.69238
c46.0449 -27.375 159.25 -94.5908 215.705 -126.943c6.9541 -3.97754 15.249 -3.98926 22.25 0.0107422c56.4316 32.3408 169.637 99.5576 215.682 126.943z" />
<glyph glyph-name="011-time-management" unicode="&#xf109;"
d="M352 215.76c71.2803 -4.16016 128 -63.46 128 -135.76c0 -74.9902 -61.0098 -136 -136 -136h-336c-4.41602 0 -8 3.58398 -8 8v480c0 4.41602 3.58398 8 8 8h336c4.41602 0 8 -3.58398 8 -8v-216.24zM16 -40h264.06c-39.7412 21.1982 -72.0244 74.958 -72.0596 120
c0 72.2998 56.7197 131.6 128 135.76v208.24h-320v-464zM344 -40c66.166 0.0742188 119.926 53.834 120 120c0 66.2402 -53.7598 120 -120 120s-120 -53.7598 -120 -120s53.7598 -120 120 -120zM344 192c61.7559 -0.0673828 111.933 -50.2441 112 -112
c0 -61.8242 -50.1758 -112 -112 -112s-112 50.1758 -112 112s50.1758 112 112 112zM344 -16c52.9287 0.0634766 95.9365 43.0713 96 96c0 52.9922 -43.0078 96 -96 96s-96 -43.0078 -96 -96s43.0078 -96 96 -96zM377.66 57.6602
c1.29395 -1.29395 2.34473 -3.83008 2.34473 -5.66016c0 -4.41797 -3.58691 -8.00488 -8.00488 -8.00488c-1.83008 0 -4.36621 1.05078 -5.66016 2.34473l-12 12.0098c-2.69434 -1.29688 -7.30762 -2.34961 -10.2979 -2.34961h-0.0419922
c-13.2363 0.0117188 -23.9795 10.7637 -23.9795 24c0 9.3584 7.15918 19.4922 15.9795 22.6201v41.3799c0 4.41602 3.58398 8 8 8s8 -3.58398 8 -8v-41.3799c8.82031 -3.12793 15.9883 -13.2617 16 -22.6201v-0.0419922c0 -2.99023 -1.05273 -7.60352 -2.34961 -10.2979z
M344 72c4.41016 0.00585938 7.99414 3.58984 8 8c0 4.41602 -3.58398 8 -8 8s-8 -3.58398 -8 -8s3.58398 -8 8 -8zM40 336c-4.41602 0 -8 3.58398 -8 8v56c0 4.41602 3.58398 8 8 8h272c4.41602 0 8 -3.58398 8 -8v-56c0 -4.41602 -3.58398 -8 -8 -8h-272zM48 392v-40h256
v40h-256zM88 320c4.41602 0 8 -3.58398 8 -8v-48c0 -4.41602 -3.58398 -8 -8 -8h-48c-4.41602 0 -8 3.58398 -8 8v48c0 4.41602 3.58398 8 8 8h48zM80 272v32h-32v-32h32zM312 320c4.41602 0 8 -3.58398 8 -8s-3.58398 -8 -8 -8h-192c-4.41602 0 -8 3.58398 -8 8
s3.58398 8 8 8h192zM312 296c4.41602 0 8 -3.58398 8 -8s-3.58398 -8 -8 -8h-192c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h192zM120 256c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h96c4.41602 0 8 -3.58398 8 -8s-3.58398 -8 -8 -8h-96zM88 240
c4.41602 0 8 -3.58398 8 -8v-48c0 -4.41602 -3.58398 -8 -8 -8h-48c-4.41602 0 -8 3.58398 -8 8v48c0 4.41602 3.58398 8 8 8h48zM80 192v32h-32v-32h32zM280 240c4.41602 0 8 -3.58398 8 -8s-3.58398 -8 -8 -8h-160c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h160zM216 216
c4.41602 0 8 -3.58398 8 -8s-3.58398 -8 -8 -8h-96c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h96zM216 192c4.41602 0 8 -3.58398 8 -8s-3.58398 -8 -8 -8h-96c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h96zM88 152c4.41602 0 8 -3.58398 8 -8v-48
c0 -4.41602 -3.58398 -8 -8 -8h-48c-4.41602 0 -8 3.58398 -8 8v48c0 4.41602 3.58398 8 8 8h48zM80 104v32h-32v-32h32zM184 152c4.41602 0 8 -3.58398 8 -8s-3.58398 -8 -8 -8h-64c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h64zM184 128c4.41602 0 8 -3.58398 8 -8
s-3.58398 -8 -8 -8h-64c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h64zM184 104c4.41602 0 8 -3.58398 8 -8s-3.58398 -8 -8 -8h-64c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h64zM248 256h-8c-4.41602 0 -8 3.58398 -8 8s3.58398 8 8 8h8c4.41602 0 8 -3.58398 8 -8
s-3.58398 -8 -8 -8z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
+5
View File
File diff suppressed because one or more lines are too long
+3220
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+47
View File
@@ -0,0 +1,47 @@
/*
Flaticon icon font: Flaticon
Creation date: 15/06/2021 06:32
*/
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.eot");
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
url("./Flaticon.woff2") format("woff2"),
url("./Flaticon.woff") format("woff"),
url("./Flaticon.ttf") format("truetype"),
url("./Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-style: normal;
}
.flaticon-play:before { content: "\f100"; }
.flaticon-search:before { content: "\f101"; }
.flaticon-data-management:before { content: "\f102"; }
.flaticon-pdf:before { content: "\f103"; }
.flaticon-right:before { content: "\f104"; }
.flaticon-left:before { content: "\f105"; }
.flaticon-chat:before { content: "\f106"; }
.flaticon-video-call:before { content: "\f107"; }
.flaticon-search-1:before { content: "\f108"; }
.flaticon-time-management:before { content: "\f109"; }
.flaticon-layers:before { content: "\f10a"; }
.flaticon-double-left-angle-arrows:before { content: "\f10b"; }
.flaticon-double-angle-arrow-pointing-to-right:before { content: "\f10c"; }
.flaticon-reload:before { content: "\f10d"; }
.flaticon-eye:before { content: "\f10e"; }
.flaticon-chat-1:before { content: "\f10f"; }
.flaticon-share:before { content: "\f110"; }
+540
View File
@@ -0,0 +1,540 @@
<!DOCTYPE html>
<!--
Flaticon icon font: Flaticon
Creation date: 15/06/2021 06:32
-->
<html>
<!DOCTYPE html>
<html>
<head>
<title>Flaticon WebFont</title>
<link href="http://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="flaticon.css">
<meta charset="UTF-8">
<style>
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
font-family: 'Varela Round', Helvetica, Arial, sans-serif;
font-size: 16px;
color: #222;
}
a {
color: #333;
border-bottom: 1px solid #a9fd00;
font-weight: bold;
text-decoration: none;
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 30px;
font-style: normal;
margin-left: 20px;
color: #333;
}
.wrapper {
max-width: 600px;
margin: auto;
padding: 0 1em;
}
.title {
font-size: 1.25em;
text-align: center;
margin-bottom: 1em;
text-transform: uppercase;
}
header {
text-align: center;
background-color: #222;
color: #fff;
padding: 1em;
}
header .logo {
width: 210px;
height: 38px;
display: inline-block;
vertical-align: middle;
margin-right: 1em;
border: none;
}
header strong {
font-size: 1.95em;
font-weight: bold;
vertical-align: middle;
margin-top: 5px;
display: inline-block;
}
.demo {
margin: 2em auto;
line-height: 1.25em;
}
.demo ul li {
margin-bottom: 1em;
}
.demo ul li .num {
color: #222;
border-radius: 20px;
display: inline-block;
width: 26px;
padding: 3px;
height: 26px;
text-align: center;
margin-right: 0.5em;
border: 1px solid #222;
}
.demo ul li code {
background-color: #222;
border-radius: 4px;
padding: 0.25em 0.5em;
display: inline-block;
color: #fff;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
font-weight: lighter;
margin-top: 1em;
font-size: 0.8em;
word-break: break-all;
}
.demo ul li code.big {
padding: 1em;
font-size: 0.9em;
}
.demo ul li code .red {
color: #EF3159;
}
.demo ul li code .green {
color: #ACFF65;
}
.demo ul li code .yellow {
color: #FFFF99;
}
.demo ul li code .blue {
color: #99D3FF;
}
.demo ul li code .purple {
color: #A295FF;
}
.demo ul li code .dots {
margin-top: 0.5em;
display: block;
}
#glyphs {
border-bottom: 1px solid #ccc;
padding: 2em 0;
text-align: center;
}
.glyph {
display: inline-block;
width: 9em;
margin: 1em;
text-align: center;
vertical-align: top;
background: #FFF;
}
.glyph .glyph-icon {
padding: 10px;
display: block;
font-family:"Flaticon";
font-size: 64px;
line-height: 1;
}
.glyph .glyph-icon:before {
font-size: 64px;
color: #222;
margin-left: 0;
}
.class-name {
font-size: 0.65em;
background-color: #222;
color: #fff;
border-radius: 4px 4px 0 0;
padding: 0.5em;
color: #FFFF99;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
}
.author-name {
font-size: 0.6em;
background-color: #fcfcfd;
border: 1px solid #DEDEE4;
border-top: 0;
border-radius: 0 0 4px 4px;
padding: 0.5em;
}
.class-name:last-child {
font-size: 10px;
color:#888;
}
.class-name:last-child a {
font-size: 10px;
color:#555;
}
.class-name:last-child a:hover {
color:#a9fd00;
}
.glyph > input {
display: block;
width: 100px;
margin: 5px auto;
text-align: center;
font-size: 12px;
cursor: text;
}
.glyph > input.icon-input {
font-family:"Flaticon";
font-size: 16px;
margin-bottom: 10px;
}
.attribution .title {
margin-top: 2em;
}
.attribution textarea {
background-color: #fcfcfd;
padding: 1em;
border: none;
box-shadow: none;
border: 1px solid #DEDEE4;
border-radius: 4px;
resize: none;
width: 100%;
height: 150px;
font-size: 0.8em;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
-webkit-appearance: none;
}
.iconsuse {
margin: 2em auto;
text-align: center;
max-width: 1200px;
}
.iconsuse:after {
content: '';
display: table;
clear: both;
}
.iconsuse .image {
float: left;
width: 25%;
padding: 0 1em;
}
.iconsuse .image p {
margin-bottom: 1em;
}
.iconsuse .image span {
display: block;
font-size: 0.65em;
background-color: #222;
color: #fff;
border-radius: 4px;
padding: 0.5em;
color: #FFFF99;
margin-top: 1em;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
}
#footer {
text-align: center;
background-color: #4C5B5C;
color: #7c9192;
padding: 1em;
}
#footer a {
border: none;
color: #a9fd00;
font-weight: normal;
}
@media (max-width: 960px) {
.iconsuse .image {
width: 50%;
}
}
@media (max-width: 560px) {
.iconsuse .image {
width: 100%;
}
}
</style>
</head>
<body class="characters-off">
<header>
<a href="https://www.flaticon.com" target="_blank" class="logo">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" viewBox="0 0 560.875 102.036" enable-background="new 0 0 560.875 102.036" xml:space="preserve">
<defs>
</defs>
<g>
<g class="letters">
<path fill="#ffffff" d="M141.596,29.675c0-3.777,2.985-6.767,6.764-6.767h34.438c3.426,0,6.15,2.728,6.15,6.15
c0,3.43-2.724,6.149-6.15,6.149h-27.674v13.091h23.719c3.429,0,6.151,2.724,6.151,6.15c0,3.43-2.723,6.149-6.151,6.149h-23.719
v17.574c0,3.773-2.986,6.761-6.764,6.761c-3.779,0-6.764-2.989-6.764-6.761V29.675z"></path>
<path fill="#ffffff" d="M193.844,29.149c0-3.781,2.985-6.767,6.764-6.767c3.776,0,6.763,2.985,6.763,6.767v42.957h25.039
c3.426,0,6.149,2.726,6.149,6.153c0,3.425-2.723,6.15-6.149,6.15h-31.802c-3.779,0-6.764-2.986-6.764-6.768V29.149z"></path>
<path fill="#ffffff" d="M241.891,75.71l21.438-48.407c1.492-3.341,4.215-5.357,7.906-5.357h0.792
c3.686,0,6.323,2.017,7.815,5.357l21.439,48.407c0.436,0.967,0.701,1.845,0.701,2.723c0,3.602-2.809,6.501-6.414,6.501
c-3.161,0-5.269-1.845-6.499-4.655l-4.132-9.661h-27.059l-4.301,10.102c-1.144,2.631-3.426,4.214-6.237,4.214
c-3.517,0-6.24-2.81-6.24-6.325C241.1,77.64,241.451,76.677,241.891,75.71z M279.932,58.666l-8.521-20.297l-8.526,20.297H279.932
z"></path>
<path fill="#ffffff" d="M314.864,35.387H301.86c-3.429,0-6.239-2.813-6.239-6.238c0-3.429,2.811-6.24,6.239-6.24h39.533
c3.426,0,6.237,2.811,6.237,6.24c0,3.425-2.811,6.238-6.237,6.238h-13.001v42.785c0,3.773-2.99,6.761-6.764,6.761
c-3.779,0-6.764-2.989-6.764-6.761V35.387z"></path>
<path fill="#A9FD00" d="M352.615,29.149c0-3.781,2.985-6.767,6.767-6.767c3.774,0,6.761,2.985,6.761,6.767v49.024
c0,3.773-2.987,6.761-6.761,6.761c-3.781,0-6.767-2.989-6.767-6.761V29.149z"></path>
<path fill="#A9FD00" d="M374.132,53.836v-0.179c0-17.481,13.178-31.801,32.065-31.801c9.22,0,15.459,2.458,20.557,6.238
c1.402,1.054,2.637,2.985,2.637,5.357c0,3.692-2.985,6.59-6.681,6.59c-1.845,0-3.071-0.702-4.044-1.319
c-3.776-2.813-7.729-4.393-12.562-4.393c-10.364,0-17.831,8.611-17.831,19.154v0.173c0,10.542,7.291,19.329,17.831,19.329
c5.715,0,9.492-1.756,13.359-4.834c1.049-0.874,2.458-1.491,4.039-1.491c3.429,0,6.325,2.813,6.325,6.236
c0,2.106-1.056,3.78-2.282,4.834c-5.539,4.834-12.036,7.733-21.878,7.733C387.572,85.464,374.132,71.493,374.132,53.836z"></path>
<path fill="#A9FD00" d="M433.009,53.836v-0.179c0-17.481,13.79-31.801,32.766-31.801c18.981,0,32.592,14.143,32.592,31.628v0.173
c0,17.483-13.785,31.807-32.769,31.807C446.625,85.464,433.009,71.32,433.009,53.836z M484.224,53.836v-0.179
c0-10.539-7.725-19.326-18.626-19.326c-10.893,0-18.449,8.611-18.449,19.154v0.173c0,10.542,7.73,19.329,18.626,19.329
C476.676,72.986,484.224,64.378,484.224,53.836z"></path>
<path fill="#A9FD00" d="M506.233,29.321c0-3.774,2.99-6.763,6.767-6.763h1.401c3.252,0,5.183,1.583,7.029,3.953l26.093,34.265
V29.059c0-3.692,2.99-6.677,6.681-6.677c3.683,0,6.671,2.985,6.671,6.677v48.934c0,3.78-2.987,6.765-6.764,6.765h-0.436
c-3.257,0-5.188-1.581-7.034-3.953l-27.056-35.492v32.944c0,3.687-2.985,6.676-6.678,6.676c-3.683,0-6.673-2.989-6.673-6.676
V29.321z"></path>
</g>
<g class="insignia">
<path fill="#ffffff" d="M48.372,56.137h12.517l11.156-18.537H37.186L25.688,18.539h57.825L94.668,0H9.271
C5.925,0,2.842,1.801,1.198,4.716c-1.644,2.907-1.593,6.482,0.134,9.343l50.38,83.501c1.678,2.781,4.689,4.476,7.938,4.476
c3.246,0,6.257-1.695,7.935-4.476l2.898-4.804L48.372,56.137z"></path>
<g class="i">
<path fill="#A9FD00" d="M93.575,18.539h0.031v0.004l21.652,0.004l2.705-4.488c1.727-2.861,1.778-6.436,0.133-9.343
C116.454,1.801,113.371,0,110.026,0h-5.294L93.575,18.539z"></path>
<polygon fill="#A9FD00" points="88.291,27.356 64.725,66.486 75.519,84.404 109.942,27.356"></polygon>
</g>
</g>
</g>
</svg>
</a>
<strong>Font Demo</strong>
</header>
<section class="demo wrapper">
<p class="title">Instructions</p>
<ul>
<li>
<span class="num">1</span>Copy the "Fonts" files and CSS files to your website CSS folder.
</li>
<li>
<span class="num">2</span>Add the CSS link to your website source code on header.
<code class="big">
&lt;<span class="red">head</span>&gt;
<br/><span class="dots">...</span>
<br/>&lt;<span class="red">link</span> <span class="green">rel</span>=<span class="yellow">"stylesheet"</span> <span class="green">type</span>=<span class="yellow">"text/css"</span> <span class="green">href</span>=<span class="yellow">"your_website_domain/css_root/flaticon.css"</span>&gt;
<br/><span class="dots">...</span>
<br/>&lt;/<span class="red">head</span>&gt;
</code>
</li>
<li>
<p>
<span class="num">3</span>Use the icon class on <code>"<span class="blue">display</span>:<span class="purple"> inline</span>"</code> elements:
<br />
Use example: <code>&lt;<span class="red">i</span> <span class="green">class</span>=<span class="yellow">&quot;flaticon-airplane49&quot;</span>&gt;&lt;/<span class="red">i</span>&gt;</code> or <code>&lt;<span class="red">span</span> <span class="green">class</span>=<span class="yellow">&quot;flaticon-airplane49&quot;</span>&gt;&lt;/<span class="red">span</span>&gt;</code>
</li>
</ul>
</section>
<section id="glyphs">
<div class="glyph"><div class="glyph-icon flaticon-play"></div>
<div class="class-name">.flaticon-play</div>
<div class="author-name">Author: <a data-file="001-play" href="https://www.flaticon.com/authors/roundicons">Roundicons</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-search"></div>
<div class="class-name">.flaticon-search</div>
<div class="author-name">Author: <a data-file="002-search" href="https://www.flaticon.com/authors/those-icons">Those Icons</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-data-management"></div>
<div class="class-name">.flaticon-data-management</div>
<div class="author-name">Author: <a data-file="003-data-management" href="http://www.freepik.com">Freepik</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-pdf"></div>
<div class="class-name">.flaticon-pdf</div>
<div class="author-name">Author: <a data-file="005-pdf" href="https://www.flaticon.com/authors/vitaly-gorbachev">Vitaly Gorbachev</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-right"></div>
<div class="class-name">.flaticon-right</div>
<div class="author-name">Author: <a data-file="006-right" href="https://www.flaticon.com/authors/those-icons">Those Icons</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-left"></div>
<div class="class-name">.flaticon-left</div>
<div class="author-name">Author: <a data-file="007-left" href="https://www.flaticon.com/authors/those-icons">Those Icons</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-chat"></div>
<div class="class-name">.flaticon-chat</div>
<div class="author-name">Author: <a data-file="008-chat" href="http://www.freepik.com">Freepik</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-video-call"></div>
<div class="class-name">.flaticon-video-call</div>
<div class="author-name">Author: <a data-file="009-video-call" href="http://www.freepik.com">Freepik</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-search-1"></div>
<div class="class-name">.flaticon-search-1</div>
<div class="author-name">Author: <a data-file="010-search-1" href="https://www.flaticon.com/authors/pixel-perfect">Pixel perfect</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-time-management"></div>
<div class="class-name">.flaticon-time-management</div>
<div class="author-name">Author: <a data-file="011-time-management" href="https://www.flaticon.com/authors/xnimrodx">xnimrodx</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-layers"></div>
<div class="class-name">.flaticon-layers</div>
<div class="author-name">Author: <a data-file="012-layers" href="https://www.flaticon.com/authors/those-icons">Those Icons</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-double-left-angle-arrows"></div>
<div class="class-name">.flaticon-double-left-angle-arrows</div>
<div class="author-name">Author: <a data-file="013-double-left-angle-arrows" href="http://www.freepik.com">Freepik</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-double-angle-arrow-pointing-to-right"></div>
<div class="class-name">.flaticon-double-angle-arrow-pointing-to-right</div>
<div class="author-name">Author: <a data-file="014-double-angle-arrow-pointing-to-right" href="http://www.freepik.com">Freepik</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-reload"></div>
<div class="class-name">.flaticon-reload</div>
<div class="author-name">Author: <a data-file="015-reload" href="https://www.flaticon.com/authors/vitaly-gorbachev">Vitaly Gorbachev</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-eye"></div>
<div class="class-name">.flaticon-eye</div>
<div class="author-name">Author: <a data-file="016-eye" href="https://www.flaticon.com/authors/bqlqn">bqlqn</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-chat-1"></div>
<div class="class-name">.flaticon-chat-1</div>
<div class="author-name">Author: <a data-file="017-chat-1" href="http://www.freepik.com">Freepik</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-share"></div>
<div class="class-name">.flaticon-share</div>
<div class="author-name">Author: <a data-file="018-share" href="https://www.flaticon.com/authors/pixel-perfect">Pixel perfect</a> </div>
</div>
</section>
<section class="attribution wrapper" style="text-align:center;">
<div class="title">License and attribution:</div><div class="attrDiv">Font generated by <a href="https://www.flaticon.com">flaticon.com</a>. <div><p>Under <a href="http://creativecommons.org/licenses/by/3.0/">CC</a>: <a data-file="001-play" href="https://www.flaticon.com/authors/roundicons">Roundicons</a>, <a data-file="017-chat-1" href="http://www.freepik.com">Freepik</a>, <a data-file="012-layers" href="https://www.flaticon.com/authors/those-icons">Those Icons</a>, <a data-file="015-reload" href="https://www.flaticon.com/authors/vitaly-gorbachev">Vitaly Gorbachev</a>, <a data-file="018-share" href="https://www.flaticon.com/authors/pixel-perfect">Pixel perfect</a>, <a data-file="011-time-management" href="https://www.flaticon.com/authors/xnimrodx">xnimrodx</a>, <a data-file="016-eye" href="https://www.flaticon.com/authors/bqlqn">bqlqn</a></p> </div>
</div>
<div class="title">Copy the Attribution License:</div>
<textarea onclick="this.focus();this.select();">Font generated by &lt;a href=&quot;https://www.flaticon.com&quot;&gt;flaticon.com&lt;/a&gt;. <p>Under <a href="http://creativecommons.org/licenses/by/3.0/">CC</a>: <a data-file="001-play" href="https://www.flaticon.com/authors/roundicons">Roundicons</a>, <a data-file="017-chat-1" href="http://www.freepik.com">Freepik</a>, <a data-file="012-layers" href="https://www.flaticon.com/authors/those-icons">Those Icons</a>, <a data-file="015-reload" href="https://www.flaticon.com/authors/vitaly-gorbachev">Vitaly Gorbachev</a>, <a data-file="018-share" href="https://www.flaticon.com/authors/pixel-perfect">Pixel perfect</a>, <a data-file="011-time-management" href="https://www.flaticon.com/authors/xnimrodx">xnimrodx</a>, <a data-file="016-eye" href="https://www.flaticon.com/authors/bqlqn">bqlqn</a></p>
</textarea>
</section>
<section class="iconsuse">
<div class="title">Examples:</div>
<div class="image">
<p>
<i class="glyph-icon flaticon-play"></i>
<span>&lt;i class=&quot;flaticon-play&quot;&gt;&lt;/i&gt;</span>
</p>
</div>
<div class="image">
<p>
<i class="glyph-icon flaticon-search"></i>
<span>&lt;i class=&quot;flaticon-search&quot;&gt;&lt;/i&gt;</span>
</p>
</div>
<div class="image">
<p>
<i class="glyph-icon flaticon-data-management"></i>
<span>&lt;i class=&quot;flaticon-data-management&quot;&gt;&lt;/i&gt;</span>
</p>
</div>
<div class="image">
<p>
<i class="glyph-icon flaticon-pdf"></i>
<span>&lt;i class=&quot;flaticon-pdf&quot;&gt;&lt;/i&gt;</span>
</p>
</div>
</div>
</section>
<div id="footer">
<div>Generated by <a href="https://www.flaticon.com">flaticon.com</a>
</div>
</div>
</body>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Some files were not shown because too many files have changed in this diff Show More