├── LICENSE ├── README.md ├── composer.json ├── config ├── Migrations │ └── 20200430170235_MigrationToolsTokens.php ├── app.default.php └── bootstrap.php ├── docs ├── Authentication │ └── LoginLink.md ├── Backend.md ├── Behavior │ ├── AfterSave.md │ ├── Bitmasked.md │ ├── Encryption.md │ ├── Jsonable.md │ ├── Passwordable.md │ ├── Reset.md │ ├── Slugged.md │ ├── String.md │ ├── Toggle.md │ └── Typographic.md ├── Command │ └── Inflect.md ├── Component │ ├── Common.md │ ├── Mobile.md │ └── RefererRedirect.md ├── Contributing.md ├── Controller │ └── Controller.md ├── Entity │ ├── Enum.md │ └── StaticEnum.md ├── Error │ └── ExceptionTrap.md ├── Helper │ ├── Common.md │ ├── Form.md │ ├── Format.md │ ├── Html.md │ ├── Icon.md │ ├── Meter.md │ ├── Progress.md │ ├── Tree.md │ └── Typography.md ├── I18n │ ├── DateTime.md │ └── I18n.md ├── Install.md ├── Mailer │ └── Email.md ├── Model │ ├── Table.md │ └── Tokens.md ├── README.md ├── Shims.md ├── Upgrade.md ├── Url │ └── Url.md ├── Utility │ └── FileLog.md └── Widget │ └── Datalist.md ├── phpcs.xml ├── phpstan.neon ├── resources └── locales │ ├── README.txt │ ├── cs │ └── tools.po │ ├── de │ └── tools.po │ ├── en │ └── tools.po │ ├── es │ └── tools.po │ └── tools.pot ├── src ├── Auth │ ├── AbstractPasswordHasher.php │ ├── DefaultPasswordHasher.php │ └── PasswordHasherFactory.php ├── Authenticator │ └── LoginLinkAuthenticator.php ├── Command │ └── InflectCommand.php ├── Controller │ ├── Admin │ │ ├── HelperController.php │ │ ├── PagesController.php │ │ └── ToolsController.php │ ├── Component │ │ ├── CommonComponent.php │ │ ├── MobileComponent.php │ │ ├── RefererRedirectComponent.php │ │ └── UrlComponent.php │ ├── Controller.php │ └── ShuntRequestController.php ├── Error │ ├── ErrorHandlerTrait.php │ ├── ErrorLogger.php │ ├── ExceptionTrap.php │ └── Middleware │ │ └── ErrorHandlerMiddleware.php ├── Form │ └── ContactForm.php ├── I18n │ ├── Date.php │ ├── DateTime.php │ ├── DateTimeHelper.php │ └── Number.php ├── Identifier │ └── LoginLinkIdentifier.php ├── Mailer │ ├── Mailer.php │ ├── MailerAwareTrait.php │ └── Message.php ├── Model │ ├── Behavior │ │ ├── AfterSaveBehavior.php │ │ ├── BitmaskedBehavior.php │ │ ├── ConfirmableBehavior.php │ │ ├── EncryptionBehavior.php │ │ ├── JsonableBehavior.php │ │ ├── NeighborBehavior.php │ │ ├── PasswordableBehavior.php │ │ ├── ResetBehavior.php │ │ ├── SluggedBehavior.php │ │ ├── StringBehavior.php │ │ ├── ToggleBehavior.php │ │ ├── TypeMapBehavior.php │ │ └── TypographicBehavior.php │ ├── Entity │ │ ├── Entity.php │ │ ├── EnumTrait.php │ │ └── Token.php │ ├── Enum │ │ └── EnumOptionsTrait.php │ └── Table │ │ ├── Table.php │ │ └── TokensTable.php ├── ToolsPlugin.php ├── Utility │ ├── Clock.php │ ├── DateTime.php │ ├── FileLog.php │ ├── Language.php │ ├── Mime.php │ ├── MimeTypes.php │ ├── Number.php │ ├── Random.php │ ├── Text.php │ └── Utility.php └── View │ ├── Helper │ ├── CommonHelper.php │ ├── FormHelper.php │ ├── FormatHelper.php │ ├── GravatarHelper.php │ ├── HtmlHelper.php │ ├── HtmlTrait.php │ ├── IconHelper.php │ ├── MeterHelper.php │ ├── NumberHelper.php │ ├── ObfuscateHelper.php │ ├── ProgressHelper.php │ ├── QrCodeHelper.php │ ├── TextHelper.php │ ├── TimeHelper.php │ ├── TimelineHelper.php │ ├── TreeHelper.php │ ├── TypographyHelper.php │ ├── UrlHelper.php │ └── UrlTrait.php │ ├── Icon │ ├── AbstractIcon.php │ ├── BootstrapIcon.php │ ├── Collector │ │ ├── BootstrapIconCollector.php │ │ ├── FeatherIconCollector.php │ │ ├── FontAwesome4IconCollector.php │ │ ├── FontAwesome5IconCollector.php │ │ ├── FontAwesome6IconCollector.php │ │ └── MaterialIconCollector.php │ ├── FeatherIcon.php │ ├── FontAwesome4Icon.php │ ├── FontAwesome5Icon.php │ ├── FontAwesome6Icon.php │ ├── IconCollection.php │ ├── IconInterface.php │ └── MaterialIcon.php │ └── Widget │ └── DatalistWidget.php ├── templates ├── Admin │ ├── Helper │ │ ├── bitmasks.php │ │ └── chars.php │ ├── Pages │ │ └── index.php │ └── Tools │ │ └── index.php └── element │ └── pagination.php └── tests ├── Fixture ├── AfterTreesFixture.php ├── ArticlesFixture.php ├── AuthorsFixture.php ├── BitmaskedCommentsFixture.php ├── DataFixture.php ├── JsonableCommentsFixture.php ├── MultiColumnUsersFixture.php ├── PostsFixture.php ├── ResetCommentsFixture.php ├── RolesFixture.php ├── SessionsFixture.php ├── SluggedArticlesFixture.php ├── StoriesFixture.php ├── StringCommentsFixture.php ├── ToggleAddressesFixture.php ├── TokensFixture.php └── ToolsUsersFixture.php ├── TestCase ├── Authenticator │ └── LoginLinkAuthenticatorTest.php ├── BootstrapTest.php ├── Command │ └── InflectCommandTest.php ├── Controller │ ├── Admin │ │ ├── HelperControllerTest.php │ │ ├── PagesControllerTest.php │ │ └── ToolsControllerTest.php │ ├── Component │ │ ├── CommonComponentTest.php │ │ ├── MobileComponentTest.php │ │ ├── RefererRedirectComponentTest.php │ │ └── UrlComponentTest.php │ ├── ControllerTest.php │ └── ShuntRequestControllerTest.php ├── ErrorHandler │ ├── ErrorLoggerTest.php │ └── ExceptionTrapTest.php ├── Form │ └── ContactFormTest.php ├── HtmlDom │ └── HtmlDomTest.php ├── I18n │ ├── DateTest.php │ ├── DateTimeHelperTest.php │ ├── DateTimeTest.php │ └── NumberTest.php ├── Identifier │ └── LoginLinkIdentifierTest.php ├── Mailer │ ├── EmailTest.php │ ├── MailerTest.php │ └── MessageTest.php ├── Model │ ├── Behavior │ │ ├── AfterSaveBehaviorTest.php │ │ ├── BitmaskedBehaviorTest.php │ │ ├── ConfirmableBehaviorTest.php │ │ ├── EncryptionBehaviorTest.php │ │ ├── JsonableBehaviorTest.php │ │ ├── NeighborBehaviorTest.php │ │ ├── PasswordableBehaviorTest.php │ │ ├── ResetBehaviorTest.php │ │ ├── SluggedBehaviorTest.php │ │ ├── StringBehaviorTest.php │ │ ├── ToggleBehaviorTest.php │ │ ├── TypeMapBehaviorTest.php │ │ └── TypographicBehaviorTest.php │ ├── Entity │ │ └── EntityTest.php │ ├── Enum │ │ └── EnumOptionsTraitTest.php │ └── Table │ │ ├── TableTest.php │ │ └── TokensTableTest.php ├── Utility │ ├── ClockTest.php │ ├── FileLogTest.php │ ├── LanguageTest.php │ ├── MimeTest.php │ ├── MimeTypesTest.php │ ├── RandomTest.php │ ├── TextTest.php │ └── UtilityTest.php └── View │ ├── Helper │ ├── CommonHelperTest.php │ ├── FormHelperTest.php │ ├── FormatHelperTest.php │ ├── GravatarHelperTest.php │ ├── HtmlHelperTest.php │ ├── IconHelperTest.php │ ├── MeterHelperTest.php │ ├── NumberHelperTest.php │ ├── ObfuscateHelperTest.php │ ├── ProgressHelperTest.php │ ├── QrCodeHelperTest.php │ ├── TextHelperTest.php │ ├── TimeHelperTest.php │ ├── TimelineHelperTest.php │ ├── TreeHelperTest.php │ ├── TypographyHelperTest.php │ └── UrlHelperTest.php │ ├── Icon │ ├── BootstrapIconTest.php │ ├── Collector │ │ ├── BootstrapIconCollectorTest.php │ │ ├── FeatherIconCollectorTest.php │ │ ├── FontAwesome4CollectorTest.php │ │ ├── FontAwesome5CollectorTest.php │ │ ├── FontAwesome6CollectorTest.php │ │ └── MaterialIconCollectorTest.php │ ├── FeatherIconTest.php │ ├── FontAwesome4IconTest.php │ ├── FontAwesome5IconTest.php │ ├── FontAwesome6IconTest.php │ ├── IconCollectionTest.php │ └── MaterialIconTest.php │ └── Widget │ └── DatalistWidgetTest.php ├── bootstrap.php ├── config ├── bootstrap.php └── routes.php ├── schema.php └── templates ├── email ├── html │ └── welcome.php └── text │ └── welcome.php └── layout ├── default.php └── email ├── html └── fancy.php └── text └── fancy.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/composer.json -------------------------------------------------------------------------------- /config/Migrations/20200430170235_MigrationToolsTokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/config/Migrations/20200430170235_MigrationToolsTokens.php -------------------------------------------------------------------------------- /config/app.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/config/app.default.php -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /docs/Authentication/LoginLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Authentication/LoginLink.md -------------------------------------------------------------------------------- /docs/Backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Backend.md -------------------------------------------------------------------------------- /docs/Behavior/AfterSave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/AfterSave.md -------------------------------------------------------------------------------- /docs/Behavior/Bitmasked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/Bitmasked.md -------------------------------------------------------------------------------- /docs/Behavior/Encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/Encryption.md -------------------------------------------------------------------------------- /docs/Behavior/Jsonable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/Jsonable.md -------------------------------------------------------------------------------- /docs/Behavior/Passwordable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/Passwordable.md -------------------------------------------------------------------------------- /docs/Behavior/Reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/Reset.md -------------------------------------------------------------------------------- /docs/Behavior/Slugged.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/Slugged.md -------------------------------------------------------------------------------- /docs/Behavior/String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/String.md -------------------------------------------------------------------------------- /docs/Behavior/Toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/Toggle.md -------------------------------------------------------------------------------- /docs/Behavior/Typographic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Behavior/Typographic.md -------------------------------------------------------------------------------- /docs/Command/Inflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Command/Inflect.md -------------------------------------------------------------------------------- /docs/Component/Common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Component/Common.md -------------------------------------------------------------------------------- /docs/Component/Mobile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Component/Mobile.md -------------------------------------------------------------------------------- /docs/Component/RefererRedirect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Component/RefererRedirect.md -------------------------------------------------------------------------------- /docs/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Contributing.md -------------------------------------------------------------------------------- /docs/Controller/Controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Controller/Controller.md -------------------------------------------------------------------------------- /docs/Entity/Enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Entity/Enum.md -------------------------------------------------------------------------------- /docs/Entity/StaticEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Entity/StaticEnum.md -------------------------------------------------------------------------------- /docs/Error/ExceptionTrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Error/ExceptionTrap.md -------------------------------------------------------------------------------- /docs/Helper/Common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Common.md -------------------------------------------------------------------------------- /docs/Helper/Form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Form.md -------------------------------------------------------------------------------- /docs/Helper/Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Format.md -------------------------------------------------------------------------------- /docs/Helper/Html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Html.md -------------------------------------------------------------------------------- /docs/Helper/Icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Icon.md -------------------------------------------------------------------------------- /docs/Helper/Meter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Meter.md -------------------------------------------------------------------------------- /docs/Helper/Progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Progress.md -------------------------------------------------------------------------------- /docs/Helper/Tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Tree.md -------------------------------------------------------------------------------- /docs/Helper/Typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Helper/Typography.md -------------------------------------------------------------------------------- /docs/I18n/DateTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/I18n/DateTime.md -------------------------------------------------------------------------------- /docs/I18n/I18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/I18n/I18n.md -------------------------------------------------------------------------------- /docs/Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Install.md -------------------------------------------------------------------------------- /docs/Mailer/Email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Mailer/Email.md -------------------------------------------------------------------------------- /docs/Model/Table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Model/Table.md -------------------------------------------------------------------------------- /docs/Model/Tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Model/Tokens.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Shims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Shims.md -------------------------------------------------------------------------------- /docs/Upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Upgrade.md -------------------------------------------------------------------------------- /docs/Url/Url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Url/Url.md -------------------------------------------------------------------------------- /docs/Utility/FileLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Utility/FileLog.md -------------------------------------------------------------------------------- /docs/Widget/Datalist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/docs/Widget/Datalist.md -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/phpstan.neon -------------------------------------------------------------------------------- /resources/locales/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/resources/locales/README.txt -------------------------------------------------------------------------------- /resources/locales/cs/tools.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/resources/locales/cs/tools.po -------------------------------------------------------------------------------- /resources/locales/de/tools.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/resources/locales/de/tools.po -------------------------------------------------------------------------------- /resources/locales/en/tools.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/resources/locales/en/tools.po -------------------------------------------------------------------------------- /resources/locales/es/tools.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/resources/locales/es/tools.po -------------------------------------------------------------------------------- /resources/locales/tools.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/resources/locales/tools.pot -------------------------------------------------------------------------------- /src/Auth/AbstractPasswordHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Auth/AbstractPasswordHasher.php -------------------------------------------------------------------------------- /src/Auth/DefaultPasswordHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Auth/DefaultPasswordHasher.php -------------------------------------------------------------------------------- /src/Auth/PasswordHasherFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Auth/PasswordHasherFactory.php -------------------------------------------------------------------------------- /src/Authenticator/LoginLinkAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Authenticator/LoginLinkAuthenticator.php -------------------------------------------------------------------------------- /src/Command/InflectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Command/InflectCommand.php -------------------------------------------------------------------------------- /src/Controller/Admin/HelperController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/Admin/HelperController.php -------------------------------------------------------------------------------- /src/Controller/Admin/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/Admin/PagesController.php -------------------------------------------------------------------------------- /src/Controller/Admin/ToolsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/Admin/ToolsController.php -------------------------------------------------------------------------------- /src/Controller/Component/CommonComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/Component/CommonComponent.php -------------------------------------------------------------------------------- /src/Controller/Component/MobileComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/Component/MobileComponent.php -------------------------------------------------------------------------------- /src/Controller/Component/RefererRedirectComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/Component/RefererRedirectComponent.php -------------------------------------------------------------------------------- /src/Controller/Component/UrlComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/Component/UrlComponent.php -------------------------------------------------------------------------------- /src/Controller/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/Controller.php -------------------------------------------------------------------------------- /src/Controller/ShuntRequestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Controller/ShuntRequestController.php -------------------------------------------------------------------------------- /src/Error/ErrorHandlerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Error/ErrorHandlerTrait.php -------------------------------------------------------------------------------- /src/Error/ErrorLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Error/ErrorLogger.php -------------------------------------------------------------------------------- /src/Error/ExceptionTrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Error/ExceptionTrap.php -------------------------------------------------------------------------------- /src/Error/Middleware/ErrorHandlerMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Error/Middleware/ErrorHandlerMiddleware.php -------------------------------------------------------------------------------- /src/Form/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Form/ContactForm.php -------------------------------------------------------------------------------- /src/I18n/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/I18n/Date.php -------------------------------------------------------------------------------- /src/I18n/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/I18n/DateTime.php -------------------------------------------------------------------------------- /src/I18n/DateTimeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/I18n/DateTimeHelper.php -------------------------------------------------------------------------------- /src/I18n/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/I18n/Number.php -------------------------------------------------------------------------------- /src/Identifier/LoginLinkIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Identifier/LoginLinkIdentifier.php -------------------------------------------------------------------------------- /src/Mailer/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Mailer/Mailer.php -------------------------------------------------------------------------------- /src/Mailer/MailerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Mailer/MailerAwareTrait.php -------------------------------------------------------------------------------- /src/Mailer/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Mailer/Message.php -------------------------------------------------------------------------------- /src/Model/Behavior/AfterSaveBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/AfterSaveBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/BitmaskedBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/BitmaskedBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/ConfirmableBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/ConfirmableBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/EncryptionBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/EncryptionBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/JsonableBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/JsonableBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/NeighborBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/NeighborBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/PasswordableBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/PasswordableBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/ResetBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/ResetBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/SluggedBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/SluggedBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/StringBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/StringBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/ToggleBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/ToggleBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/TypeMapBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/TypeMapBehavior.php -------------------------------------------------------------------------------- /src/Model/Behavior/TypographicBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Behavior/TypographicBehavior.php -------------------------------------------------------------------------------- /src/Model/Entity/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Entity/Entity.php -------------------------------------------------------------------------------- /src/Model/Entity/EnumTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Entity/EnumTrait.php -------------------------------------------------------------------------------- /src/Model/Entity/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Entity/Token.php -------------------------------------------------------------------------------- /src/Model/Enum/EnumOptionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Enum/EnumOptionsTrait.php -------------------------------------------------------------------------------- /src/Model/Table/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Table/Table.php -------------------------------------------------------------------------------- /src/Model/Table/TokensTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Model/Table/TokensTable.php -------------------------------------------------------------------------------- /src/ToolsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/ToolsPlugin.php -------------------------------------------------------------------------------- /src/Utility/Clock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/Clock.php -------------------------------------------------------------------------------- /src/Utility/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/DateTime.php -------------------------------------------------------------------------------- /src/Utility/FileLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/FileLog.php -------------------------------------------------------------------------------- /src/Utility/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/Language.php -------------------------------------------------------------------------------- /src/Utility/Mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/Mime.php -------------------------------------------------------------------------------- /src/Utility/MimeTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/MimeTypes.php -------------------------------------------------------------------------------- /src/Utility/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/Number.php -------------------------------------------------------------------------------- /src/Utility/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/Random.php -------------------------------------------------------------------------------- /src/Utility/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/Text.php -------------------------------------------------------------------------------- /src/Utility/Utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/Utility/Utility.php -------------------------------------------------------------------------------- /src/View/Helper/CommonHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/CommonHelper.php -------------------------------------------------------------------------------- /src/View/Helper/FormHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/FormHelper.php -------------------------------------------------------------------------------- /src/View/Helper/FormatHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/FormatHelper.php -------------------------------------------------------------------------------- /src/View/Helper/GravatarHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/GravatarHelper.php -------------------------------------------------------------------------------- /src/View/Helper/HtmlHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/HtmlHelper.php -------------------------------------------------------------------------------- /src/View/Helper/HtmlTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/HtmlTrait.php -------------------------------------------------------------------------------- /src/View/Helper/IconHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/IconHelper.php -------------------------------------------------------------------------------- /src/View/Helper/MeterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/MeterHelper.php -------------------------------------------------------------------------------- /src/View/Helper/NumberHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/NumberHelper.php -------------------------------------------------------------------------------- /src/View/Helper/ObfuscateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/ObfuscateHelper.php -------------------------------------------------------------------------------- /src/View/Helper/ProgressHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/ProgressHelper.php -------------------------------------------------------------------------------- /src/View/Helper/QrCodeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/QrCodeHelper.php -------------------------------------------------------------------------------- /src/View/Helper/TextHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/TextHelper.php -------------------------------------------------------------------------------- /src/View/Helper/TimeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/TimeHelper.php -------------------------------------------------------------------------------- /src/View/Helper/TimelineHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/TimelineHelper.php -------------------------------------------------------------------------------- /src/View/Helper/TreeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/TreeHelper.php -------------------------------------------------------------------------------- /src/View/Helper/TypographyHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/TypographyHelper.php -------------------------------------------------------------------------------- /src/View/Helper/UrlHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/UrlHelper.php -------------------------------------------------------------------------------- /src/View/Helper/UrlTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Helper/UrlTrait.php -------------------------------------------------------------------------------- /src/View/Icon/AbstractIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/AbstractIcon.php -------------------------------------------------------------------------------- /src/View/Icon/BootstrapIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/BootstrapIcon.php -------------------------------------------------------------------------------- /src/View/Icon/Collector/BootstrapIconCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/Collector/BootstrapIconCollector.php -------------------------------------------------------------------------------- /src/View/Icon/Collector/FeatherIconCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/Collector/FeatherIconCollector.php -------------------------------------------------------------------------------- /src/View/Icon/Collector/FontAwesome4IconCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/Collector/FontAwesome4IconCollector.php -------------------------------------------------------------------------------- /src/View/Icon/Collector/FontAwesome5IconCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/Collector/FontAwesome5IconCollector.php -------------------------------------------------------------------------------- /src/View/Icon/Collector/FontAwesome6IconCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/Collector/FontAwesome6IconCollector.php -------------------------------------------------------------------------------- /src/View/Icon/Collector/MaterialIconCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/Collector/MaterialIconCollector.php -------------------------------------------------------------------------------- /src/View/Icon/FeatherIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/FeatherIcon.php -------------------------------------------------------------------------------- /src/View/Icon/FontAwesome4Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/FontAwesome4Icon.php -------------------------------------------------------------------------------- /src/View/Icon/FontAwesome5Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/FontAwesome5Icon.php -------------------------------------------------------------------------------- /src/View/Icon/FontAwesome6Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/FontAwesome6Icon.php -------------------------------------------------------------------------------- /src/View/Icon/IconCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/IconCollection.php -------------------------------------------------------------------------------- /src/View/Icon/IconInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/IconInterface.php -------------------------------------------------------------------------------- /src/View/Icon/MaterialIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Icon/MaterialIcon.php -------------------------------------------------------------------------------- /src/View/Widget/DatalistWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/src/View/Widget/DatalistWidget.php -------------------------------------------------------------------------------- /templates/Admin/Helper/bitmasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/templates/Admin/Helper/bitmasks.php -------------------------------------------------------------------------------- /templates/Admin/Helper/chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/templates/Admin/Helper/chars.php -------------------------------------------------------------------------------- /templates/Admin/Pages/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/templates/Admin/Pages/index.php -------------------------------------------------------------------------------- /templates/Admin/Tools/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/templates/Admin/Tools/index.php -------------------------------------------------------------------------------- /templates/element/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/templates/element/pagination.php -------------------------------------------------------------------------------- /tests/Fixture/AfterTreesFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/AfterTreesFixture.php -------------------------------------------------------------------------------- /tests/Fixture/ArticlesFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/ArticlesFixture.php -------------------------------------------------------------------------------- /tests/Fixture/AuthorsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/AuthorsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/BitmaskedCommentsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/BitmaskedCommentsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/DataFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/DataFixture.php -------------------------------------------------------------------------------- /tests/Fixture/JsonableCommentsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/JsonableCommentsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/MultiColumnUsersFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/MultiColumnUsersFixture.php -------------------------------------------------------------------------------- /tests/Fixture/PostsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/PostsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/ResetCommentsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/ResetCommentsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/RolesFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/RolesFixture.php -------------------------------------------------------------------------------- /tests/Fixture/SessionsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/SessionsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/SluggedArticlesFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/SluggedArticlesFixture.php -------------------------------------------------------------------------------- /tests/Fixture/StoriesFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/StoriesFixture.php -------------------------------------------------------------------------------- /tests/Fixture/StringCommentsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/StringCommentsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/ToggleAddressesFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/ToggleAddressesFixture.php -------------------------------------------------------------------------------- /tests/Fixture/TokensFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/TokensFixture.php -------------------------------------------------------------------------------- /tests/Fixture/ToolsUsersFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/Fixture/ToolsUsersFixture.php -------------------------------------------------------------------------------- /tests/TestCase/Authenticator/LoginLinkAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Authenticator/LoginLinkAuthenticatorTest.php -------------------------------------------------------------------------------- /tests/TestCase/BootstrapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/BootstrapTest.php -------------------------------------------------------------------------------- /tests/TestCase/Command/InflectCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Command/InflectCommandTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Admin/HelperControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/Admin/HelperControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Admin/PagesControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/Admin/PagesControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Admin/ToolsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/Admin/ToolsControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/CommonComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/Component/CommonComponentTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/MobileComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/Component/MobileComponentTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/RefererRedirectComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/Component/RefererRedirectComponentTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/UrlComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/Component/UrlComponentTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/ControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/ControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/ShuntRequestControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Controller/ShuntRequestControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/ErrorHandler/ErrorLoggerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/ErrorHandler/ErrorLoggerTest.php -------------------------------------------------------------------------------- /tests/TestCase/ErrorHandler/ExceptionTrapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/ErrorHandler/ExceptionTrapTest.php -------------------------------------------------------------------------------- /tests/TestCase/Form/ContactFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Form/ContactFormTest.php -------------------------------------------------------------------------------- /tests/TestCase/HtmlDom/HtmlDomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/HtmlDom/HtmlDomTest.php -------------------------------------------------------------------------------- /tests/TestCase/I18n/DateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/I18n/DateTest.php -------------------------------------------------------------------------------- /tests/TestCase/I18n/DateTimeHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/I18n/DateTimeHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/I18n/DateTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/I18n/DateTimeTest.php -------------------------------------------------------------------------------- /tests/TestCase/I18n/NumberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/I18n/NumberTest.php -------------------------------------------------------------------------------- /tests/TestCase/Identifier/LoginLinkIdentifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Identifier/LoginLinkIdentifierTest.php -------------------------------------------------------------------------------- /tests/TestCase/Mailer/EmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Mailer/EmailTest.php -------------------------------------------------------------------------------- /tests/TestCase/Mailer/MailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Mailer/MailerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Mailer/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Mailer/MessageTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/AfterSaveBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/AfterSaveBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/BitmaskedBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/BitmaskedBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/ConfirmableBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/ConfirmableBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/EncryptionBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/EncryptionBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/JsonableBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/JsonableBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/NeighborBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/NeighborBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/PasswordableBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/PasswordableBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/ResetBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/ResetBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/SluggedBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/SluggedBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/StringBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/StringBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/ToggleBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/ToggleBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/TypeMapBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/TypeMapBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/TypographicBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Behavior/TypographicBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Entity/EntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Entity/EntityTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Enum/EnumOptionsTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Enum/EnumOptionsTraitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Table/TableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Table/TableTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Table/TokensTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Model/Table/TokensTableTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utility/ClockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Utility/ClockTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utility/FileLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Utility/FileLogTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utility/LanguageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Utility/LanguageTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utility/MimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Utility/MimeTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utility/MimeTypesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Utility/MimeTypesTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utility/RandomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Utility/RandomTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utility/TextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Utility/TextTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utility/UtilityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/Utility/UtilityTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/CommonHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/CommonHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/FormHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/FormHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/FormatHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/FormatHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/GravatarHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/GravatarHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/HtmlHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/HtmlHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/IconHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/IconHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/MeterHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/MeterHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/NumberHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/NumberHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/ObfuscateHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/ObfuscateHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/ProgressHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/ProgressHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/QrCodeHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/QrCodeHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/TextHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/TextHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/TimeHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/TimeHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/TimelineHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/TimelineHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/TreeHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/TreeHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/TypographyHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/TypographyHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/UrlHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Helper/UrlHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/BootstrapIconTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/BootstrapIconTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/Collector/BootstrapIconCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/Collector/BootstrapIconCollectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/Collector/FeatherIconCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/Collector/FeatherIconCollectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/Collector/FontAwesome4CollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/Collector/FontAwesome4CollectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/Collector/FontAwesome5CollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/Collector/FontAwesome5CollectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/Collector/FontAwesome6CollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/Collector/FontAwesome6CollectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/Collector/MaterialIconCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/Collector/MaterialIconCollectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/FeatherIconTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/FeatherIconTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/FontAwesome4IconTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/FontAwesome4IconTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/FontAwesome5IconTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/FontAwesome5IconTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/FontAwesome6IconTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/FontAwesome6IconTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/IconCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/IconCollectionTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Icon/MaterialIconTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Icon/MaterialIconTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Widget/DatalistWidgetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/TestCase/View/Widget/DatalistWidgetTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/config/bootstrap.php -------------------------------------------------------------------------------- /tests/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/config/routes.php -------------------------------------------------------------------------------- /tests/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/schema.php -------------------------------------------------------------------------------- /tests/templates/email/html/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/templates/email/html/welcome.php -------------------------------------------------------------------------------- /tests/templates/email/text/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/cakephp-tools/HEAD/tests/templates/email/text/welcome.php -------------------------------------------------------------------------------- /tests/templates/layout/default.php: -------------------------------------------------------------------------------- 1 | fetch('content'); 3 | -------------------------------------------------------------------------------- /tests/templates/layout/email/html/fancy.php: -------------------------------------------------------------------------------- 1 | fetch('content'); 4 | -------------------------------------------------------------------------------- /tests/templates/layout/email/text/fancy.php: -------------------------------------------------------------------------------- 1 | fetch('content'); 4 | --------------------------------------------------------------------------------