From 6f73d54280a582bd0d2d50267baa92ec5284cd56 Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 5 Apr 2022 16:46:55 +0300 Subject: [PATCH] chore(flextype): update copyright information --- .htaccess | 11 +++++++++-- LICENSE.txt | 2 +- bin/flextype | 13 ++++++++++--- index.php | 13 ++++++++++--- src/flextype/core/Actions.php | 13 ++++++++++--- src/flextype/core/Cache/Drivers/Phparray/Config.php | 13 ++++++++++--- src/flextype/core/Cache/Drivers/Phparray/Driver.php | 13 ++++++++++--- src/flextype/core/Cache/Drivers/Phparray/Item.php | 13 ++++++++++--- .../Console/Commands/Cache/CacheClearCommand.php | 13 ++++++++++--- .../Console/Commands/Cache/CacheDeleteCommand.php | 13 ++++++++++--- .../Commands/Cache/CacheDeleteMultipleCommand.php | 13 ++++++++++--- .../core/Console/Commands/Cache/CacheGetCommand.php | 13 ++++++++++--- .../Commands/Cache/CacheGetMultipleCommand.php | 13 ++++++++++--- .../core/Console/Commands/Cache/CacheHasCommand.php | 13 ++++++++++--- .../core/Console/Commands/Cache/CacheSetCommand.php | 13 ++++++++++--- .../Commands/Cache/CacheSetMultipleCommand.php | 13 ++++++++++--- .../Console/Commands/Entries/EntrieFetchCommand.php | 13 ++++++++++--- .../Console/Commands/Entries/EntrieHasCommand.php | 13 ++++++++++--- .../Console/Commands/Entries/EntrieMoveCommand.php | 13 ++++++++++--- .../Console/Commands/Entries/EntriesCopyCommand.php | 13 ++++++++++--- .../Commands/Entries/EntriesCreateCommand.php | 13 ++++++++++--- .../Commands/Entries/EntriesDeleteCommand.php | 13 ++++++++++--- .../Commands/Entries/EntriesUpdateCommand.php | 13 ++++++++++--- .../Console/Commands/Utils/GenerateTokenCommand.php | 13 ++++++++++--- .../Commands/Utils/GenerateTokenHashCommand.php | 13 ++++++++++--- .../Commands/Utils/VerifyTokenHashCommand.php | 13 ++++++++++--- src/flextype/core/Console/FlextypeConsole.php | 13 ++++++++++--- src/flextype/core/Endpoints/Api.php | 13 ++++++++++--- src/flextype/core/Endpoints/Entries.php | 13 ++++++++++--- src/flextype/core/Endpoints/Registry.php | 13 ++++++++++--- src/flextype/core/Endpoints/Utils.php | 13 ++++++++++--- src/flextype/core/Entries/Entries.php | 13 ++++++++++--- .../core/Entries/Fields/Default/CreatedAtField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/CreatedByField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/EntriesField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/IdField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/ModifiedAtField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/ParsersField.php | 13 ++++++++++--- .../Entries/Fields/Default/PublishedAtField.php | 13 ++++++++++--- .../Entries/Fields/Default/PublishedByField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/RegistryField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/RoutableField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/SlugField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/UuidField.php | 13 ++++++++++--- .../core/Entries/Fields/Default/VisibilityField.php | 13 ++++++++++--- .../core/Entries/Fields/Tokens/Items/CallsField.php | 13 ++++++++++--- .../Entries/Fields/Tokens/Items/LimitCallsField.php | 13 ++++++++++--- .../core/Entries/Fields/Tokens/Items/StateField.php | 13 ++++++++++--- src/flextype/core/Flextype.php | 13 ++++++++++--- src/flextype/core/I18n.php | 13 ++++++++++--- src/flextype/core/Middlewares/CsrfMiddleware.php | 13 ++++++++++--- src/flextype/core/Middlewares/WhoopsMiddleware.php | 13 ++++++++++--- src/flextype/core/Parsers/Markdown.php | 13 ++++++++++--- src/flextype/core/Parsers/Parsers.php | 13 ++++++++++--- src/flextype/core/Parsers/Shortcodes.php | 13 ++++++++++--- .../core/Parsers/Shortcodes/EntriesShortcode.php | 13 ++++++++++--- .../core/Parsers/Shortcodes/RawShortcode.php | 13 ++++++++++--- .../core/Parsers/Shortcodes/RegistryShortcode.php | 13 ++++++++++--- .../core/Parsers/Shortcodes/UrlShortcode.php | 13 ++++++++++--- src/flextype/core/Plugins.php | 13 ++++++++++--- src/flextype/core/Serializers/Frontmatter.php | 13 ++++++++++--- src/flextype/core/Serializers/Json.php | 13 ++++++++++--- src/flextype/core/Serializers/Neon.php | 13 ++++++++++--- src/flextype/core/Serializers/PhpArray.php | 13 ++++++++++--- src/flextype/core/Serializers/Serializers.php | 13 ++++++++++--- src/flextype/core/Serializers/Yaml.php | 13 ++++++++++--- src/flextype/core/Whoops.php | 13 ++++++++++--- src/flextype/flextype.php | 13 ++++++++++--- src/flextype/routes/endpoints/entries.php | 13 ++++++++++--- src/flextype/routes/endpoints/registry.php | 13 ++++++++++--- src/flextype/routes/endpoints/utils.php | 13 ++++++++++--- 71 files changed, 700 insertions(+), 210 deletions(-) diff --git a/.htaccess b/.htaccess index 39da9455..a2d65149 100755 --- a/.htaccess +++ b/.htaccess @@ -1,7 +1,14 @@ ## -# Flextype (https://awilum.github.io/flextype) -# Founded by Sergey Romanenko and maintained by Flextype Community. +# Flextype - Hybrid Content Management System with the freedom of a headless CMS +# and with the full functionality of a traditional CMS! +# +# Copyright (c) Sergey Romanenko (https://awilum.github.io) # +# Licensed under The MIT License. +# +# For full copyright and license information, please see the LICENSE +# Redistributions of files must retain the above copyright notice. +## ## Common PHP Overrides # diff --git a/LICENSE.txt b/LICENSE.txt index 3c0b5d5b..fe6848dd 100755 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2022 Sergey Romanenko +Copyright (c) Sergey Romanenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/bin/flextype b/bin/flextype index d0172637..50c1199e 100755 --- a/bin/flextype +++ b/bin/flextype @@ -1,9 +1,16 @@ #!/usr/bin/env php addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/CreatedByField.php b/src/flextype/core/Entries/Fields/Default/CreatedByField.php index 532061a0..e6308088 100644 --- a/src/flextype/core/Entries/Fields/Default/CreatedByField.php +++ b/src/flextype/core/Entries/Fields/Default/CreatedByField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesCreate', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/EntriesField.php b/src/flextype/core/Entries/Fields/Default/EntriesField.php index cc335b52..9978e9e3 100644 --- a/src/flextype/core/Entries/Fields/Default/EntriesField.php +++ b/src/flextype/core/Entries/Fields/Default/EntriesField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ use Glowy\Arrays\Arrays; diff --git a/src/flextype/core/Entries/Fields/Default/IdField.php b/src/flextype/core/Entries/Fields/Default/IdField.php index 7b0c742b..628e67bb 100644 --- a/src/flextype/core/Entries/Fields/Default/IdField.php +++ b/src/flextype/core/Entries/Fields/Default/IdField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/ModifiedAtField.php b/src/flextype/core/Entries/Fields/Default/ModifiedAtField.php index 95086ee3..555a9aa0 100644 --- a/src/flextype/core/Entries/Fields/Default/ModifiedAtField.php +++ b/src/flextype/core/Entries/Fields/Default/ModifiedAtField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/ParsersField.php b/src/flextype/core/Entries/Fields/Default/ParsersField.php index 745b6a29..53a4d27a 100644 --- a/src/flextype/core/Entries/Fields/Default/ParsersField.php +++ b/src/flextype/core/Entries/Fields/Default/ParsersField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/PublishedAtField.php b/src/flextype/core/Entries/Fields/Default/PublishedAtField.php index b1ced314..2701dc10 100644 --- a/src/flextype/core/Entries/Fields/Default/PublishedAtField.php +++ b/src/flextype/core/Entries/Fields/Default/PublishedAtField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/PublishedByField.php b/src/flextype/core/Entries/Fields/Default/PublishedByField.php index c19aa478..cdfe6b54 100644 --- a/src/flextype/core/Entries/Fields/Default/PublishedByField.php +++ b/src/flextype/core/Entries/Fields/Default/PublishedByField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesCreate', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/RegistryField.php b/src/flextype/core/Entries/Fields/Default/RegistryField.php index d2019ee1..238e712e 100644 --- a/src/flextype/core/Entries/Fields/Default/RegistryField.php +++ b/src/flextype/core/Entries/Fields/Default/RegistryField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/RoutableField.php b/src/flextype/core/Entries/Fields/Default/RoutableField.php index 915229a7..bdce98e3 100644 --- a/src/flextype/core/Entries/Fields/Default/RoutableField.php +++ b/src/flextype/core/Entries/Fields/Default/RoutableField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/SlugField.php b/src/flextype/core/Entries/Fields/Default/SlugField.php index 37326d7c..870abd28 100644 --- a/src/flextype/core/Entries/Fields/Default/SlugField.php +++ b/src/flextype/core/Entries/Fields/Default/SlugField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Default/UuidField.php b/src/flextype/core/Entries/Fields/Default/UuidField.php index 59b49128..172411da 100644 --- a/src/flextype/core/Entries/Fields/Default/UuidField.php +++ b/src/flextype/core/Entries/Fields/Default/UuidField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ use Ramsey\Uuid\Uuid; diff --git a/src/flextype/core/Entries/Fields/Default/VisibilityField.php b/src/flextype/core/Entries/Fields/Default/VisibilityField.php index f03b1e77..9c5e3c14 100644 --- a/src/flextype/core/Entries/Fields/Default/VisibilityField.php +++ b/src/flextype/core/Entries/Fields/Default/VisibilityField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesFetchSingleHasResult', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Tokens/Items/CallsField.php b/src/flextype/core/Entries/Fields/Tokens/Items/CallsField.php index 92f41972..1220de0e 100644 --- a/src/flextype/core/Entries/Fields/Tokens/Items/CallsField.php +++ b/src/flextype/core/Entries/Fields/Tokens/Items/CallsField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesCreate', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Tokens/Items/LimitCallsField.php b/src/flextype/core/Entries/Fields/Tokens/Items/LimitCallsField.php index cdaeabf1..ca8aed9a 100644 --- a/src/flextype/core/Entries/Fields/Tokens/Items/LimitCallsField.php +++ b/src/flextype/core/Entries/Fields/Tokens/Items/LimitCallsField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesCreate', static function (): void { diff --git a/src/flextype/core/Entries/Fields/Tokens/Items/StateField.php b/src/flextype/core/Entries/Fields/Tokens/Items/StateField.php index 5dafce6a..a4ec4cb8 100644 --- a/src/flextype/core/Entries/Fields/Tokens/Items/StateField.php +++ b/src/flextype/core/Entries/Fields/Tokens/Items/StateField.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ emitter()->addListener('onEntriesCreate', static function (): void { diff --git a/src/flextype/core/Flextype.php b/src/flextype/core/Flextype.php index 9cc0fa2b..8e33fa38 100644 --- a/src/flextype/core/Flextype.php +++ b/src/flextype/core/Flextype.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype; diff --git a/src/flextype/core/I18n.php b/src/flextype/core/I18n.php index cfe0ec2b..03d3bdd4 100644 --- a/src/flextype/core/I18n.php +++ b/src/flextype/core/I18n.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype; diff --git a/src/flextype/core/Middlewares/CsrfMiddleware.php b/src/flextype/core/Middlewares/CsrfMiddleware.php index 71cf9ebd..e161aefb 100644 --- a/src/flextype/core/Middlewares/CsrfMiddleware.php +++ b/src/flextype/core/Middlewares/CsrfMiddleware.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Middlewares; diff --git a/src/flextype/core/Middlewares/WhoopsMiddleware.php b/src/flextype/core/Middlewares/WhoopsMiddleware.php index ca051a9f..4c7941c8 100644 --- a/src/flextype/core/Middlewares/WhoopsMiddleware.php +++ b/src/flextype/core/Middlewares/WhoopsMiddleware.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Middlewares; diff --git a/src/flextype/core/Parsers/Markdown.php b/src/flextype/core/Parsers/Markdown.php index a192d4a2..f0ccaed0 100644 --- a/src/flextype/core/Parsers/Markdown.php +++ b/src/flextype/core/Parsers/Markdown.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Parsers; diff --git a/src/flextype/core/Parsers/Parsers.php b/src/flextype/core/Parsers/Parsers.php index fd77912f..c18c965b 100644 --- a/src/flextype/core/Parsers/Parsers.php +++ b/src/flextype/core/Parsers/Parsers.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Parsers; diff --git a/src/flextype/core/Parsers/Shortcodes.php b/src/flextype/core/Parsers/Shortcodes.php index aa803d80..115c0cd6 100644 --- a/src/flextype/core/Parsers/Shortcodes.php +++ b/src/flextype/core/Parsers/Shortcodes.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Parsers; diff --git a/src/flextype/core/Parsers/Shortcodes/EntriesShortcode.php b/src/flextype/core/Parsers/Shortcodes/EntriesShortcode.php index bc7616d8..6867c003 100644 --- a/src/flextype/core/Parsers/Shortcodes/EntriesShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/EntriesShortcode.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Parsers\Shortcodes; diff --git a/src/flextype/core/Parsers/Shortcodes/RawShortcode.php b/src/flextype/core/Parsers/Shortcodes/RawShortcode.php index 2fda4f95..6217e3bd 100644 --- a/src/flextype/core/Parsers/Shortcodes/RawShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/RawShortcode.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Parsers\Shortcodes; diff --git a/src/flextype/core/Parsers/Shortcodes/RegistryShortcode.php b/src/flextype/core/Parsers/Shortcodes/RegistryShortcode.php index 3717e785..36652f3a 100644 --- a/src/flextype/core/Parsers/Shortcodes/RegistryShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/RegistryShortcode.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Parsers\Shortcodes; diff --git a/src/flextype/core/Parsers/Shortcodes/UrlShortcode.php b/src/flextype/core/Parsers/Shortcodes/UrlShortcode.php index eae9f08f..e297e052 100644 --- a/src/flextype/core/Parsers/Shortcodes/UrlShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/UrlShortcode.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Parsers\Shortcodes; diff --git a/src/flextype/core/Plugins.php b/src/flextype/core/Plugins.php index eb7db8ad..b4a39fea 100755 --- a/src/flextype/core/Plugins.php +++ b/src/flextype/core/Plugins.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype; diff --git a/src/flextype/core/Serializers/Frontmatter.php b/src/flextype/core/Serializers/Frontmatter.php index 916f30a9..c237bbc7 100644 --- a/src/flextype/core/Serializers/Frontmatter.php +++ b/src/flextype/core/Serializers/Frontmatter.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Serializers; diff --git a/src/flextype/core/Serializers/Json.php b/src/flextype/core/Serializers/Json.php index 8552c77a..281bedfd 100644 --- a/src/flextype/core/Serializers/Json.php +++ b/src/flextype/core/Serializers/Json.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Serializers; diff --git a/src/flextype/core/Serializers/Neon.php b/src/flextype/core/Serializers/Neon.php index 1e6b1c47..11c84b99 100644 --- a/src/flextype/core/Serializers/Neon.php +++ b/src/flextype/core/Serializers/Neon.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Serializers; diff --git a/src/flextype/core/Serializers/PhpArray.php b/src/flextype/core/Serializers/PhpArray.php index 34766114..353c1e0c 100644 --- a/src/flextype/core/Serializers/PhpArray.php +++ b/src/flextype/core/Serializers/PhpArray.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Serializers; diff --git a/src/flextype/core/Serializers/Serializers.php b/src/flextype/core/Serializers/Serializers.php index 3bdd87cf..f2e9193a 100644 --- a/src/flextype/core/Serializers/Serializers.php +++ b/src/flextype/core/Serializers/Serializers.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Serializers; diff --git a/src/flextype/core/Serializers/Yaml.php b/src/flextype/core/Serializers/Yaml.php index 86b18f84..a25d05b4 100644 --- a/src/flextype/core/Serializers/Yaml.php +++ b/src/flextype/core/Serializers/Yaml.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype\Serializers; diff --git a/src/flextype/core/Whoops.php b/src/flextype/core/Whoops.php index c75df7b8..00c97228 100644 --- a/src/flextype/core/Whoops.php +++ b/src/flextype/core/Whoops.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype; diff --git a/src/flextype/flextype.php b/src/flextype/flextype.php index 6a47d0ab..0b761365 100644 --- a/src/flextype/flextype.php +++ b/src/flextype/flextype.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype; diff --git a/src/flextype/routes/endpoints/entries.php b/src/flextype/routes/endpoints/entries.php index 9b9db65c..c8998508 100644 --- a/src/flextype/routes/endpoints/entries.php +++ b/src/flextype/routes/endpoints/entries.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype; diff --git a/src/flextype/routes/endpoints/registry.php b/src/flextype/routes/endpoints/registry.php index 74774114..2937206a 100644 --- a/src/flextype/routes/endpoints/registry.php +++ b/src/flextype/routes/endpoints/registry.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype; diff --git a/src/flextype/routes/endpoints/utils.php b/src/flextype/routes/endpoints/utils.php index 04b6460d..a5842987 100644 --- a/src/flextype/routes/endpoints/utils.php +++ b/src/flextype/routes/endpoints/utils.php @@ -2,9 +2,16 @@ declare(strict_types=1); -/** - * Flextype (https://awilum.github.io/flextype) - * Founded by Sergey Romanenko and maintained by Flextype Community. + /** + * Flextype - Hybrid Content Management System with the freedom of a headless CMS + * and with the full functionality of a traditional CMS! + * + * Copyright (c) Sergey Romanenko (https://awilum.github.io) + * + * Licensed under The MIT License. + * + * For full copyright and license information, please see the LICENSE + * Redistributions of files must retain the above copyright notice. */ namespace Flextype;