diff --git a/CHANGELOG.md b/CHANGELOG.md index d971149..16feced 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,42 @@ +# v1.5.0 +## 08/17/2018 + +1. [](#new) + * Set minimum requirements to [PHP 5.6.4](https://getgrav.org/blog/raising-php-requirements-2018) + * Updated Doctrine Collections to 1.4 + * Updated Symfony Components to 3.4 (with compatibility mode to fall back to Symfony YAML 2.8) + * Added `Uri::method()` to get current HTTP method (GET/POST etc) + * `FormatterInterface`: Added `getSupportedFileExtensions()` and `getDefaultFileExtension()` methods + * Added option to disable `SimpleCache` key validation + * Added support for multiple repo locations for `bin/grav install` command + * Added twig filters for casting values: `|string`, `|int`, `|bool`, `|float`, `|array` + * Made `ObjectCollection::matching()` criteria expressions to behave more like in Twig + * Criteria: Added support for `LENGTH()`, `LOWER()`, `UPPER()`, `LTRIM()`, `RTRIM()` and `TRIM()` + * Added `Grav\Framework\File\Formatter` classes for encoding/decoding YAML, Markdown, JSON, INI and PHP serialized strings + * Added `Grav\Framework\Session` class to replace `RocketTheme\Toolbox\Session\Session` + * Added `Grav\Common\Media` interfaces and trait; use those in `Page` and `Media` classes + * Added `Grav\Common\Page` interface to allow custom page types in the future + * Added setting to disable sessions from the site [#2013](https://github.com/getgrav/grav/issues/2013) + * Added new `strict_mode` settings in `system.yaml` for compatibility +1. [](#improved) + * Improved `Utils::url()` to support query strings + * Display better exception message if Grav fails to initialize + * Added `muted` and `playsinline` support to videos [#2124](https://github.com/getgrav/grav/pull/2124) + * Added `MediaTrait::clearMediaCache()` to allow cache to be cleared + * Added `MediaTrait::getMediaCache()` to allow custom caching + * Improved session handling, allow all session configuration options in `system.session.options` +1. [](#bugfix) + * Fix broken form nonce logic [#2121](https://github.com/getgrav/grav/pull/2121) + * Fixed issue with uppercase extensions and fallback media URLs [#2133](https://github.com/getgrav/grav/issues/2133) + * Fixed theme inheritance issue with `camel-case` that includes numbers [#2134](https://github.com/getgrav/grav/issues/2134) + * Typo in demo typography page [#2136](https://github.com/getgrav/grav/pull/2136) + * Fix for incorrect plugin order in debugger panel + * Made `|markdown` filter HTML safe + * Fixed bug in `ContentBlock` serialization + * Fixed `Route::withQueryParam()` to accept array values + * Fixed typo in truncate function [#1943](https://github.com/getgrav/grav/issues/1943) + * Fixed blueprint field validation: Allow numeric inputs in text fields + # v1.4.8 ## 07/31/2018 diff --git a/README.md b/README.md index 9164219..5afbe43 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The underlying architecture of Grav is designed to use well-established and _bes # Requirements -- PHP 5.5.9 or higher. Check the [required modules list](https://learn.getgrav.org/basics/requirements#php-requirements) +- PHP 5.6.4 or higher. Check the [required modules list](https://learn.getgrav.org/basics/requirements#php-requirements) - Check the [Apache](https://learn.getgrav.org/basics/requirements#apache-requirements) or [IIS](https://learn.getgrav.org/basics/requirements#iis-requirements) requirements # QuickStart diff --git a/cache/compiled/blueprints/master-dev.hehe.net.php b/cache/compiled/blueprints/master-dev.hehe.net.php index 5c10ac3..29927e1 100644 --- a/cache/compiled/blueprints/master-dev.hehe.net.php +++ b/cache/compiled/blueprints/master-dev.hehe.net.php @@ -1,31 +1,37 @@ 'Grav\\Common\\Config\\CompiledBlueprints', - 'timestamp' => 1534765163, - 'checksum' => '634995e03e46ea3655d934b8b9baffec', + 'timestamp' => 1534926821, + 'checksum' => '7c7845f798548c1030ca7baa4cf61bec', 'files' => [ + 'user/plugins/admin/blueprints/config' => [ + 'media' => [ + 'file' => 'user/plugins/admin/blueprints/config/media.yaml', + 'modified' => 1534926555 + ] + ], 'system/blueprints/config' => [ 'media' => [ 'file' => 'system/blueprints/config/media.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'site' => [ 'file' => 'system/blueprints/config/site.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'streams' => [ 'file' => 'system/blueprints/config/streams.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'system' => [ 'file' => 'system/blueprints/config/system.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ] ], 'user/plugins' => [ 'plugins/admin' => [ 'file' => 'user/plugins/admin/blueprints.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'plugins/markdown-notices' => [ 'file' => 'user/plugins/markdown-notices/blueprints.yaml', @@ -33,7 +39,7 @@ return [ ], 'plugins/form' => [ 'file' => 'user/plugins/form/blueprints.yaml', - 'modified' => 1533014916 + 'modified' => 1534926514 ], 'plugins/login' => [ 'file' => 'user/plugins/login/blueprints.yaml', @@ -66,6 +72,53 @@ return [ 'validation' => 'loose' ] ], + 'media.types' => [ + 'name' => 'media.types', + 'type' => 'list', + 'label' => 'PLUGIN_ADMIN.MEDIA_TYPES', + 'style' => 'vertical', + 'key' => 'extension', + 'controls' => 'both', + 'collapsed' => true, + 'validation' => 'loose', + 'array' => true + ], + 'media.types.*' => [ + 'type' => '_parent', + 'name' => 'media.types.*', + 'form_field' => false + ], + 'media.types.*.type' => [ + 'type' => 'text', + 'label' => 'PLUGIN_ADMIN.TYPE', + 'name' => 'media.types.*.type', + 'validation' => 'loose' + ], + 'media.types.*.thumb' => [ + 'type' => 'text', + 'label' => 'PLUGIN_ADMIN.THUMB', + 'name' => 'media.types.*.thumb', + 'validation' => 'loose' + ], + 'media.types.*.mime' => [ + 'type' => 'text', + 'label' => 'PLUGIN_ADMIN.MIME_TYPE', + 'validate' => [ + 'type' => 'lower' + ], + 'name' => 'media.types.*.mime', + 'validation' => 'loose' + ], + 'media.types.*.image' => [ + 'type' => 'textarea', + 'yaml' => true, + 'label' => 'PLUGIN_ADMIN.IMAGE_OPTIONS', + 'validate' => [ + 'type' => 'yaml' + ], + 'name' => 'media.types.*.image', + 'validation' => 'loose' + ], 'site' => [ 'type' => '_root', 'form_field' => false, @@ -120,17 +173,10 @@ return [ 'name' => 'site.taxonomies', 'validation' => 'loose' ], - 'site.content' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'site.content', - 'validation' => 'loose' - ], 'site.summary' => [ - 'type' => 'section', - 'underline' => true, + 'type' => '_parent', 'name' => 'site.summary', - 'validation' => 'loose' + 'form_field' => false ], 'site.summary.enabled' => [ 'type' => 'toggle', @@ -179,8 +225,8 @@ return [ 'validation' => 'loose' ], 'site.metadata' => [ - 'type' => 'section', - 'underline' => true, + 'type' => 'array', + 'label' => 'PLUGIN_ADMIN.METADATA', 'name' => 'site.metadata', 'validation' => 'loose' ], @@ -191,8 +237,8 @@ return [ 'validation' => 'loose' ], 'site.routes' => [ - 'type' => 'section', - 'underline' => true, + 'type' => 'array', + 'label' => 'PLUGIN_ADMIN.CUSTOM_ROUTES', 'name' => 'site.routes', 'validation' => 'loose' ], @@ -586,17 +632,10 @@ return [ 'name' => 'system.pages.frontmatter.ignore_fields', 'validation' => 'loose' ], - 'system.content' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'system.content', - 'validation' => 'loose' - ], 'system.languages' => [ - 'type' => 'section', - 'underline' => true, + 'type' => '_parent', 'name' => 'system.languages', - 'validation' => 'loose' + 'form_field' => false ], 'system.languages.supported' => [ 'type' => 'selectize', @@ -754,12 +793,6 @@ return [ 'name' => 'system.pages.vary_accept_encoding', 'validation' => 'loose' ], - 'system.http_headers' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'system.http_headers', - 'validation' => 'loose' - ], 'system.pages.markdown' => [ 'type' => '_parent', 'name' => 'system.pages.markdown', @@ -821,12 +854,6 @@ return [ 'name' => 'system.pages.markdown.escape_markup', 'validation' => 'loose' ], - 'system.markdown' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'system.markdown', - 'validation' => 'loose' - ], 'system.cache' => [ 'type' => '_parent', 'name' => 'system.cache', @@ -1029,17 +1056,10 @@ return [ 'name' => 'system.cache.redis.password', 'validation' => 'loose' ], - 'system.caching' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'system.caching', - 'validation' => 'loose' - ], 'system.twig' => [ - 'type' => 'section', - 'underline' => true, + 'type' => '_parent', 'name' => 'system.twig', - 'validation' => 'loose' + 'form_field' => false ], 'system.twig.cache' => [ 'type' => 'toggle', @@ -1112,10 +1132,9 @@ return [ 'validation' => 'loose' ], 'system.assets' => [ - 'type' => 'section', - 'underline' => true, + 'type' => '_parent', 'name' => 'system.assets', - 'validation' => 'loose' + 'form_field' => false ], 'system.assets.css_pipeline' => [ 'type' => 'toggle', @@ -1281,10 +1300,9 @@ return [ 'validation' => 'loose' ], 'system.errors' => [ - 'type' => 'section', - 'underline' => true, + 'type' => '_parent', 'name' => 'system.errors', - 'validation' => 'loose' + 'form_field' => false ], 'system.errors.display' => [ 'type' => 'select', @@ -1317,10 +1335,9 @@ return [ 'validation' => 'loose' ], 'system.debugger' => [ - 'type' => 'section', - 'underline' => true, + 'type' => '_parent', 'name' => 'system.debugger', - 'validation' => 'loose' + 'form_field' => false ], 'system.debugger.enabled' => [ 'type' => 'toggle', @@ -1426,10 +1443,9 @@ return [ 'validation' => 'loose' ], 'system.media' => [ - 'type' => 'section', - 'underline' => true, + 'type' => '_parent', 'name' => 'system.media', - 'validation' => 'loose' + 'form_field' => false ], 'system.media.enable_media_timestamp' => [ 'type' => 'toggle', @@ -1482,10 +1498,9 @@ return [ 'validation' => 'loose' ], 'system.session' => [ - 'type' => 'section', - 'underline' => true, + 'type' => '_parent', 'name' => 'system.session', - 'validation' => 'loose' + 'form_field' => false ], 'system.session.enabled' => [ 'type' => 'hidden', @@ -1502,6 +1517,21 @@ return [ 'name' => 'system.session.enabled', 'validation' => 'loose' ], + 'system.session.initialize' => [ + 'type' => 'toggle', + 'label' => 'PLUGIN_ADMIN.SESSION_INITIALIZE', + 'highlight' => 1, + 'options' => [ + 1 => 'PLUGIN_ADMIN.YES', + 0 => 'PLUGIN_ADMIN.NO' + ], + 'default' => true, + 'validate' => [ + 'type' => 'bool' + ], + 'name' => 'system.session.initialize', + 'validation' => 'loose' + ], 'system.session.timeout' => [ 'type' => 'text', 'size' => 'small', @@ -1756,10 +1786,39 @@ return [ 'name' => 'system.custom_base_url', 'validation' => 'loose' ], - 'system.advanced' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'system.advanced', + 'system.strict_mode' => [ + 'type' => '_parent', + 'name' => 'system.strict_mode', + 'form_field' => false + ], + 'system.strict_mode.yaml_compat' => [ + 'type' => 'toggle', + 'label' => 'PLUGIN_ADMIN.STRICT_YAML_COMPAT', + 'highlight' => 1, + 'default' => 1, + 'options' => [ + 1 => 'PLUGIN_ADMIN.YES', + 0 => 'PLUGIN_ADMIN.NO' + ], + 'validate' => [ + 'type' => 'bool' + ], + 'name' => 'system.strict_mode.yaml_compat', + 'validation' => 'loose' + ], + 'system.strict_mode.twig_compat' => [ + 'type' => 'toggle', + 'label' => 'PLUGIN_ADMIN.STRICT_TWIG_COMPAT', + 'highlight' => 1, + 'default' => 1, + 'options' => [ + 1 => 'PLUGIN_ADMIN.YES', + 0 => 'PLUGIN_ADMIN.NO' + ], + 'validate' => [ + 'type' => 'bool' + ], + 'name' => 'system.strict_mode.twig_compat', 'validation' => 'loose' ], 'plugins.admin' => [ @@ -1774,12 +1833,6 @@ return [ 'name' => 'plugins', 'form_field' => false ], - 'plugins.admin.Basics' => [ - 'type' => 'section', - 'underline' => false, - 'name' => 'plugins.admin.Basics', - 'validation' => 'loose' - ], 'plugins.admin.enabled' => [ 'type' => 'hidden', 'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS', @@ -2078,19 +2131,6 @@ return [ 'name' => 'plugins.admin.hide_modular_page_types', 'validation' => 'loose' ], - 'plugins.admin.MediaResize' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'plugins.admin.MediaResize', - 'validation' => 'loose' - ], - 'plugins.admin.MediaResizeNote' => [ - 'type' => 'spacer', - 'text' => 'PLUGIN_ADMIN.PAGEMEDIA_RESIZER', - 'markdown' => true, - 'name' => 'plugins.admin.MediaResizeNote', - 'validation' => 'loose' - ], 'plugins.admin.pagemedia' => [ 'type' => '_parent', 'name' => 'plugins.admin.pagemedia', @@ -2181,12 +2221,6 @@ return [ 'name' => 'plugins.admin.pagemedia.resize_quality', 'validation' => 'loose' ], - 'plugins.admin.Dashboard' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'plugins.admin.Dashboard', - 'validation' => 'loose' - ], 'plugins.admin.widgets' => [ 'type' => '_parent', 'name' => 'plugins.admin.widgets', @@ -2267,12 +2301,6 @@ return [ 'name' => 'plugins.admin.widgets.dashboard-pages', 'validation' => 'loose' ], - 'plugins.admin.Notifications' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'plugins.admin.Notifications', - 'validation' => 'loose' - ], 'plugins.admin.notifications' => [ 'type' => '_parent', 'name' => 'plugins.admin.notifications', @@ -2338,12 +2366,6 @@ return [ 'name' => 'plugins.admin.notifications.themes', 'validation' => 'loose' ], - 'plugins.admin.Popularity' => [ - 'type' => 'section', - 'underline' => true, - 'name' => 'plugins.admin.Popularity', - 'validation' => 'loose' - ], 'plugins.admin.popularity' => [ 'type' => '_parent', 'name' => 'plugins.admin.popularity', @@ -2564,15 +2586,10 @@ return [ 'name' => 'plugins.form.inline_errors', 'validation' => 'strict' ], - 'plugins.form.general' => [ - 'type' => 'section', - 'name' => 'plugins.form.general', - 'validation' => 'strict' - ], 'plugins.form.files' => [ - 'type' => 'section', + 'type' => '_parent', 'name' => 'plugins.form.files', - 'validation' => 'strict' + 'form_field' => false ], 'plugins.form.files.multiple' => [ 'type' => 'toggle', @@ -2666,9 +2683,9 @@ return [ 'validation' => 'strict' ], 'plugins.form.recaptcha' => [ - 'type' => 'section', + 'type' => '_parent', 'name' => 'plugins.form.recaptcha', - 'validation' => 'strict' + 'form_field' => false ], 'plugins.form.recaptcha.site_key' => [ 'type' => 'text', @@ -2837,15 +2854,10 @@ return [ 'name' => 'plugins.login.user_registration.redirect_after_activation', 'validation' => 'loose' ], - 'plugins.login.routes' => [ - 'type' => 'section', - 'name' => 'plugins.login.routes', - 'validation' => 'loose' - ], 'plugins.login.rememberme' => [ - 'type' => 'section', + 'type' => '_parent', 'name' => 'plugins.login.rememberme', - 'validation' => 'loose' + 'form_field' => false ], 'plugins.login.rememberme.enabled' => [ 'type' => 'toggle', @@ -2880,11 +2892,6 @@ return [ 'name' => 'plugins.login.rememberme.name', 'validation' => 'loose' ], - 'plugins.login.login' => [ - 'type' => 'tab', - 'name' => 'plugins.login.login', - 'validation' => 'loose' - ], 'plugins.login.user_registration.enabled' => [ 'type' => 'toggle', 'label' => 'PLUGIN_ADMIN.ENABLED', @@ -2912,11 +2919,6 @@ return [ 'name' => 'plugins.login.user_registration.default_values', 'validation' => 'loose' ], - 'plugins.login.registration_fields' => [ - 'type' => 'section', - 'name' => 'plugins.login.registration_fields', - 'validation' => 'loose' - ], 'plugins.login.user_registration.groups' => [ 'type' => 'selectize', 'size' => 'large', @@ -2944,12 +2946,6 @@ return [ 'name' => 'plugins.login.user_registration.access.site', 'validation' => 'loose' ], - 'plugins.login.access_levels' => [ - 'type' => 'section', - 'security' => 'admin.super', - 'name' => 'plugins.login.access_levels', - 'validation' => 'loose' - ], 'plugins.login.user_registration.options' => [ 'type' => '_parent', 'name' => 'plugins.login.user_registration.options', @@ -3036,16 +3032,6 @@ return [ 'name' => 'plugins.login.user_registration.options.send_welcome_email', 'validation' => 'loose' ], - 'plugins.login.options' => [ - 'type' => 'section', - 'name' => 'plugins.login.options', - 'validation' => 'loose' - ], - 'plugins.login.registration' => [ - 'type' => 'tab', - 'name' => 'plugins.login.registration', - 'validation' => 'loose' - ], 'plugins.login.max_pw_resets_count' => [ 'type' => 'number', 'size' => 'x-small', @@ -3094,18 +3080,6 @@ return [ 'name' => 'plugins.login.max_login_interval', 'validation' => 'loose' ], - 'plugins.login.Security' => [ - 'type' => 'tab', - 'name' => 'plugins.login.Security', - 'validation' => 'loose' - ], - 'plugins.login.tabs' => [ - 'type' => 'tabs', - 'active' => 1, - 'class' => 'subtle', - 'name' => 'plugins.login.tabs', - 'validation' => 'loose' - ], 'plugins.error' => [ 'type' => '_root', 'form_field' => false, @@ -3440,9 +3414,17 @@ return [ ], 'nested' => [ - 'media' => 'media', + 'media' => [ + 'types' => [ + '*' => [ + 'type' => 'media.types.*.type', + 'thumb' => 'media.types.*.thumb', + 'mime' => 'media.types.*.mime', + 'image' => 'media.types.*.image' + ] + ] + ], 'site' => [ - 'content' => 'site.content', 'title' => 'site.title', 'default_lang' => 'site.default_lang', 'author' => [ @@ -3457,8 +3439,8 @@ return [ 'delimiter' => 'site.summary.delimiter' ], 'metadata' => 'site.metadata', - 'routes' => 'site.routes', - 'redirects' => 'site.redirects' + 'redirects' => 'site.redirects', + 'routes' => 'site.routes' ], 'streams' => [ 'schemes' => [ @@ -3466,7 +3448,6 @@ return [ ] ], 'system' => [ - 'content' => 'system.content', 'home' => [ 'alias' => 'system.home.alias', 'hide_in_urls' => 'system.home.hide_in_urls' @@ -3524,9 +3505,6 @@ return [ 'http_accept_language' => 'system.languages.http_accept_language', 'override_locale' => 'system.languages.override_locale' ], - 'http_headers' => 'system.http_headers', - 'markdown' => 'system.markdown', - 'caching' => 'system.caching', 'cache' => [ 'enabled' => 'system.cache.enabled', 'check' => [ @@ -3585,12 +3563,6 @@ return [ 'close_connection' => 'system.debugger.shutdown.close_connection' ] ], - 'media' => [ - 'enable_media_timestamp' => 'system.media.enable_media_timestamp', - 'auto_metadata_exif' => 'system.media.auto_metadata_exif', - 'allowed_fallback_types' => 'system.media.allowed_fallback_types', - 'unsupported_inline_types' => 'system.media.unsupported_inline_types' - ], 'images' => [ 'default_image_quality' => 'system.images.default_image_quality', 'cache_all' => 'system.images.cache_all', @@ -3598,8 +3570,15 @@ return [ 'debug' => 'system.images.debug', 'auto_fix_orientation' => 'system.images.auto_fix_orientation' ], + 'media' => [ + 'enable_media_timestamp' => 'system.media.enable_media_timestamp', + 'auto_metadata_exif' => 'system.media.auto_metadata_exif', + 'allowed_fallback_types' => 'system.media.allowed_fallback_types', + 'unsupported_inline_types' => 'system.media.unsupported_inline_types' + ], 'session' => [ 'enabled' => 'system.session.enabled', + 'initialize' => 'system.session.initialize', 'timeout' => 'system.session.timeout', 'name' => 'system.session.name', 'secure' => 'system.session.secure', @@ -3607,7 +3586,6 @@ return [ 'path' => 'system.session.path', 'split' => 'system.session.split' ], - 'advanced' => 'system.advanced', 'gpm' => [ 'releases' => 'system.gpm.releases', 'proxy_url' => 'system.gpm.proxy_url', @@ -3624,11 +3602,14 @@ return [ 'param_sep' => 'system.param_sep', 'force_ssl' => 'system.force_ssl', 'force_lowercase_urls' => 'system.force_lowercase_urls', - 'custom_base_url' => 'system.custom_base_url' + 'custom_base_url' => 'system.custom_base_url', + 'strict_mode' => [ + 'yaml_compat' => 'system.strict_mode.yaml_compat', + 'twig_compat' => 'system.strict_mode.twig_compat' + ] ], 'plugins' => [ 'admin' => [ - 'Basics' => 'plugins.admin.Basics', 'enabled' => 'plugins.admin.enabled', 'cache_enabled' => 'plugins.admin.cache_enabled', 'twofa_enabled' => 'plugins.admin.twofa_enabled', @@ -3662,8 +3643,6 @@ return [ ], 'hide_page_types' => 'plugins.admin.hide_page_types', 'hide_modular_page_types' => 'plugins.admin.hide_modular_page_types', - 'MediaResize' => 'plugins.admin.MediaResize', - 'MediaResizeNote' => 'plugins.admin.MediaResizeNote', 'pagemedia' => [ 'resize_width' => 'plugins.admin.pagemedia.resize_width', 'resize_height' => 'plugins.admin.pagemedia.resize_height', @@ -3673,7 +3652,6 @@ return [ 'res_max_height' => 'plugins.admin.pagemedia.res_max_height', 'resize_quality' => 'plugins.admin.pagemedia.resize_quality' ], - 'Dashboard' => 'plugins.admin.Dashboard', 'widgets' => [ 'dashboard-maintenance' => 'plugins.admin.widgets.dashboard-maintenance', 'dashboard-statistics' => 'plugins.admin.widgets.dashboard-statistics', @@ -3681,14 +3659,12 @@ return [ 'dashboard-feed' => 'plugins.admin.widgets.dashboard-feed', 'dashboard-pages' => 'plugins.admin.widgets.dashboard-pages' ], - 'Notifications' => 'plugins.admin.Notifications', 'notifications' => [ 'feed' => 'plugins.admin.notifications.feed', 'dashboard' => 'plugins.admin.notifications.dashboard', 'plugins' => 'plugins.admin.notifications.plugins', 'themes' => 'plugins.admin.notifications.themes' ], - 'Popularity' => 'plugins.admin.Popularity', 'popularity' => [ 'enabled' => 'plugins.admin.popularity.enabled', 'ignore' => 'plugins.admin.popularity.ignore', @@ -3709,7 +3685,6 @@ return [ ], 'form' => [ 'enabled' => 'plugins.form.enabled', - 'general' => 'plugins.form.general', 'built_in_css' => 'plugins.form.built_in_css', 'inline_css' => 'plugins.form.inline_css', 'refresh_prevention' => 'plugins.form.refresh_prevention', @@ -3730,8 +3705,6 @@ return [ ] ], 'login' => [ - 'tabs' => 'plugins.login.tabs', - 'login' => 'plugins.login.login', 'enabled' => 'plugins.login.enabled', 'built_in_css' => 'plugins.login.built_in_css', 'route' => 'plugins.login.route', @@ -3743,7 +3716,6 @@ return [ 'parent_acl' => 'plugins.login.parent_acl', 'dynamic_page_visibility' => 'plugins.login.dynamic_page_visibility', 'protect_protected_page_media' => 'plugins.login.protect_protected_page_media', - 'routes' => 'plugins.login.routes', 'route_activate' => 'plugins.login.route_activate', 'route_register' => 'plugins.login.route_register', 'user_registration' => [ @@ -3770,11 +3742,6 @@ return [ 'timeout' => 'plugins.login.rememberme.timeout', 'name' => 'plugins.login.rememberme.name' ], - 'registration' => 'plugins.login.registration', - 'registration_fields' => 'plugins.login.registration_fields', - 'access_levels' => 'plugins.login.access_levels', - 'options' => 'plugins.login.options', - 'Security' => 'plugins.login.Security', 'max_pw_resets_count' => 'plugins.login.max_pw_resets_count', 'max_pw_resets_interval' => 'plugins.login.max_pw_resets_interval', 'max_login_count' => 'plugins.login.max_login_count', diff --git a/cache/compiled/config/master-dev.hehe.net.php b/cache/compiled/config/master-dev.hehe.net.php index 746f38c..b70bb87 100644 --- a/cache/compiled/config/master-dev.hehe.net.php +++ b/cache/compiled/config/master-dev.hehe.net.php @@ -1,8 +1,8 @@ 'Grav\\Common\\Config\\CompiledConfig', - 'timestamp' => 1534765163, - 'checksum' => '7adbe84cc57035a63d4d2b97ec1cdfc4', + 'timestamp' => 1534926821, + 'checksum' => '8ae2b79a456495018fd7e52291726ebf', 'files' => [ 'user/config' => [ 'media' => [ @@ -27,31 +27,31 @@ return [ ], 'system' => [ 'file' => 'user/config/system.yaml', - 'modified' => 1534765162 + 'modified' => 1534926821 ] ], 'system/config' => [ 'media' => [ 'file' => 'system/config/media.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'site' => [ 'file' => 'system/config/site.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'streams' => [ 'file' => 'system/config/streams.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'system' => [ 'file' => 'system/config/system.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ] ], 'user/plugins' => [ 'plugins/admin' => [ 'file' => 'user/plugins/admin/admin.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'plugins/markdown-notices' => [ 'file' => 'user/plugins/markdown-notices/markdown-notices.yaml', @@ -59,7 +59,7 @@ return [ ], 'plugins/form' => [ 'file' => 'user/plugins/form/form.yaml', - 'modified' => 1533014916 + 'modified' => 1534926514 ], 'plugins/login' => [ 'file' => 'user/plugins/login/login.yaml', @@ -600,8 +600,8 @@ return [ 'translations' => true, 'translations_fallback' => true, 'session_store_active' => false, - 'http_accept_language' => false, - 'override_locale' => false + 'http_accept_language' => true, + 'override_locale' => true ], 'home' => [ 'alias' => '/projets', @@ -634,7 +634,7 @@ return [ ], 'markdown' => [ 'extra' => false, - 'auto_line_breaks' => false, + 'auto_line_breaks' => true, 'auto_url_links' => false, 'escape_markup' => false, 'special_chars' => [ @@ -763,6 +763,10 @@ return [ 'method' => 'auto', 'verify_peer' => true, 'official_gpm_only' => true + ], + 'strict_mode' => [ + 'yaml_compat' => true, + 'twig_compat' => true ] ], 'security' => [ diff --git a/cache/compiled/files/04a1306b66d6f4bb13fb01834809ab14.yaml.php b/cache/compiled/files/04a1306b66d6f4bb13fb01834809ab14.yaml.php index 3c27029..f370ace 100644 --- a/cache/compiled/files/04a1306b66d6f4bb13fb01834809ab14.yaml.php +++ b/cache/compiled/files/04a1306b66d6f4bb13fb01834809ab14.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/ru.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/05f59962bbd7d72ad298d1f024f041f6.yaml.php b/cache/compiled/files/05f59962bbd7d72ad298d1f024f041f6.yaml.php index 14fe545..46ca147 100644 --- a/cache/compiled/files/05f59962bbd7d72ad298d1f024f041f6.yaml.php +++ b/cache/compiled/files/05f59962bbd7d72ad298d1f024f041f6.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/tr.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'NICETIME' => [ 'NO_DATE_PROVIDED' => 'Tarih yok', diff --git a/cache/compiled/files/062249916a5cedbb1957c8c4556718f0.yaml.php b/cache/compiled/files/062249916a5cedbb1957c8c4556718f0.yaml.php index 35f4a42..2dc9e47 100644 --- a/cache/compiled/files/062249916a5cedbb1957c8c4556718f0.yaml.php +++ b/cache/compiled/files/062249916a5cedbb1957c8c4556718f0.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => 'plugins://form/form.yaml', - 'modified' => 1533014916, + 'modified' => 1534926514, 'data' => [ 'enabled' => true, 'built_in_css' => true, diff --git a/cache/compiled/files/0d2da667786a73853450aaf120517eb4.yaml.php b/cache/compiled/files/0d2da667786a73853450aaf120517eb4.yaml.php index c814e6b..9e07665 100644 --- a/cache/compiled/files/0d2da667786a73853450aaf120517eb4.yaml.php +++ b/cache/compiled/files/0d2da667786a73853450aaf120517eb4.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/config/streams.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'schemes' => [ 'image' => [ diff --git a/cache/compiled/files/0dd9a7d8836ba4b636a58c1326c33c26.yaml.php b/cache/compiled/files/0dd9a7d8836ba4b636a58c1326c33c26.yaml.php index 98f407d..7f8d514 100644 --- a/cache/compiled/files/0dd9a7d8836ba4b636a58c1326c33c26.yaml.php +++ b/cache/compiled/files/0dd9a7d8836ba4b636a58c1326c33c26.yaml.php @@ -2,10 +2,10 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/form/blueprints.yaml', - 'modified' => 1533014916, + 'modified' => 1534926514, 'data' => [ 'name' => 'Form', - 'version' => '2.15.1', + 'version' => '2.16.1', 'description' => 'Enables the forms handling', 'icon' => 'check-square', 'author' => [ diff --git a/cache/compiled/files/0f2a7a81155c939e99a6a07e5e5bd52f.yaml.php b/cache/compiled/files/0f2a7a81155c939e99a6a07e5e5bd52f.yaml.php index 71e0976..d45a723 100644 --- a/cache/compiled/files/0f2a7a81155c939e99a6a07e5e5bd52f.yaml.php +++ b/cache/compiled/files/0f2a7a81155c939e99a6a07e5e5bd52f.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => 'plugins://admin/admin.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'enabled' => true, 'route' => '/admin', diff --git a/cache/compiled/files/0f4f49ac3e19cacf4af6c37b510a22c5.yaml.php b/cache/compiled/files/0f4f49ac3e19cacf4af6c37b510a22c5.yaml.php index f5f9e83..b1b8e14 100644 --- a/cache/compiled/files/0f4f49ac3e19cacf4af6c37b510a22c5.yaml.php +++ b/cache/compiled/files/0f4f49ac3e19cacf4af6c37b510a22c5.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/uk.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/15949dda78599b1b59f14b332d09ed0d.yaml.php b/cache/compiled/files/15949dda78599b1b59f14b332d09ed0d.yaml.php index d63053c..2bf622c 100644 --- a/cache/compiled/files/15949dda78599b1b59f14b332d09ed0d.yaml.php +++ b/cache/compiled/files/15949dda78599b1b59f14b332d09ed0d.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/blueprints/config/site.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'title' => 'PLUGIN_ADMIN.SITE', 'form' => [ diff --git a/cache/compiled/files/1a2922121c27858590a542886738053e.yaml.php b/cache/compiled/files/1a2922121c27858590a542886738053e.yaml.php index 3165892..a5c92c2 100644 --- a/cache/compiled/files/1a2922121c27858590a542886738053e.yaml.php +++ b/cache/compiled/files/1a2922121c27858590a542886738053e.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/th.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'นี่เป็นรุ่นทดลอง หากคุณใช้บนเว็บจริงคุณต้องยอมรับในความเสี่ยงนั้นเอง', diff --git a/cache/compiled/files/1b026de321ea416ee7d1fe33416b69c6.yaml.php b/cache/compiled/files/1b026de321ea416ee7d1fe33416b69c6.yaml.php index 5900254..bd2ff3a 100644 --- a/cache/compiled/files/1b026de321ea416ee7d1fe33416b69c6.yaml.php +++ b/cache/compiled/files/1b026de321ea416ee7d1fe33416b69c6.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/ro.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Aceasta este o versiune Beta! Folosiți-o pe propiul risc...', diff --git a/cache/compiled/files/1b969aca5d6328bf9d33b1f4ec9b4493.yaml.php b/cache/compiled/files/1b969aca5d6328bf9d33b1f4ec9b4493.yaml.php index 9d8c671..08f0bdf 100644 --- a/cache/compiled/files/1b969aca5d6328bf9d33b1f4ec9b4493.yaml.php +++ b/cache/compiled/files/1b969aca5d6328bf9d33b1f4ec9b4493.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/config/system.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'absolute_urls' => false, 'timezone' => '', @@ -185,6 +185,10 @@ return [ 'method' => 'auto', 'verify_peer' => true, 'official_gpm_only' => true + ], + 'strict_mode' => [ + 'yaml_compat' => true, + 'twig_compat' => true ] ] ]; diff --git a/cache/compiled/files/1cc8180f1d26a87e25f18ecd69e4cc93.yaml.php b/cache/compiled/files/1cc8180f1d26a87e25f18ecd69e4cc93.yaml.php index 4a75c06..c1a27c5 100644 --- a/cache/compiled/files/1cc8180f1d26a87e25f18ecd69e4cc93.yaml.php +++ b/cache/compiled/files/1cc8180f1d26a87e25f18ecd69e4cc93.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/ja.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/1d99f13bc91cd9a3a4f487c1607188c6.yaml.php b/cache/compiled/files/1d99f13bc91cd9a3a4f487c1607188c6.yaml.php index f4d69ba..7a70e99 100644 --- a/cache/compiled/files/1d99f13bc91cd9a3a4f487c1607188c6.yaml.php +++ b/cache/compiled/files/1d99f13bc91cd9a3a4f487c1607188c6.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/de.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/1e06f4f188e03b957785862ffbf6d9bc.yaml.php b/cache/compiled/files/1e06f4f188e03b957785862ffbf6d9bc.yaml.php index 588564b..eaef128 100644 --- a/cache/compiled/files/1e06f4f188e03b957785862ffbf6d9bc.yaml.php +++ b/cache/compiled/files/1e06f4f188e03b957785862ffbf6d9bc.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/cy.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Mae hwn yn fersiwn beta! Defnyddio hwn yn cynhyrchu ar risg eich hun...', diff --git a/cache/compiled/files/21734e2c1e7129df7b081b625a5fb71b.yaml.php b/cache/compiled/files/21734e2c1e7129df7b081b625a5fb71b.yaml.php index e209e9f..4d88d8c 100644 --- a/cache/compiled/files/21734e2c1e7129df7b081b625a5fb71b.yaml.php +++ b/cache/compiled/files/21734e2c1e7129df7b081b625a5fb71b.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/blueprints/admin/pages/move.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'form' => [ 'validation' => 'loose', diff --git a/cache/compiled/files/229c8cd023d8514d19acc8eb40374901.yaml.php b/cache/compiled/files/229c8cd023d8514d19acc8eb40374901.yaml.php index 29eab6d..461ca96 100644 --- a/cache/compiled/files/229c8cd023d8514d19acc8eb40374901.yaml.php +++ b/cache/compiled/files/229c8cd023d8514d19acc8eb40374901.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/ca.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/27dcb1665a3cf40bd459d0bec39a8c0a.yaml.php b/cache/compiled/files/27dcb1665a3cf40bd459d0bec39a8c0a.yaml.php index 2e3b179..f5cb4d3 100644 --- a/cache/compiled/files/27dcb1665a3cf40bd459d0bec39a8c0a.yaml.php +++ b/cache/compiled/files/27dcb1665a3cf40bd459d0bec39a8c0a.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/sv.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Detta är en betaversion! Använd i produktion på egen risk...', diff --git a/cache/compiled/files/2d5fa3f2e561fcda0c830b5dff5b98df.yaml.php b/cache/compiled/files/2d5fa3f2e561fcda0c830b5dff5b98df.yaml.php index ee60084..27b0294 100644 --- a/cache/compiled/files/2d5fa3f2e561fcda0c830b5dff5b98df.yaml.php +++ b/cache/compiled/files/2d5fa3f2e561fcda0c830b5dff5b98df.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/blueprints/config/media.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'title' => 'PLUGIN_ADMIN.MEDIA', 'form' => [ diff --git a/cache/compiled/files/33c2e6d21978d812b95fd944408e3b80.yaml.php b/cache/compiled/files/33c2e6d21978d812b95fd944408e3b80.yaml.php index b3ce801..ecce042 100644 --- a/cache/compiled/files/33c2e6d21978d812b95fd944408e3b80.yaml.php +++ b/cache/compiled/files/33c2e6d21978d812b95fd944408e3b80.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/lt.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'INFLECTOR_UNCOUNTABLE' => [ 2 => 'ryžiai', diff --git a/cache/compiled/files/37863e0a6708b9a5ac3122ca9067047a.yaml.php b/cache/compiled/files/37863e0a6708b9a5ac3122ca9067047a.yaml.php index 69e6470..e47ea9d 100644 --- a/cache/compiled/files/37863e0a6708b9a5ac3122ca9067047a.yaml.php +++ b/cache/compiled/files/37863e0a6708b9a5ac3122ca9067047a.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/sv.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- titel: %1$s --- # Fel: Ogiltig Frontmatter-sökväg: `%2$s` **%3$s** ``` %4$s ```', 'NICETIME' => [ diff --git a/cache/compiled/files/3848500ad3033bfa4f54ee23e0abdbcd.yaml.php b/cache/compiled/files/3848500ad3033bfa4f54ee23e0abdbcd.yaml.php index 3536db6..566806f 100644 --- a/cache/compiled/files/3848500ad3033bfa4f54ee23e0abdbcd.yaml.php +++ b/cache/compiled/files/3848500ad3033bfa4f54ee23e0abdbcd.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/no.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Dette er en betaversjon! Bruk denne i produksjon på egen risiko...', diff --git a/cache/compiled/files/3c65edadcb39e7986247eb4af6097fb5.yaml.php b/cache/compiled/files/3c65edadcb39e7986247eb4af6097fb5.yaml.php index 0d2035e..efda5cf 100644 --- a/cache/compiled/files/3c65edadcb39e7986247eb4af6097fb5.yaml.php +++ b/cache/compiled/files/3c65edadcb39e7986247eb4af6097fb5.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/lt.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Tai Grav administravimo įskiepio beta versija! Naudokite atsargiai...', diff --git a/cache/compiled/files/3d865bcfc8868b7e81dc36491ce2dd56.yaml.php b/cache/compiled/files/3d865bcfc8868b7e81dc36491ce2dd56.yaml.php index 83ab157..6db1b15 100644 --- a/cache/compiled/files/3d865bcfc8868b7e81dc36491ce2dd56.yaml.php +++ b/cache/compiled/files/3d865bcfc8868b7e81dc36491ce2dd56.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/zh.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => '這是 Beta 版!如果要用在營運中請自行承擔風險…', diff --git a/cache/compiled/files/40d5dc194878264122202ea3b87f3ec6.yaml.php b/cache/compiled/files/40d5dc194878264122202ea3b87f3ec6.yaml.php index 8e16058..9c25699 100644 --- a/cache/compiled/files/40d5dc194878264122202ea3b87f3ec6.yaml.php +++ b/cache/compiled/files/40d5dc194878264122202ea3b87f3ec6.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/th.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- ชื่อเรื่อง: %1$s diff --git a/cache/compiled/files/4657a2a0258cbddb389b59d4fd34533c.yaml.php b/cache/compiled/files/4657a2a0258cbddb389b59d4fd34533c.yaml.php index 11eb660..b2921e4 100644 --- a/cache/compiled/files/4657a2a0258cbddb389b59d4fd34533c.yaml.php +++ b/cache/compiled/files/4657a2a0258cbddb389b59d4fd34533c.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/da.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- Titel: %1$s diff --git a/cache/compiled/files/4bf42f411de26a33b8da2fc4aa044ec2.yaml.php b/cache/compiled/files/4bf42f411de26a33b8da2fc4aa044ec2.yaml.php index 9584013..c3684c2 100644 --- a/cache/compiled/files/4bf42f411de26a33b8da2fc4aa044ec2.yaml.php +++ b/cache/compiled/files/4bf42f411de26a33b8da2fc4aa044ec2.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/blueprints/admin/pages/modular_new.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'rules' => [ 'slug' => [ diff --git a/cache/compiled/files/4e975a80172a3b74f7720ce0b158d3f4.yaml.php b/cache/compiled/files/4e975a80172a3b74f7720ce0b158d3f4.yaml.php index b739145..03817c3 100644 --- a/cache/compiled/files/4e975a80172a3b74f7720ce0b158d3f4.yaml.php +++ b/cache/compiled/files/4e975a80172a3b74f7720ce0b158d3f4.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/cs.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Jedná se o beta verzi! V ostrém provozu používejte pouze na vlastní nebezpečí...', diff --git a/cache/compiled/files/4f55af9038df4916c0c718d31dc58d6d.yaml.php b/cache/compiled/files/4f55af9038df4916c0c718d31dc58d6d.yaml.php index 433b1ec..8e42f02 100644 --- a/cache/compiled/files/4f55af9038df4916c0c718d31dc58d6d.yaml.php +++ b/cache/compiled/files/4f55af9038df4916c0c718d31dc58d6d.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/themes/grav/templates/forms/fields/iconpicker/icons.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'icons' => [ 0 => [ diff --git a/cache/compiled/files/5098d1c22c27de6ec30bc840f4cb9b3c.yaml.php b/cache/compiled/files/5098d1c22c27de6ec30bc840f4cb9b3c.yaml.php index e3601b8..3c3c26c 100644 --- a/cache/compiled/files/5098d1c22c27de6ec30bc840f4cb9b3c.yaml.php +++ b/cache/compiled/files/5098d1c22c27de6ec30bc840f4cb9b3c.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/fi.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Tämä on beta-versio! Käyttö tuotannossa omalla vastuulla...', diff --git a/cache/compiled/files/55d74ef21936a1ebd5b673cb741faa87.yaml.php b/cache/compiled/files/55d74ef21936a1ebd5b673cb741faa87.yaml.php index 59e9f76..d0dbe92 100644 --- a/cache/compiled/files/55d74ef21936a1ebd5b673cb741faa87.yaml.php +++ b/cache/compiled/files/55d74ef21936a1ebd5b673cb741faa87.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/ko.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => '이것은 베타입니다! 개인적으로 사용할시 위험할수있습니다...', diff --git a/cache/compiled/files/56454e1adcd223940fdbb442a8c737b2.yaml.php b/cache/compiled/files/56454e1adcd223940fdbb442a8c737b2.yaml.php index 3faf495..2a1772d 100644 --- a/cache/compiled/files/56454e1adcd223940fdbb442a8c737b2.yaml.php +++ b/cache/compiled/files/56454e1adcd223940fdbb442a8c737b2.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/es.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => '¡Ésta es una versión Beta! Utilízala en producción bajo tu propio riesgo...', diff --git a/cache/compiled/files/5f49fb96e0bfb0bf157b7d13dfcf171f.yaml.php b/cache/compiled/files/5f49fb96e0bfb0bf157b7d13dfcf171f.yaml.php index 82f9e93..0a9dc31 100644 --- a/cache/compiled/files/5f49fb96e0bfb0bf157b7d13dfcf171f.yaml.php +++ b/cache/compiled/files/5f49fb96e0bfb0bf157b7d13dfcf171f.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/da.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Dette er en beta-udgivelse! Brug i produktionsmiljøer er på egen risiko...', diff --git a/cache/compiled/files/61cf34725d4d72e1952c2917ed0d563b.yaml.php b/cache/compiled/files/61cf34725d4d72e1952c2917ed0d563b.yaml.php index adf3204..a16301d 100644 --- a/cache/compiled/files/61cf34725d4d72e1952c2917ed0d563b.yaml.php +++ b/cache/compiled/files/61cf34725d4d72e1952c2917ed0d563b.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/ar.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- العنوان: %1$s diff --git a/cache/compiled/files/639c5b36a2a750ad048ecb6130640b2f.yaml.php b/cache/compiled/files/639c5b36a2a750ad048ecb6130640b2f.yaml.php index acb9ad5..d4c96d4 100644 --- a/cache/compiled/files/639c5b36a2a750ad048ecb6130640b2f.yaml.php +++ b/cache/compiled/files/639c5b36a2a750ad048ecb6130640b2f.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/hu.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Ez egy béta kiadás! Éles környezetben csak saját felelősségre használd...', diff --git a/cache/compiled/files/642b3336ff69c44cce1106dc2223869f.yaml.php b/cache/compiled/files/642b3336ff69c44cce1106dc2223869f.yaml.php index de1cf3b..4fcf213 100644 --- a/cache/compiled/files/642b3336ff69c44cce1106dc2223869f.yaml.php +++ b/cache/compiled/files/642b3336ff69c44cce1106dc2223869f.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/ca.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Aquesta és una versió beta! Utilitza-la en producció sota el teu propi risc...', diff --git a/cache/compiled/files/67bbf38cee00718e8133110faf224d1b.yaml.php b/cache/compiled/files/67bbf38cee00718e8133110faf224d1b.yaml.php index e5f09f7..c993c99 100644 --- a/cache/compiled/files/67bbf38cee00718e8133110faf224d1b.yaml.php +++ b/cache/compiled/files/67bbf38cee00718e8133110faf224d1b.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/bg.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Това е Бета версия! Използвате на ваша отговорност...', diff --git a/cache/compiled/files/68d66f089f21b10531e3634341af862e.yaml.php b/cache/compiled/files/68d66f089f21b10531e3634341af862e.yaml.php new file mode 100644 index 0000000..44257fa --- /dev/null +++ b/cache/compiled/files/68d66f089f21b10531e3634341af862e.yaml.php @@ -0,0 +1,9 @@ + 'Grav\\Common\\File\\CompiledYamlFile', + 'filename' => '/mnt/data/Sites/hehe.net/user/data/licenses.yaml', + 'modified' => 1533212888, + 'data' => [ + + ] +]; diff --git a/cache/compiled/files/71cd32c5b9c2aa352f39ec81ec3f63db.yaml.php b/cache/compiled/files/71cd32c5b9c2aa352f39ec81ec3f63db.yaml.php index 8194a15..0c95b26 100644 --- a/cache/compiled/files/71cd32c5b9c2aa352f39ec81ec3f63db.yaml.php +++ b/cache/compiled/files/71cd32c5b9c2aa352f39ec81ec3f63db.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/fa.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'این یک نسخه تکمیل نشده است! استفاده از آن در محصولتان شمارا با خطر مواجه میکند...', diff --git a/cache/compiled/files/77fd3a6abfed7543d0fac828465921d0.yaml.php b/cache/compiled/files/77fd3a6abfed7543d0fac828465921d0.yaml.php index f79aa96..3ca49f4 100644 --- a/cache/compiled/files/77fd3a6abfed7543d0fac828465921d0.yaml.php +++ b/cache/compiled/files/77fd3a6abfed7543d0fac828465921d0.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/fi.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'NICETIME' => [ 'NO_DATE_PROVIDED' => 'Päivämäärää ei annettu', diff --git a/cache/compiled/files/7a1d412a28997af105809208db231ad4.yaml.php b/cache/compiled/files/7a1d412a28997af105809208db231ad4.yaml.php index 4b98874..b862a10 100644 --- a/cache/compiled/files/7a1d412a28997af105809208db231ad4.yaml.php +++ b/cache/compiled/files/7a1d412a28997af105809208db231ad4.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/he.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'זוהי מהדורת ביתא! השימוש על אחריותכם בלבד...', diff --git a/cache/compiled/files/7af6513aebd619518e6be3107959333f.yaml.php b/cache/compiled/files/7af6513aebd619518e6be3107959333f.yaml.php index 423a8a8..77570f0 100644 --- a/cache/compiled/files/7af6513aebd619518e6be3107959333f.yaml.php +++ b/cache/compiled/files/7af6513aebd619518e6be3107959333f.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/no.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- Tittel: %1$s diff --git a/cache/compiled/files/7d40baafd3052995f3938ec15ff590c4.yaml.php b/cache/compiled/files/7d40baafd3052995f3938ec15ff590c4.yaml.php index cc8ef7e..51e42a3 100644 --- a/cache/compiled/files/7d40baafd3052995f3938ec15ff590c4.yaml.php +++ b/cache/compiled/files/7d40baafd3052995f3938ec15ff590c4.yaml.php @@ -2,10 +2,10 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/blueprints.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'name' => 'Admin Panel', - 'version' => '1.8.7', + 'version' => '1.8.8', 'description' => 'Adds an advanced administration panel to manage your site', 'icon' => 'empire', 'author' => [ diff --git a/cache/compiled/files/7d9a5f83ee3005127ccedfdff4b90928.yaml.php b/cache/compiled/files/7d9a5f83ee3005127ccedfdff4b90928.yaml.php index 87ed3f3..6265316 100644 --- a/cache/compiled/files/7d9a5f83ee3005127ccedfdff4b90928.yaml.php +++ b/cache/compiled/files/7d9a5f83ee3005127ccedfdff4b90928.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/de.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Dies ist eine Beta-Version! Benutzung auf eigene Gefahr...', diff --git a/cache/compiled/files/8432f109d9a427826b89fb667cc347d2.yaml.php b/cache/compiled/files/8432f109d9a427826b89fb667cc347d2.yaml.php index e5e7817..f819278 100644 --- a/cache/compiled/files/8432f109d9a427826b89fb667cc347d2.yaml.php +++ b/cache/compiled/files/8432f109d9a427826b89fb667cc347d2.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/hr.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'INFLECTOR_UNCOUNTABLE' => [ 0 => 'oprema', diff --git a/cache/compiled/files/843968390de4829b5003777d2bf8762c.yaml.php b/cache/compiled/files/843968390de4829b5003777d2bf8762c.yaml.php index a9c017e..2bd93da 100644 --- a/cache/compiled/files/843968390de4829b5003777d2bf8762c.yaml.php +++ b/cache/compiled/files/843968390de4829b5003777d2bf8762c.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/blueprints/admin/pages/new_folder.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'rules' => [ 'slug' => [ diff --git a/cache/compiled/files/8559710faed4c678dc88a52e04d777c4.yaml.php b/cache/compiled/files/8559710faed4c678dc88a52e04d777c4.yaml.php index e5be040..796eaab 100644 --- a/cache/compiled/files/8559710faed4c678dc88a52e04d777c4.yaml.php +++ b/cache/compiled/files/8559710faed4c678dc88a52e04d777c4.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/sk.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'NICETIME' => [ 'NO_DATE_PROVIDED' => 'Neposkytnutý žiaden dátum', diff --git a/cache/compiled/files/899f8dd621585666619b7606cffdd1bf.yaml.php b/cache/compiled/files/899f8dd621585666619b7606cffdd1bf.yaml.php index ef9e614..50ae87a 100644 --- a/cache/compiled/files/899f8dd621585666619b7606cffdd1bf.yaml.php +++ b/cache/compiled/files/899f8dd621585666619b7606cffdd1bf.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/uk.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Це бета-реліз! Використовуйте його на продуктовому сервері на свій страх і ризик...', diff --git a/cache/compiled/files/89fa452ebde93b807fff9beb7e7e2d90.yaml.php b/cache/compiled/files/89fa452ebde93b807fff9beb7e7e2d90.yaml.php index 52e4e4f..0fd77c5 100644 --- a/cache/compiled/files/89fa452ebde93b807fff9beb7e7e2d90.yaml.php +++ b/cache/compiled/files/89fa452ebde93b807fff9beb7e7e2d90.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/it.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Questa è una versione beta! Usare in produzione a proprio rischio e pericolo…', diff --git a/cache/compiled/files/8f26fb81af650138fea74f7279aa8ce4.yaml.php b/cache/compiled/files/8f26fb81af650138fea74f7279aa8ce4.yaml.php index 56aaaaa..d052850 100644 --- a/cache/compiled/files/8f26fb81af650138fea74f7279aa8ce4.yaml.php +++ b/cache/compiled/files/8f26fb81af650138fea74f7279aa8ce4.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/nl.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'INFLECTOR_IRREGULAR' => [ 'person' => 'personen', diff --git a/cache/compiled/files/911bbc239da376f30bac56ce83d6773c.yaml.php b/cache/compiled/files/911bbc239da376f30bac56ce83d6773c.yaml.php index 499ee88..8699fb5 100644 --- a/cache/compiled/files/911bbc239da376f30bac56ce83d6773c.yaml.php +++ b/cache/compiled/files/911bbc239da376f30bac56ce83d6773c.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/blueprints/user/account.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'title' => 'Account', 'form' => [ @@ -100,6 +100,7 @@ return [ 'twofa_secret' => [ 'type' => '2fa_secret', 'outerclasses' => 'twofa-secret', + 'markdown' => true, 'label' => 'PLUGIN_ADMIN.2FA_SECRET', 'sublabel' => 'PLUGIN_ADMIN.2FA_SECRET_HELP' ] diff --git a/cache/compiled/files/96ad0a6d5b057c8b625fc23bcb004b9f.yaml.php b/cache/compiled/files/96ad0a6d5b057c8b625fc23bcb004b9f.yaml.php index 02c2787..0361862 100644 --- a/cache/compiled/files/96ad0a6d5b057c8b625fc23bcb004b9f.yaml.php +++ b/cache/compiled/files/96ad0a6d5b057c8b625fc23bcb004b9f.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/pl.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'To jest wersja Beta! Używasz jej w produkcji na własne ryzyko...', diff --git a/cache/compiled/files/993a9e2390c3aac6fd1bfb5b623c92d9.yaml.php b/cache/compiled/files/993a9e2390c3aac6fd1bfb5b623c92d9.yaml.php index d5633b4..c3b4250 100644 --- a/cache/compiled/files/993a9e2390c3aac6fd1bfb5b623c92d9.yaml.php +++ b/cache/compiled/files/993a9e2390c3aac6fd1bfb5b623c92d9.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/hu.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- cím: %1$s diff --git a/cache/compiled/files/99e81a123d9ab0a9536ecdf46aa8dc72.yaml.php b/cache/compiled/files/99e81a123d9ab0a9536ecdf46aa8dc72.yaml.php index 7a93e69..7e57f12 100644 --- a/cache/compiled/files/99e81a123d9ab0a9536ecdf46aa8dc72.yaml.php +++ b/cache/compiled/files/99e81a123d9ab0a9536ecdf46aa8dc72.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/blueprints/config/streams.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'title' => 'PLUGIN_ADMIN.FILE_STREAMS', 'form' => [ diff --git a/cache/compiled/files/9ae8f884a09f1cf1dfb88b19e3eb5d1e.yaml.php b/cache/compiled/files/9ae8f884a09f1cf1dfb88b19e3eb5d1e.yaml.php index 7414492..012dee0 100644 --- a/cache/compiled/files/9ae8f884a09f1cf1dfb88b19e3eb5d1e.yaml.php +++ b/cache/compiled/files/9ae8f884a09f1cf1dfb88b19e3eb5d1e.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/ro.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- Titlu: %1$s diff --git a/cache/compiled/files/9b1c2b6f3afa1d434db4315a0222f4b7.yaml.php b/cache/compiled/files/9b1c2b6f3afa1d434db4315a0222f4b7.yaml.php index d6c75b0..4fcbcda 100644 --- a/cache/compiled/files/9b1c2b6f3afa1d434db4315a0222f4b7.yaml.php +++ b/cache/compiled/files/9b1c2b6f3afa1d434db4315a0222f4b7.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/et.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Tegemist on beeta-versiooniga! Kasutamine töötaval veebilehel oma vastutusel...', diff --git a/cache/compiled/files/9ce149981a45683a8145696300f64b83.yaml.php b/cache/compiled/files/9ce149981a45683a8145696300f64b83.yaml.php index 93fadff..3d7ca51 100644 --- a/cache/compiled/files/9ce149981a45683a8145696300f64b83.yaml.php +++ b/cache/compiled/files/9ce149981a45683a8145696300f64b83.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/form/languages.yaml', - 'modified' => 1533014916, + 'modified' => 1534926514, 'data' => [ 'en' => [ 'PLUGIN_FORM' => [ diff --git a/cache/compiled/files/a23ddfdb0c76882206179a4c3b134bcd.yaml.php b/cache/compiled/files/a23ddfdb0c76882206179a4c3b134bcd.yaml.php index 43c1bc6..ac06b1a 100644 --- a/cache/compiled/files/a23ddfdb0c76882206179a4c3b134bcd.yaml.php +++ b/cache/compiled/files/a23ddfdb0c76882206179a4c3b134bcd.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/vi.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Đây là phiên bản thử nghiệm! Bạn phải tự chịu rủi ro khi sử dụng trong production...', diff --git a/cache/compiled/files/a53885d3183c2a5f84b868f3cb765df7.yaml.php b/cache/compiled/files/a53885d3183c2a5f84b868f3cb765df7.yaml.php index 93c74ad..7adba5b 100644 --- a/cache/compiled/files/a53885d3183c2a5f84b868f3cb765df7.yaml.php +++ b/cache/compiled/files/a53885d3183c2a5f84b868f3cb765df7.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/config/media.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'types' => [ 'defaults' => [ diff --git a/cache/compiled/files/a55c67494f52831be7d24b1ba1aa004e.yaml.php b/cache/compiled/files/a55c67494f52831be7d24b1ba1aa004e.yaml.php index a417b62..277048f 100644 --- a/cache/compiled/files/a55c67494f52831be7d24b1ba1aa004e.yaml.php +++ b/cache/compiled/files/a55c67494f52831be7d24b1ba1aa004e.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/pl.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/a58eee8764b1e4f60183cb5499029d80.yaml.php b/cache/compiled/files/a58eee8764b1e4f60183cb5499029d80.yaml.php index b59821d..7098e59 100644 --- a/cache/compiled/files/a58eee8764b1e4f60183cb5499029d80.yaml.php +++ b/cache/compiled/files/a58eee8764b1e4f60183cb5499029d80.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/cs.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'INFLECTOR_UNCOUNTABLE' => [ 0 => 'vybavení', diff --git a/cache/compiled/files/a8c058765069ca34de4435c34fa72904.yaml.php b/cache/compiled/files/a8c058765069ca34de4435c34fa72904.yaml.php index 79a2f57..82fa957 100644 --- a/cache/compiled/files/a8c058765069ca34de4435c34fa72904.yaml.php +++ b/cache/compiled/files/a8c058765069ca34de4435c34fa72904.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/pt.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Esta é uma versão Beta! Use por sua conta em risco...', diff --git a/cache/compiled/files/a90a23e83e2afb904847d2b2901376ee.yaml.php b/cache/compiled/files/a90a23e83e2afb904847d2b2901376ee.yaml.php index f4d8283..d0bd857 100644 --- a/cache/compiled/files/a90a23e83e2afb904847d2b2901376ee.yaml.php +++ b/cache/compiled/files/a90a23e83e2afb904847d2b2901376ee.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/el.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Αυτή είναι μία έκδοση Beta! Χρησιμοποιήστε την στην Παραγωγή με δικό σας ρίσκο...', diff --git a/cache/compiled/files/a9cfdfab96bf07bddc7dbf6d05af5131.yaml.php b/cache/compiled/files/a9cfdfab96bf07bddc7dbf6d05af5131.yaml.php index 0abbac6..82220dd 100644 --- a/cache/compiled/files/a9cfdfab96bf07bddc7dbf6d05af5131.yaml.php +++ b/cache/compiled/files/a9cfdfab96bf07bddc7dbf6d05af5131.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/sk.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Toto je Beta verzia! Používajte v ostrej prevádzke na vlastné riziko...', diff --git a/cache/compiled/files/ab0450f60ea8cd3a4cf338616db8d167.yaml.php b/cache/compiled/files/ab0450f60ea8cd3a4cf338616db8d167.yaml.php index ed79982..45350ab 100644 --- a/cache/compiled/files/ab0450f60ea8cd3a4cf338616db8d167.yaml.php +++ b/cache/compiled/files/ab0450f60ea8cd3a4cf338616db8d167.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/es.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/b0ef14f25a1301ea02bf039cb84393dc.yaml.php b/cache/compiled/files/b0ef14f25a1301ea02bf039cb84393dc.yaml.php index b795ffe..afac62d 100644 --- a/cache/compiled/files/b0ef14f25a1301ea02bf039cb84393dc.yaml.php +++ b/cache/compiled/files/b0ef14f25a1301ea02bf039cb84393dc.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/ar.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'هذا إصدار بيتا! استخدم هذا في الإنتاج على مسؤوليتك الخاصة...', diff --git a/cache/compiled/files/b51ab244bd4c7bb4fb7bb910055f868c.yaml.php b/cache/compiled/files/b51ab244bd4c7bb4fb7bb910055f868c.yaml.php index 39b3ed4..941b385 100644 --- a/cache/compiled/files/b51ab244bd4c7bb4fb7bb910055f868c.yaml.php +++ b/cache/compiled/files/b51ab244bd4c7bb4fb7bb910055f868c.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/admin.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'enabled' => true, 'route' => '/admin', diff --git a/cache/compiled/files/b542f47f9bc2c99c998269bd853fdd5d.yaml.php b/cache/compiled/files/b542f47f9bc2c99c998269bd853fdd5d.yaml.php index aacf88a..063657e 100644 --- a/cache/compiled/files/b542f47f9bc2c99c998269bd853fdd5d.yaml.php +++ b/cache/compiled/files/b542f47f9bc2c99c998269bd853fdd5d.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/ja.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'これはベータリリースです。稼働中サイトでは、自己責任においてご利用ください。', diff --git a/cache/compiled/files/b636a9663295e79124cf2c3665d829e4.yaml.php b/cache/compiled/files/b636a9663295e79124cf2c3665d829e4.yaml.php index 0ba8f0b..7b21d4b 100644 --- a/cache/compiled/files/b636a9663295e79124cf2c3665d829e4.yaml.php +++ b/cache/compiled/files/b636a9663295e79124cf2c3665d829e4.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/en.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/bd80a92d8a9cfe9af4e5f1e14e1ed9a2.yaml.php b/cache/compiled/files/bd80a92d8a9cfe9af4e5f1e14e1ed9a2.yaml.php index 0e07a19..d39cdeb 100644 --- a/cache/compiled/files/bd80a92d8a9cfe9af4e5f1e14e1ed9a2.yaml.php +++ b/cache/compiled/files/bd80a92d8a9cfe9af4e5f1e14e1ed9a2.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/nl.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Dit is een betaversie! Gebruik op een live site is voor eigen risico...', diff --git a/cache/compiled/files/c30cc18b3c6b25333906b5aafd3142fe.yaml.php b/cache/compiled/files/c30cc18b3c6b25333906b5aafd3142fe.yaml.php index e250ef6..5bcb4c3 100644 --- a/cache/compiled/files/c30cc18b3c6b25333906b5aafd3142fe.yaml.php +++ b/cache/compiled/files/c30cc18b3c6b25333906b5aafd3142fe.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/id.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Ini merupakan rilisan Beta! Gunakan ini di produksi dengan resiko anda sendiri...', diff --git a/cache/compiled/files/c43d4ecc4486334e28113a3b8be437dc.yaml.php b/cache/compiled/files/c43d4ecc4486334e28113a3b8be437dc.yaml.php index 1a9c7a3..842917f 100644 --- a/cache/compiled/files/c43d4ecc4486334e28113a3b8be437dc.yaml.php +++ b/cache/compiled/files/c43d4ecc4486334e28113a3b8be437dc.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/pt.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- título: %1$s diff --git a/cache/compiled/files/c700113f64b8ec87dbe3a8aeebb5bb7e.yaml.php b/cache/compiled/files/c700113f64b8ec87dbe3a8aeebb5bb7e.yaml.php index 7d57595..34f0579 100644 --- a/cache/compiled/files/c700113f64b8ec87dbe3a8aeebb5bb7e.yaml.php +++ b/cache/compiled/files/c700113f64b8ec87dbe3a8aeebb5bb7e.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/ru.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Это бета-релиз! Вы используете это расширение на свой страх и риск...', diff --git a/cache/compiled/files/d3deae8c58415454a83dd12188a62bbe.yaml.php b/cache/compiled/files/d3deae8c58415454a83dd12188a62bbe.yaml.php index 5e70d95..b2f4f5f 100644 --- a/cache/compiled/files/d3deae8c58415454a83dd12188a62bbe.yaml.php +++ b/cache/compiled/files/d3deae8c58415454a83dd12188a62bbe.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/en.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'This is a Beta release! Use this in production at your own risk...', @@ -724,7 +724,11 @@ You have **2FA** enabled on this account. Please use your **2FA** app to enter t 'OPEN_NEW_TAB' => 'Open in new tab', 'PAGEMEDIA_RESIZER' => '> The following settings apply to images uploaded through the page media. Resize Width / Height will automatically resize down and proportionally an image if exceeds the limits set in the inputs. Resolution min and max values define the size ranges for uploaded images. Set the fields to 0 to prevent any manipulation.', 'SESSION_INITIALIZE' => 'Initialize Session', - 'SESSION_INITIALIZE_HELP' => 'Makes Grav to start a session. This feature is needed to make any user interaction to work, such as login, forms etc. Admin plugin isn\'t affected by this setting.' + 'SESSION_INITIALIZE_HELP' => 'Makes Grav to start a session. This feature is needed to make any user interaction to work, such as login, forms etc. Admin plugin isn\'t affected by this setting.', + 'STRICT_YAML_COMPAT' => 'YAML Compatibility', + 'STRICT_YAML_COMPAT_HELP' => 'Falls back to Symfony 2.4 YAML parser if Native or 3.4 parser fails', + 'STRICT_TWIG_COMPAT' => 'Twig Compatibility', + 'STRICT_TWIG_COMPAT_HELP' => 'Enables deprecated Twig autoescape setting. When disabled, |raw filter is required to output HTML as Twig will autoescape output' ] ] ]; diff --git a/cache/compiled/files/dc5c23ee8df4793da0d481414d53f7cc.yaml.php b/cache/compiled/files/dc5c23ee8df4793da0d481414d53f7cc.yaml.php index 0d64476..0528b5a 100644 --- a/cache/compiled/files/dc5c23ee8df4793da0d481414d53f7cc.yaml.php +++ b/cache/compiled/files/dc5c23ee8df4793da0d481414d53f7cc.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/config/site.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'title' => 'Grav', 'default_lang' => 'en', diff --git a/cache/compiled/files/e08035d8cd7725be69d6b78ffd186911.yaml.php b/cache/compiled/files/e08035d8cd7725be69d6b78ffd186911.yaml.php index 8c2174d..962aed3 100644 --- a/cache/compiled/files/e08035d8cd7725be69d6b78ffd186911.yaml.php +++ b/cache/compiled/files/e08035d8cd7725be69d6b78ffd186911.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/blueprints/pages/default.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'title' => 'PLUGIN_ADMIN.DEFAULT', 'rules' => [ diff --git a/cache/compiled/files/e74c8ff65b56117a3604e5c80ceff5ad.yaml.php b/cache/compiled/files/e74c8ff65b56117a3604e5c80ceff5ad.yaml.php index 3a8bb0c..eeb493c 100644 --- a/cache/compiled/files/e74c8ff65b56117a3604e5c80ceff5ad.yaml.php +++ b/cache/compiled/files/e74c8ff65b56117a3604e5c80ceff5ad.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/it.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '---Titolo: %1$s---# Errore: Frontmatter non valido: \'%2$s\' * *%3$s * * \' \'%4$s \' \'', 'NICETIME' => [ diff --git a/cache/compiled/files/e9525ca4b8107b310e405284e3be264f.yaml.php b/cache/compiled/files/e9525ca4b8107b310e405284e3be264f.yaml.php index 21c6310..0e3e2fd 100644 --- a/cache/compiled/files/e9525ca4b8107b310e405284e3be264f.yaml.php +++ b/cache/compiled/files/e9525ca4b8107b310e405284e3be264f.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/el.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'MONTHS_OF_THE_YEAR' => [ 0 => 'Ιανουάριος', diff --git a/cache/compiled/files/ee6bcfed684bfa589af9217d24158e02.yaml.php b/cache/compiled/files/ee6bcfed684bfa589af9217d24158e02.yaml.php index 1a49d4e..3c1da8a 100644 --- a/cache/compiled/files/ee6bcfed684bfa589af9217d24158e02.yaml.php +++ b/cache/compiled/files/ee6bcfed684bfa589af9217d24158e02.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/form/form.yaml', - 'modified' => 1533014916, + 'modified' => 1534926514, 'data' => [ 'enabled' => true, 'built_in_css' => true, diff --git a/cache/compiled/files/f014aa2e59c601bf3f2b60ac821747e0.yaml.php b/cache/compiled/files/f014aa2e59c601bf3f2b60ac821747e0.yaml.php index a7f4fa4..7e02a5c 100644 --- a/cache/compiled/files/f014aa2e59c601bf3f2b60ac821747e0.yaml.php +++ b/cache/compiled/files/f014aa2e59c601bf3f2b60ac821747e0.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/tlh.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'LOGIN_BTN_FORGOT' => 'lIj', diff --git a/cache/compiled/files/f2e7363e31637783105e00754842f4f5.yaml.php b/cache/compiled/files/f2e7363e31637783105e00754842f4f5.yaml.php index 5a53b8b..466afc2 100644 --- a/cache/compiled/files/f2e7363e31637783105e00754842f4f5.yaml.php +++ b/cache/compiled/files/f2e7363e31637783105e00754842f4f5.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/sl.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'LOGIN_BTN' => 'Prijava', diff --git a/cache/compiled/files/f39402ff77c16d5007077f428396cc03.yaml.php b/cache/compiled/files/f39402ff77c16d5007077f428396cc03.yaml.php index 1dd8fbe..026fad1 100644 --- a/cache/compiled/files/f39402ff77c16d5007077f428396cc03.yaml.php +++ b/cache/compiled/files/f39402ff77c16d5007077f428396cc03.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/blueprints/config/media.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'title' => 'PLUGIN_ADMIN.MEDIA', 'form' => [ diff --git a/cache/compiled/files/f49d8e2c727f9727139a1d757c60decc.yaml.php b/cache/compiled/files/f49d8e2c727f9727139a1d757c60decc.yaml.php index 93440f3..c57d0b1 100644 --- a/cache/compiled/files/f49d8e2c727f9727139a1d757c60decc.yaml.php +++ b/cache/compiled/files/f49d8e2c727f9727139a1d757c60decc.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/fr.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/f64c70b8a83d64c81b6f7b7a8ec2a648.yaml.php b/cache/compiled/files/f64c70b8a83d64c81b6f7b7a8ec2a648.yaml.php index 3ff5c53..3e62f90 100644 --- a/cache/compiled/files/f64c70b8a83d64c81b6f7b7a8ec2a648.yaml.php +++ b/cache/compiled/files/f64c70b8a83d64c81b6f7b7a8ec2a648.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/nb.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'MONTHS_OF_THE_YEAR' => [ 0 => 'januar', diff --git a/cache/compiled/files/f6e34bd4e6690a1e76ff5d8b133c6bf6.yaml.php b/cache/compiled/files/f6e34bd4e6690a1e76ff5d8b133c6bf6.yaml.php index dc303e9..3cad7ad 100644 --- a/cache/compiled/files/f6e34bd4e6690a1e76ff5d8b133c6bf6.yaml.php +++ b/cache/compiled/files/f6e34bd4e6690a1e76ff5d8b133c6bf6.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/eu.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Beta bertsio bat da hau! Produkzioan erabili ezazu zure ardurapean...', diff --git a/cache/compiled/files/f976ddc60dffeab70b81fbac9a4d3bcc.yaml.php b/cache/compiled/files/f976ddc60dffeab70b81fbac9a4d3bcc.yaml.php index 57a82cc..f0cc2d5 100644 --- a/cache/compiled/files/f976ddc60dffeab70b81fbac9a4d3bcc.yaml.php +++ b/cache/compiled/files/f976ddc60dffeab70b81fbac9a4d3bcc.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/languages/vi.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'FRONTMATTER_ERROR_PAGE' => '--- title: %1$s diff --git a/cache/compiled/files/fb3c20d334ca0ff83c1da9dfadf33254.yaml.php b/cache/compiled/files/fb3c20d334ca0ff83c1da9dfadf33254.yaml.php index a0b0792..dbbdb0c 100644 --- a/cache/compiled/files/fb3c20d334ca0ff83c1da9dfadf33254.yaml.php +++ b/cache/compiled/files/fb3c20d334ca0ff83c1da9dfadf33254.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/blueprints/admin/pages/new.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'rules' => [ 'slug' => [ diff --git a/cache/compiled/files/fb887d874c09a6c5caa8b1717fc7467c.yaml.php b/cache/compiled/files/fb887d874c09a6c5caa8b1717fc7467c.yaml.php index 8384b89..6296901 100644 --- a/cache/compiled/files/fb887d874c09a6c5caa8b1717fc7467c.yaml.php +++ b/cache/compiled/files/fb887d874c09a6c5caa8b1717fc7467c.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/system/blueprints/config/system.yaml', - 'modified' => 1533014916, + 'modified' => 1534926041, 'data' => [ 'title' => 'PLUGIN_ADMIN.SYSTEM', 'form' => [ @@ -1152,6 +1152,20 @@ return [ 'type' => 'bool' ] ], + 'session.initialize' => [ + 'type' => 'toggle', + 'label' => 'PLUGIN_ADMIN.SESSION_INITIALIZE', + 'help' => 'PLUGIN_ADMIN.SESSION_INITIALIZE_HELP', + 'highlight' => 1, + 'options' => [ + 1 => 'PLUGIN_ADMIN.YES', + 0 => 'PLUGIN_ADMIN.NO' + ], + 'default' => true, + 'validate' => [ + 'type' => 'bool' + ] + ], 'session.timeout' => [ 'type' => 'text', 'size' => 'small', @@ -1388,6 +1402,34 @@ return [ 'placeholder' => 'e.g. http://yoursite.com/yourpath', 'label' => 'PLUGIN_ADMIN.CUSTOM_BASE_URL', 'help' => 'PLUGIN_ADMIN.CUSTOM_BASE_URL_HELP' + ], + 'strict_mode.yaml_compat' => [ + 'type' => 'toggle', + 'label' => 'PLUGIN_ADMIN.STRICT_YAML_COMPAT', + 'highlight' => 1, + 'default' => 1, + 'help' => 'PLUGIN_ADMIN.STRICT_YAML_COMPAT_HELP', + 'options' => [ + 1 => 'PLUGIN_ADMIN.YES', + 0 => 'PLUGIN_ADMIN.NO' + ], + 'validate' => [ + 'type' => 'bool' + ] + ], + 'strict_mode.twig_compat' => [ + 'type' => 'toggle', + 'label' => 'PLUGIN_ADMIN.STRICT_TWIG_COMPAT', + 'highlight' => 1, + 'default' => 1, + 'help' => 'PLUGIN_ADMIN.STRICT_TWIG_COMPAT_HELP', + 'options' => [ + 1 => 'PLUGIN_ADMIN.YES', + 0 => 'PLUGIN_ADMIN.NO' + ], + 'validate' => [ + 'type' => 'bool' + ] ] ] ] diff --git a/cache/compiled/files/fcd3bb05a3eb857a6596739f79c41f77.yaml.php b/cache/compiled/files/fcd3bb05a3eb857a6596739f79c41f77.yaml.php index 443dc6d..180ce6f 100644 --- a/cache/compiled/files/fcd3bb05a3eb857a6596739f79c41f77.yaml.php +++ b/cache/compiled/files/fcd3bb05a3eb857a6596739f79c41f77.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/tr.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Bu bir beta sürümüdür! Sunucunuzda kullanmak sizin sorumluluğunuzdadır...', diff --git a/cache/compiled/files/fcdd5c2d23457c6aadd0f9e404acefb8.yaml.php b/cache/compiled/files/fcdd5c2d23457c6aadd0f9e404acefb8.yaml.php index 323b4e4..b2267d5 100644 --- a/cache/compiled/files/fcdd5c2d23457c6aadd0f9e404acefb8.yaml.php +++ b/cache/compiled/files/fcdd5c2d23457c6aadd0f9e404acefb8.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/hr.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Ovo je Beta izdanje! Koristite u produkciji na vlastiti rizik...', diff --git a/cache/compiled/files/fdb7927b1ad2031423768d1fe7f2211d.yaml.php b/cache/compiled/files/fdb7927b1ad2031423768d1fe7f2211d.yaml.php index c9e2334..a2fff88 100644 --- a/cache/compiled/files/fdb7927b1ad2031423768d1fe7f2211d.yaml.php +++ b/cache/compiled/files/fdb7927b1ad2031423768d1fe7f2211d.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/fr.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Ceci est une version bêta ! Utilisez-là en production à vos risques et périls...', diff --git a/cache/compiled/files/ffb3d0b1df1ab5c5d83648f56a6d7edf.yaml.php b/cache/compiled/files/ffb3d0b1df1ab5c5d83648f56a6d7edf.yaml.php index 42b918d..e8d9683 100644 --- a/cache/compiled/files/ffb3d0b1df1ab5c5d83648f56a6d7edf.yaml.php +++ b/cache/compiled/files/ffb3d0b1df1ab5c5d83648f56a6d7edf.yaml.php @@ -2,7 +2,7 @@ return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/languages/br.yaml', - 'modified' => 1533014916, + 'modified' => 1534926555, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Un ermaeziadenn beta an hini eo! Arverit en endro produadur gant evezh...', diff --git a/cache/compiled/languages/master-dev.hehe.net.php b/cache/compiled/languages/master-dev.hehe.net.php index 4dc036a..929dcc3 100644 --- a/cache/compiled/languages/master-dev.hehe.net.php +++ b/cache/compiled/languages/master-dev.hehe.net.php @@ -1,127 +1,127 @@ 'Grav\\Common\\Config\\CompiledLanguages', - 'timestamp' => 1534765164, - 'checksum' => '6c5391e484bf1638c9846acf597e3d7f', + 'timestamp' => 1534926556, + 'checksum' => '1444a2e674151ff1edada59015b43d73', 'files' => [ 'system/languages' => [ 'ar' => [ 'file' => 'system/languages/ar.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'ca' => [ 'file' => 'system/languages/ca.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'cs' => [ 'file' => 'system/languages/cs.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'da' => [ 'file' => 'system/languages/da.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'de' => [ 'file' => 'system/languages/de.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'el' => [ 'file' => 'system/languages/el.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'en' => [ 'file' => 'system/languages/en.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'es' => [ 'file' => 'system/languages/es.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'fi' => [ 'file' => 'system/languages/fi.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'fr' => [ 'file' => 'system/languages/fr.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'hr' => [ 'file' => 'system/languages/hr.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'hu' => [ 'file' => 'system/languages/hu.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'it' => [ 'file' => 'system/languages/it.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'ja' => [ 'file' => 'system/languages/ja.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'lt' => [ 'file' => 'system/languages/lt.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'nb' => [ 'file' => 'system/languages/nb.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'nl' => [ 'file' => 'system/languages/nl.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'no' => [ 'file' => 'system/languages/no.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'pl' => [ 'file' => 'system/languages/pl.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'pt' => [ 'file' => 'system/languages/pt.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'ro' => [ 'file' => 'system/languages/ro.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'ru' => [ 'file' => 'system/languages/ru.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'sk' => [ 'file' => 'system/languages/sk.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'sv' => [ 'file' => 'system/languages/sv.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'th' => [ 'file' => 'system/languages/th.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'tr' => [ 'file' => 'system/languages/tr.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'uk' => [ 'file' => 'system/languages/uk.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ], 'vi' => [ 'file' => 'system/languages/vi.yaml', - 'modified' => 1533014916 + 'modified' => 1534926041 ] ], 'user/plugins' => [ 'plugins/form' => [ 'file' => 'user/plugins/form/languages.yaml', - 'modified' => 1533014916 + 'modified' => 1534926514 ], 'plugins/error' => [ 'file' => 'user/plugins/error/languages.yaml', @@ -135,159 +135,159 @@ return [ 'user/plugins/admin/languages' => [ 'ar' => [ 'file' => 'user/plugins/admin/languages/ar.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'bg' => [ 'file' => 'user/plugins/admin/languages/bg.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'br' => [ 'file' => 'user/plugins/admin/languages/br.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'ca' => [ 'file' => 'user/plugins/admin/languages/ca.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'cs' => [ 'file' => 'user/plugins/admin/languages/cs.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'cy' => [ 'file' => 'user/plugins/admin/languages/cy.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'da' => [ 'file' => 'user/plugins/admin/languages/da.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'de' => [ 'file' => 'user/plugins/admin/languages/de.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'el' => [ 'file' => 'user/plugins/admin/languages/el.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'en' => [ 'file' => 'user/plugins/admin/languages/en.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'es' => [ 'file' => 'user/plugins/admin/languages/es.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'et' => [ 'file' => 'user/plugins/admin/languages/et.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'eu' => [ 'file' => 'user/plugins/admin/languages/eu.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'fa' => [ 'file' => 'user/plugins/admin/languages/fa.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'fi' => [ 'file' => 'user/plugins/admin/languages/fi.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'fr' => [ 'file' => 'user/plugins/admin/languages/fr.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'he' => [ 'file' => 'user/plugins/admin/languages/he.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'hr' => [ 'file' => 'user/plugins/admin/languages/hr.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'hu' => [ 'file' => 'user/plugins/admin/languages/hu.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'id' => [ 'file' => 'user/plugins/admin/languages/id.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'it' => [ 'file' => 'user/plugins/admin/languages/it.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'ja' => [ 'file' => 'user/plugins/admin/languages/ja.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'ko' => [ 'file' => 'user/plugins/admin/languages/ko.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'lt' => [ 'file' => 'user/plugins/admin/languages/lt.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'nl' => [ 'file' => 'user/plugins/admin/languages/nl.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'no' => [ 'file' => 'user/plugins/admin/languages/no.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'pl' => [ 'file' => 'user/plugins/admin/languages/pl.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'pt' => [ 'file' => 'user/plugins/admin/languages/pt.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'ro' => [ 'file' => 'user/plugins/admin/languages/ro.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'ru' => [ 'file' => 'user/plugins/admin/languages/ru.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'sk' => [ 'file' => 'user/plugins/admin/languages/sk.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'sl' => [ 'file' => 'user/plugins/admin/languages/sl.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'sv' => [ 'file' => 'user/plugins/admin/languages/sv.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'th' => [ 'file' => 'user/plugins/admin/languages/th.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'tlh' => [ 'file' => 'user/plugins/admin/languages/tlh.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'tr' => [ 'file' => 'user/plugins/admin/languages/tr.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'uk' => [ 'file' => 'user/plugins/admin/languages/uk.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'vi' => [ 'file' => 'user/plugins/admin/languages/vi.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ], 'zh' => [ 'file' => 'user/plugins/admin/languages/zh.yaml', - 'modified' => 1533014916 + 'modified' => 1534926555 ] ], 'user/plugins/login/languages' => [ @@ -2026,7 +2026,11 @@ You have **2FA** enabled on this account. Please use your **2FA** app to enter t 'OPEN_NEW_TAB' => 'Open in new tab', 'PAGEMEDIA_RESIZER' => '> The following settings apply to images uploaded through the page media. Resize Width / Height will automatically resize down and proportionally an image if exceeds the limits set in the inputs. Resolution min and max values define the size ranges for uploaded images. Set the fields to 0 to prevent any manipulation.', 'SESSION_INITIALIZE' => 'Initialize Session', - 'SESSION_INITIALIZE_HELP' => 'Makes Grav to start a session. This feature is needed to make any user interaction to work, such as login, forms etc. Admin plugin isn\'t affected by this setting.' + 'SESSION_INITIALIZE_HELP' => 'Makes Grav to start a session. This feature is needed to make any user interaction to work, such as login, forms etc. Admin plugin isn\'t affected by this setting.', + 'STRICT_YAML_COMPAT' => 'YAML Compatibility', + 'STRICT_YAML_COMPAT_HELP' => 'Falls back to Symfony 2.4 YAML parser if Native or 3.4 parser fails', + 'STRICT_TWIG_COMPAT' => 'Twig Compatibility', + 'STRICT_TWIG_COMPAT_HELP' => 'Enables deprecated Twig autoescape setting. When disabled, |raw filter is required to output HTML as Twig will autoescape output' ], 'PLUGIN_FORM' => [ 'NOT_VALIDATED' => 'Form not validated. One or more required fields are missing.', @@ -22874,7 +22878,7 @@ Path: `%2$s` 6 => 'søndag' ] ], - 'checksum' => '6c5391e484bf1638c9846acf597e3d7f', - 'timestamp' => 1534765164 + 'checksum' => '1444a2e674151ff1edada59015b43d73', + 'timestamp' => 1534926556 ] ]; diff --git a/cache/gpm/06/5b31366131656533343765633266326332346536373661336664393931656533615d5b315d.doctrinecache.data b/cache/gpm/06/5b31366131656533343765633266326332346536373661336664393931656533615d5b315d.doctrinecache.data index 57a94b5..16ec162 100644 --- a/cache/gpm/06/5b31366131656533343765633266326332346536373661336664393931656533615d5b315d.doctrinecache.data +++ b/cache/gpm/06/5b31366131656533343765633266326332346536373661336664393931656533615d5b315d.doctrinecache.data @@ -1,3 +1,3 @@ -1534938359 -s:1073818:"{"solarize":{"name":"Solarize","version":"0.1.0","description":"Grav port of Solarize theme by Templated","description_html":"

Grav port of Solarize theme by Templated<\/p>","description_plain":"Grav port of Solarize theme by Templated","icon":"rebel","author":{"name":"Hugh Barnes","email":"dev@hubns.com"},"homepage":"https:\/\/github.com\/hughbris\/grav-theme-solarize","docs":"https:\/\/github.com\/hughbris\/grav-theme-solarize\/blob\/develop\/README.md","demo":"https:\/\/behold.metamotive.co.nz\/solarize","keywords":"grav, theme, etc","bugs":"https:\/\/github.com\/hughbris\/grav-theme-solarize\/issues","license":"MIT","tag_name":"v0.1.1","date":"2018-07-29T09:16:58Z","release_type":"stable","zipball_url":"https:\/\/getgrav.org\/download\/themes\/solarize\/0.1.0","repository":"https:\/\/github.com\/hughbris\/grav-theme-solarize","slug":"solarize","install_path":"user\/themes\/solarize","screenshot":"themes-solarize.jpg","changelog":{"0.1.0":{"date":" 28-07-2018","content":"1. [](#new)\n * Initial basic release, missing content blueprints and elements page","content_html":"

    \n
  1. <\/a>\n