├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── before_script.sh ├── install-local-development-env.sh └── install-wp-tests.sh ├── composer.json ├── phpcs.ruleset.xml ├── phpunit.xml.dist ├── plugin.php ├── source ├── AlmostControllers │ ├── AbstractAction.php │ ├── ActionInterface.php │ ├── AjaxStack.php │ ├── Exceptions │ │ ├── ActionNotFoundException.php │ │ └── UnauthorizedException.php │ ├── HttpStack.php │ ├── Stack.php │ └── StackInterface.php ├── Cron │ ├── AbstractCronEvent.php │ ├── AbstractCronSingleEvent.php │ ├── CronEventInterface.php │ ├── CronSingleEventInterface.php │ └── Traits │ │ ├── ArgsTrait.php │ │ ├── HookTrait.php │ │ ├── NameTrait.php │ │ ├── RecurrenceTrait.php │ │ └── TimestampTrait.php ├── DataComponents │ ├── AbstractNode.php │ ├── AggregateNodeInterface.php │ ├── NodeFactory.php │ ├── NodeInterface.php │ └── Traits │ │ ├── Aggregate │ │ └── AggregateGetTrait.php │ │ ├── ConstraintTrait.php │ │ ├── DataTransformerTrait.php │ │ ├── DefaultValueTrait.php │ │ ├── DeleteLocalValueTrait.php │ │ ├── DeleteTrait.php │ │ ├── DummyBuildConstraintTrait.php │ │ ├── ExpirationTrait.php │ │ ├── GetTrait.php │ │ ├── LocalValueTrait.php │ │ ├── NameTrait.php │ │ ├── PostIdTrait.php │ │ ├── PostMeta │ │ └── GetNameWithVisibilityTrait.php │ │ ├── SetTrait.php │ │ ├── Special │ │ ├── Bool │ │ │ ├── BoolBuildConstraintTrait.php │ │ │ └── BoolConstructorTrait.php │ │ ├── DateTime │ │ │ ├── DateTimeBuildConstraintTrait.php │ │ │ └── DateTimeConstructorTrait.php │ │ └── Numeric │ │ │ ├── NumericBuildConstraintTrait.php │ │ │ └── NumericConstructorTrait.php │ │ ├── TermIdTrait.php │ │ ├── ValidateTrait.php │ │ ├── ValidatorTrait.php │ │ └── VisibilityTrait.php ├── DataTransformers │ └── BooleanToStringTransformer.php ├── MetaBoxes │ ├── DashboardMetaBox.php │ ├── MetaBox.php │ ├── MetaBoxInterface.php │ ├── MetaBoxStack.php │ ├── MetaBoxStackInterface.php │ ├── MetaBoxTwigView.php │ ├── MetaBoxTwigViewInterface.php │ └── MetaBoxViewInterface.php ├── Notices │ ├── Notice.php │ ├── NoticeErrorView.php │ ├── NoticeInfoView.php │ ├── NoticeInterface.php │ ├── NoticeSuccessView.php │ ├── NoticeTwigView.php │ ├── NoticeTwigViewInterface.php │ ├── NoticeView.php │ ├── NoticeViewInterface.php │ ├── NoticeWarningView.php │ ├── NoticesStack.php │ └── NoticesStackInterface.php ├── Options │ ├── AbstractOption.php │ ├── Option.php │ ├── OptionInterface.php │ └── Special │ │ ├── AbstractAggregateOption.php │ │ ├── AbstractArrayOption.php │ │ ├── AbstractStringOption.php │ │ ├── BoolOption.php │ │ ├── DateTimeOption.php │ │ └── NumericOption.php ├── Pages │ ├── AbstractPage.php │ ├── MenuPage.php │ ├── MenuPageInterface.php │ ├── PageInterface.php │ ├── SubMenuPage.php │ ├── SubMenuPageInterface.php │ ├── Tabs │ │ ├── Tab.php │ │ ├── TabInterface.php │ │ ├── Tabs.php │ │ └── TabsInterface.php │ ├── Views │ │ ├── PageViewInterface.php │ │ ├── SubMenuPageViewInterface.php │ │ └── TwigPageView.php │ ├── VirtualMenuPage.php │ └── VirtualMenuPageInterface.php ├── Plugins │ ├── AbstractMUPlugin.php │ ├── AbstractPlugin.php │ ├── ConstantsAbstractPlugin.php │ └── PluginInterface.php ├── PostMeta │ ├── AbstractPostMeta.php │ ├── PostMeta.php │ ├── PostMetaInterface.php │ └── Special │ │ ├── AbstractAggregatePostMeta.php │ │ ├── AbstractArrayPostMeta.php │ │ ├── AbstractStringPostMeta.php │ │ ├── BoolPostMeta.php │ │ ├── DateTimePostMeta.php │ │ └── NumericPostMeta.php ├── Runners │ ├── AbstractRunner.php │ └── RunnerInterface.php ├── Sanitizers │ ├── BoolSanitizer.php │ ├── DateTimeISO8601Sanitizer.php │ ├── FloatSanitizer.php │ ├── IntegerSanitizer.php │ └── SanitizerInterface.php ├── ScriptsStyles │ ├── AbstractScriptsStyles.php │ └── ScriptsStylesInterface.php ├── Settings │ ├── Setting.php │ └── SettingInterface.php ├── TermMeta │ ├── AbstractTermMeta.php │ ├── Special │ │ ├── AbstractAggregateTermMeta.php │ │ ├── AbstractArrayTermMeta.php │ │ ├── AbstractStringTermMeta.php │ │ ├── BoolTermMeta.php │ │ ├── DateTimeTermMeta.php │ │ └── NumericTermMeta.php │ ├── TermMeta.php │ └── TermMetaInterface.php ├── Themes │ ├── AbstractTheme.php │ ├── ConstantsAbstractTheme.php │ └── ThemeInterface.php ├── Transients │ ├── AbstractTransient.php │ ├── Special │ │ ├── AbstractAggregateTransient.php │ │ ├── AbstractArrayTransient.php │ │ ├── AbstractStringTransient.php │ │ ├── BoolTransient.php │ │ ├── DateTimeTransient.php │ │ └── NumericTransient.php │ ├── Transient.php │ └── TransientInterface.php ├── Translations │ ├── AbstractTranslations.php │ ├── MUPluginTranslations.php │ ├── PluginTranslations.php │ ├── ThemeTranslations.php │ └── TranslationsInterface.php ├── Uninstall │ ├── Uninstall.php │ └── UninstallInterface.php └── Utils │ ├── Compatibility.php │ ├── CronUtils.php │ ├── RequestFactory.php │ └── WordPressFeatures.php └── tests ├── AlmostControllers ├── AbstractActionTest.php ├── AjaxStackTest.php ├── HttpStackTest.php └── StackTest.php ├── Common └── DataComponents │ └── Special │ ├── AbstractBoolDataComponentTest.php │ ├── AbstractDateTimeDataComponentTest.php │ └── AbstractNumericDataComponentTest.php ├── Cron ├── AbstractCronEventTest.php ├── AbstractCronSingleEventTest.php └── Traits │ ├── ArgsTraitTest.php │ ├── HookTraitTest.php │ ├── NameTraitTest.php │ ├── RecurrenceTraitTest.php │ └── TimestampTraitTest.php ├── DataComponents ├── NodeFactoryTest.php └── Traits │ └── Special │ ├── Bool │ └── BoolBuildConstraintTraitTest.php │ ├── DateTime │ └── DateTimeBuildConstraintTraitTest.php │ └── Numeric │ └── NumericBuildConstraintTraitTest.php ├── DataSets ├── AbstractAssociativeDataSet.php ├── AbstractDataSet.php ├── AggregateDataSet.php ├── AlmostControllers │ └── TestAction.php ├── Bool │ ├── BoolSanitizeSet.php │ └── BoolTransformationSet.php ├── Cron │ └── CronEventDataSet.php ├── DateTime │ └── DateTimeTransformationSet.php ├── DifferentTypesSet.php ├── EverythingSet.php ├── EverythingSet2.php ├── FloatSanitizeSet.php ├── IntegerSanitizeSet.php ├── MinimalVersionSet.php ├── Notices │ └── SomeTestNotice.php ├── Numeric │ └── NumericTransformationSet.php ├── Runners │ ├── FirstRunner.php │ └── SecondRunner.php ├── Translations │ ├── example-translations.php │ ├── wp-kit-example-ru_RU.mo │ └── wp-kit-example-ru_RU.po └── ValidateSet.php ├── DataTransformers └── BooleanToStringTransformerTest.php ├── MetaBoxes ├── DashboardMetaBoxTest.php ├── MetaBoxStackTest.php ├── MetaBoxTest.php ├── MetaBoxTestingPurposesView.php └── MetaBoxTwigViewTest.php ├── Notices ├── NoticeErrorViewTest.php ├── NoticeInfoViewTest.php ├── NoticeSuccessViewTest.php ├── NoticeTest.php ├── NoticeTwigViewTest.php ├── NoticeViewTest.php ├── NoticeWarningViewTest.php ├── NoticesStackTest.php └── RelevantStorageForTestsOption.php ├── Options ├── AbstractOptionTest.php ├── OptionTest.php └── Special │ ├── AbstractAggregateOptionTest.php │ ├── BoolOptionTest.php │ ├── DateTimeOptionTest.php │ └── NumericOptionTest.php ├── Pages ├── AbstractPageTest.php ├── MenuPageTest.php ├── PageTestingPurposesView.php ├── SubMenuPageTest.php ├── Tabs │ ├── TabTest.php │ └── TabsTest.php ├── Views │ └── TwigPageViewTest.php └── VirtualMenuPageTest.php ├── Plugins ├── AbstractMUPluginTest.php └── AbstractPluginTest.php ├── PostMeta ├── AbstractPostMetaTest.php ├── PostMetaTest.php └── Special │ ├── AbstractAggregatePostMetaTest.php │ ├── BoolPostMetaTest.php │ ├── DateTimePostMetaTest.php │ └── NumericPostMetaTest.php ├── Runners ├── AbstractRunnerTest.php └── MultipleRunnersTest.php ├── Sanitizers ├── BoolSanitizerTest.php ├── DateTimeISO8601SanitizerTest.php ├── FloatSanitizerTest.php └── IntegerSanitizerTest.php ├── ScriptsStyles └── AbstractScriptsStylesTest.php ├── Settings └── SettingTest.php ├── TermMeta ├── AbstractTermMetaTest.php ├── Special │ ├── AbstractAggregateTermMetaTest.php │ ├── BoolTermMetaTest.php │ ├── DateTimeTermMetaTest.php │ └── NumericTermMetaTest.php └── TermMetaTest.php ├── Themes └── AbstractThemeTest.php ├── Transients ├── AbstractTransientTest.php ├── Special │ ├── AbstractAggregateTransientTest.php │ ├── BoolTransientTest.php │ ├── DateTimeTransientTest.php │ └── NumericTransientTest.php └── TransientTest.php ├── Translations ├── AbstractTranslationsTest.php ├── MUPluginTranslationsTest.php ├── PluginTranslationsTest.php └── ThemeTranslationsTest.php ├── Uninstall └── UninstallTest.php ├── Utils ├── CompatibilityTest.php ├── CronUtilsTest.php ├── RequestContentProxy.php ├── RequestFactoryTest.php └── WordPressFeaturesTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/README.md -------------------------------------------------------------------------------- /bin/before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/bin/before_script.sh -------------------------------------------------------------------------------- /bin/install-local-development-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/bin/install-local-development-env.sh -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/phpcs.ruleset.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/plugin.php -------------------------------------------------------------------------------- /source/AlmostControllers/AbstractAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/AlmostControllers/AbstractAction.php -------------------------------------------------------------------------------- /source/AlmostControllers/ActionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/AlmostControllers/ActionInterface.php -------------------------------------------------------------------------------- /source/AlmostControllers/AjaxStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/AlmostControllers/AjaxStack.php -------------------------------------------------------------------------------- /source/AlmostControllers/Exceptions/ActionNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/AlmostControllers/Exceptions/ActionNotFoundException.php -------------------------------------------------------------------------------- /source/AlmostControllers/Exceptions/UnauthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/AlmostControllers/Exceptions/UnauthorizedException.php -------------------------------------------------------------------------------- /source/AlmostControllers/HttpStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/AlmostControllers/HttpStack.php -------------------------------------------------------------------------------- /source/AlmostControllers/Stack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/AlmostControllers/Stack.php -------------------------------------------------------------------------------- /source/AlmostControllers/StackInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/AlmostControllers/StackInterface.php -------------------------------------------------------------------------------- /source/Cron/AbstractCronEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/AbstractCronEvent.php -------------------------------------------------------------------------------- /source/Cron/AbstractCronSingleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/AbstractCronSingleEvent.php -------------------------------------------------------------------------------- /source/Cron/CronEventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/CronEventInterface.php -------------------------------------------------------------------------------- /source/Cron/CronSingleEventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/CronSingleEventInterface.php -------------------------------------------------------------------------------- /source/Cron/Traits/ArgsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/Traits/ArgsTrait.php -------------------------------------------------------------------------------- /source/Cron/Traits/HookTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/Traits/HookTrait.php -------------------------------------------------------------------------------- /source/Cron/Traits/NameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/Traits/NameTrait.php -------------------------------------------------------------------------------- /source/Cron/Traits/RecurrenceTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/Traits/RecurrenceTrait.php -------------------------------------------------------------------------------- /source/Cron/Traits/TimestampTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Cron/Traits/TimestampTrait.php -------------------------------------------------------------------------------- /source/DataComponents/AbstractNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/AbstractNode.php -------------------------------------------------------------------------------- /source/DataComponents/AggregateNodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/AggregateNodeInterface.php -------------------------------------------------------------------------------- /source/DataComponents/NodeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/NodeFactory.php -------------------------------------------------------------------------------- /source/DataComponents/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/NodeInterface.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/Aggregate/AggregateGetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/Aggregate/AggregateGetTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/ConstraintTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/ConstraintTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/DataTransformerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/DataTransformerTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/DefaultValueTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/DefaultValueTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/DeleteLocalValueTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/DeleteLocalValueTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/DeleteTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/DeleteTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/DummyBuildConstraintTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/DummyBuildConstraintTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/ExpirationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/ExpirationTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/GetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/GetTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/LocalValueTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/LocalValueTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/NameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/NameTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/PostIdTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/PostIdTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/PostMeta/GetNameWithVisibilityTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/PostMeta/GetNameWithVisibilityTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/SetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/SetTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/Special/Bool/BoolBuildConstraintTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/Special/Bool/BoolBuildConstraintTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/Special/Bool/BoolConstructorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/Special/Bool/BoolConstructorTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/Special/DateTime/DateTimeBuildConstraintTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/Special/DateTime/DateTimeBuildConstraintTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/Special/DateTime/DateTimeConstructorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/Special/DateTime/DateTimeConstructorTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/Special/Numeric/NumericBuildConstraintTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/Special/Numeric/NumericBuildConstraintTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/Special/Numeric/NumericConstructorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/Special/Numeric/NumericConstructorTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/TermIdTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/TermIdTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/ValidateTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/ValidateTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/ValidatorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/ValidatorTrait.php -------------------------------------------------------------------------------- /source/DataComponents/Traits/VisibilityTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataComponents/Traits/VisibilityTrait.php -------------------------------------------------------------------------------- /source/DataTransformers/BooleanToStringTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/DataTransformers/BooleanToStringTransformer.php -------------------------------------------------------------------------------- /source/MetaBoxes/DashboardMetaBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/MetaBoxes/DashboardMetaBox.php -------------------------------------------------------------------------------- /source/MetaBoxes/MetaBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/MetaBoxes/MetaBox.php -------------------------------------------------------------------------------- /source/MetaBoxes/MetaBoxInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/MetaBoxes/MetaBoxInterface.php -------------------------------------------------------------------------------- /source/MetaBoxes/MetaBoxStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/MetaBoxes/MetaBoxStack.php -------------------------------------------------------------------------------- /source/MetaBoxes/MetaBoxStackInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/MetaBoxes/MetaBoxStackInterface.php -------------------------------------------------------------------------------- /source/MetaBoxes/MetaBoxTwigView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/MetaBoxes/MetaBoxTwigView.php -------------------------------------------------------------------------------- /source/MetaBoxes/MetaBoxTwigViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/MetaBoxes/MetaBoxTwigViewInterface.php -------------------------------------------------------------------------------- /source/MetaBoxes/MetaBoxViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/MetaBoxes/MetaBoxViewInterface.php -------------------------------------------------------------------------------- /source/Notices/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/Notice.php -------------------------------------------------------------------------------- /source/Notices/NoticeErrorView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeErrorView.php -------------------------------------------------------------------------------- /source/Notices/NoticeInfoView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeInfoView.php -------------------------------------------------------------------------------- /source/Notices/NoticeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeInterface.php -------------------------------------------------------------------------------- /source/Notices/NoticeSuccessView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeSuccessView.php -------------------------------------------------------------------------------- /source/Notices/NoticeTwigView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeTwigView.php -------------------------------------------------------------------------------- /source/Notices/NoticeTwigViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeTwigViewInterface.php -------------------------------------------------------------------------------- /source/Notices/NoticeView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeView.php -------------------------------------------------------------------------------- /source/Notices/NoticeViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeViewInterface.php -------------------------------------------------------------------------------- /source/Notices/NoticeWarningView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticeWarningView.php -------------------------------------------------------------------------------- /source/Notices/NoticesStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticesStack.php -------------------------------------------------------------------------------- /source/Notices/NoticesStackInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Notices/NoticesStackInterface.php -------------------------------------------------------------------------------- /source/Options/AbstractOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/AbstractOption.php -------------------------------------------------------------------------------- /source/Options/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/Option.php -------------------------------------------------------------------------------- /source/Options/OptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/OptionInterface.php -------------------------------------------------------------------------------- /source/Options/Special/AbstractAggregateOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/Special/AbstractAggregateOption.php -------------------------------------------------------------------------------- /source/Options/Special/AbstractArrayOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/Special/AbstractArrayOption.php -------------------------------------------------------------------------------- /source/Options/Special/AbstractStringOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/Special/AbstractStringOption.php -------------------------------------------------------------------------------- /source/Options/Special/BoolOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/Special/BoolOption.php -------------------------------------------------------------------------------- /source/Options/Special/DateTimeOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/Special/DateTimeOption.php -------------------------------------------------------------------------------- /source/Options/Special/NumericOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Options/Special/NumericOption.php -------------------------------------------------------------------------------- /source/Pages/AbstractPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/AbstractPage.php -------------------------------------------------------------------------------- /source/Pages/MenuPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/MenuPage.php -------------------------------------------------------------------------------- /source/Pages/MenuPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/MenuPageInterface.php -------------------------------------------------------------------------------- /source/Pages/PageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/PageInterface.php -------------------------------------------------------------------------------- /source/Pages/SubMenuPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/SubMenuPage.php -------------------------------------------------------------------------------- /source/Pages/SubMenuPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/SubMenuPageInterface.php -------------------------------------------------------------------------------- /source/Pages/Tabs/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/Tabs/Tab.php -------------------------------------------------------------------------------- /source/Pages/Tabs/TabInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/Tabs/TabInterface.php -------------------------------------------------------------------------------- /source/Pages/Tabs/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/Tabs/Tabs.php -------------------------------------------------------------------------------- /source/Pages/Tabs/TabsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/Tabs/TabsInterface.php -------------------------------------------------------------------------------- /source/Pages/Views/PageViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/Views/PageViewInterface.php -------------------------------------------------------------------------------- /source/Pages/Views/SubMenuPageViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/Views/SubMenuPageViewInterface.php -------------------------------------------------------------------------------- /source/Pages/Views/TwigPageView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/Views/TwigPageView.php -------------------------------------------------------------------------------- /source/Pages/VirtualMenuPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/VirtualMenuPage.php -------------------------------------------------------------------------------- /source/Pages/VirtualMenuPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Pages/VirtualMenuPageInterface.php -------------------------------------------------------------------------------- /source/Plugins/AbstractMUPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Plugins/AbstractMUPlugin.php -------------------------------------------------------------------------------- /source/Plugins/AbstractPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Plugins/AbstractPlugin.php -------------------------------------------------------------------------------- /source/Plugins/ConstantsAbstractPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Plugins/ConstantsAbstractPlugin.php -------------------------------------------------------------------------------- /source/Plugins/PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Plugins/PluginInterface.php -------------------------------------------------------------------------------- /source/PostMeta/AbstractPostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/AbstractPostMeta.php -------------------------------------------------------------------------------- /source/PostMeta/PostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/PostMeta.php -------------------------------------------------------------------------------- /source/PostMeta/PostMetaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/PostMetaInterface.php -------------------------------------------------------------------------------- /source/PostMeta/Special/AbstractAggregatePostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/Special/AbstractAggregatePostMeta.php -------------------------------------------------------------------------------- /source/PostMeta/Special/AbstractArrayPostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/Special/AbstractArrayPostMeta.php -------------------------------------------------------------------------------- /source/PostMeta/Special/AbstractStringPostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/Special/AbstractStringPostMeta.php -------------------------------------------------------------------------------- /source/PostMeta/Special/BoolPostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/Special/BoolPostMeta.php -------------------------------------------------------------------------------- /source/PostMeta/Special/DateTimePostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/Special/DateTimePostMeta.php -------------------------------------------------------------------------------- /source/PostMeta/Special/NumericPostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/PostMeta/Special/NumericPostMeta.php -------------------------------------------------------------------------------- /source/Runners/AbstractRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Runners/AbstractRunner.php -------------------------------------------------------------------------------- /source/Runners/RunnerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Runners/RunnerInterface.php -------------------------------------------------------------------------------- /source/Sanitizers/BoolSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Sanitizers/BoolSanitizer.php -------------------------------------------------------------------------------- /source/Sanitizers/DateTimeISO8601Sanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Sanitizers/DateTimeISO8601Sanitizer.php -------------------------------------------------------------------------------- /source/Sanitizers/FloatSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Sanitizers/FloatSanitizer.php -------------------------------------------------------------------------------- /source/Sanitizers/IntegerSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Sanitizers/IntegerSanitizer.php -------------------------------------------------------------------------------- /source/Sanitizers/SanitizerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Sanitizers/SanitizerInterface.php -------------------------------------------------------------------------------- /source/ScriptsStyles/AbstractScriptsStyles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/ScriptsStyles/AbstractScriptsStyles.php -------------------------------------------------------------------------------- /source/ScriptsStyles/ScriptsStylesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/ScriptsStyles/ScriptsStylesInterface.php -------------------------------------------------------------------------------- /source/Settings/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Settings/Setting.php -------------------------------------------------------------------------------- /source/Settings/SettingInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Settings/SettingInterface.php -------------------------------------------------------------------------------- /source/TermMeta/AbstractTermMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/AbstractTermMeta.php -------------------------------------------------------------------------------- /source/TermMeta/Special/AbstractAggregateTermMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/Special/AbstractAggregateTermMeta.php -------------------------------------------------------------------------------- /source/TermMeta/Special/AbstractArrayTermMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/Special/AbstractArrayTermMeta.php -------------------------------------------------------------------------------- /source/TermMeta/Special/AbstractStringTermMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/Special/AbstractStringTermMeta.php -------------------------------------------------------------------------------- /source/TermMeta/Special/BoolTermMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/Special/BoolTermMeta.php -------------------------------------------------------------------------------- /source/TermMeta/Special/DateTimeTermMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/Special/DateTimeTermMeta.php -------------------------------------------------------------------------------- /source/TermMeta/Special/NumericTermMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/Special/NumericTermMeta.php -------------------------------------------------------------------------------- /source/TermMeta/TermMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/TermMeta.php -------------------------------------------------------------------------------- /source/TermMeta/TermMetaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/TermMeta/TermMetaInterface.php -------------------------------------------------------------------------------- /source/Themes/AbstractTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Themes/AbstractTheme.php -------------------------------------------------------------------------------- /source/Themes/ConstantsAbstractTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Themes/ConstantsAbstractTheme.php -------------------------------------------------------------------------------- /source/Themes/ThemeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Themes/ThemeInterface.php -------------------------------------------------------------------------------- /source/Transients/AbstractTransient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/AbstractTransient.php -------------------------------------------------------------------------------- /source/Transients/Special/AbstractAggregateTransient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/Special/AbstractAggregateTransient.php -------------------------------------------------------------------------------- /source/Transients/Special/AbstractArrayTransient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/Special/AbstractArrayTransient.php -------------------------------------------------------------------------------- /source/Transients/Special/AbstractStringTransient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/Special/AbstractStringTransient.php -------------------------------------------------------------------------------- /source/Transients/Special/BoolTransient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/Special/BoolTransient.php -------------------------------------------------------------------------------- /source/Transients/Special/DateTimeTransient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/Special/DateTimeTransient.php -------------------------------------------------------------------------------- /source/Transients/Special/NumericTransient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/Special/NumericTransient.php -------------------------------------------------------------------------------- /source/Transients/Transient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/Transient.php -------------------------------------------------------------------------------- /source/Transients/TransientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Transients/TransientInterface.php -------------------------------------------------------------------------------- /source/Translations/AbstractTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Translations/AbstractTranslations.php -------------------------------------------------------------------------------- /source/Translations/MUPluginTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Translations/MUPluginTranslations.php -------------------------------------------------------------------------------- /source/Translations/PluginTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Translations/PluginTranslations.php -------------------------------------------------------------------------------- /source/Translations/ThemeTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Translations/ThemeTranslations.php -------------------------------------------------------------------------------- /source/Translations/TranslationsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Translations/TranslationsInterface.php -------------------------------------------------------------------------------- /source/Uninstall/Uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Uninstall/Uninstall.php -------------------------------------------------------------------------------- /source/Uninstall/UninstallInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Uninstall/UninstallInterface.php -------------------------------------------------------------------------------- /source/Utils/Compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Utils/Compatibility.php -------------------------------------------------------------------------------- /source/Utils/CronUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Utils/CronUtils.php -------------------------------------------------------------------------------- /source/Utils/RequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Utils/RequestFactory.php -------------------------------------------------------------------------------- /source/Utils/WordPressFeatures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/source/Utils/WordPressFeatures.php -------------------------------------------------------------------------------- /tests/AlmostControllers/AbstractActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/AlmostControllers/AbstractActionTest.php -------------------------------------------------------------------------------- /tests/AlmostControllers/AjaxStackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/AlmostControllers/AjaxStackTest.php -------------------------------------------------------------------------------- /tests/AlmostControllers/HttpStackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/AlmostControllers/HttpStackTest.php -------------------------------------------------------------------------------- /tests/AlmostControllers/StackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/AlmostControllers/StackTest.php -------------------------------------------------------------------------------- /tests/Common/DataComponents/Special/AbstractBoolDataComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Common/DataComponents/Special/AbstractBoolDataComponentTest.php -------------------------------------------------------------------------------- /tests/Common/DataComponents/Special/AbstractDateTimeDataComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Common/DataComponents/Special/AbstractDateTimeDataComponentTest.php -------------------------------------------------------------------------------- /tests/Common/DataComponents/Special/AbstractNumericDataComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Common/DataComponents/Special/AbstractNumericDataComponentTest.php -------------------------------------------------------------------------------- /tests/Cron/AbstractCronEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Cron/AbstractCronEventTest.php -------------------------------------------------------------------------------- /tests/Cron/AbstractCronSingleEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Cron/AbstractCronSingleEventTest.php -------------------------------------------------------------------------------- /tests/Cron/Traits/ArgsTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Cron/Traits/ArgsTraitTest.php -------------------------------------------------------------------------------- /tests/Cron/Traits/HookTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Cron/Traits/HookTraitTest.php -------------------------------------------------------------------------------- /tests/Cron/Traits/NameTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Cron/Traits/NameTraitTest.php -------------------------------------------------------------------------------- /tests/Cron/Traits/RecurrenceTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Cron/Traits/RecurrenceTraitTest.php -------------------------------------------------------------------------------- /tests/Cron/Traits/TimestampTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Cron/Traits/TimestampTraitTest.php -------------------------------------------------------------------------------- /tests/DataComponents/NodeFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataComponents/NodeFactoryTest.php -------------------------------------------------------------------------------- /tests/DataComponents/Traits/Special/Bool/BoolBuildConstraintTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataComponents/Traits/Special/Bool/BoolBuildConstraintTraitTest.php -------------------------------------------------------------------------------- /tests/DataComponents/Traits/Special/DateTime/DateTimeBuildConstraintTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataComponents/Traits/Special/DateTime/DateTimeBuildConstraintTraitTest.php -------------------------------------------------------------------------------- /tests/DataComponents/Traits/Special/Numeric/NumericBuildConstraintTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataComponents/Traits/Special/Numeric/NumericBuildConstraintTraitTest.php -------------------------------------------------------------------------------- /tests/DataSets/AbstractAssociativeDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/AbstractAssociativeDataSet.php -------------------------------------------------------------------------------- /tests/DataSets/AbstractDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/AbstractDataSet.php -------------------------------------------------------------------------------- /tests/DataSets/AggregateDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/AggregateDataSet.php -------------------------------------------------------------------------------- /tests/DataSets/AlmostControllers/TestAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/AlmostControllers/TestAction.php -------------------------------------------------------------------------------- /tests/DataSets/Bool/BoolSanitizeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Bool/BoolSanitizeSet.php -------------------------------------------------------------------------------- /tests/DataSets/Bool/BoolTransformationSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Bool/BoolTransformationSet.php -------------------------------------------------------------------------------- /tests/DataSets/Cron/CronEventDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Cron/CronEventDataSet.php -------------------------------------------------------------------------------- /tests/DataSets/DateTime/DateTimeTransformationSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/DateTime/DateTimeTransformationSet.php -------------------------------------------------------------------------------- /tests/DataSets/DifferentTypesSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/DifferentTypesSet.php -------------------------------------------------------------------------------- /tests/DataSets/EverythingSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/EverythingSet.php -------------------------------------------------------------------------------- /tests/DataSets/EverythingSet2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/EverythingSet2.php -------------------------------------------------------------------------------- /tests/DataSets/FloatSanitizeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/FloatSanitizeSet.php -------------------------------------------------------------------------------- /tests/DataSets/IntegerSanitizeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/IntegerSanitizeSet.php -------------------------------------------------------------------------------- /tests/DataSets/MinimalVersionSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/MinimalVersionSet.php -------------------------------------------------------------------------------- /tests/DataSets/Notices/SomeTestNotice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Notices/SomeTestNotice.php -------------------------------------------------------------------------------- /tests/DataSets/Numeric/NumericTransformationSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Numeric/NumericTransformationSet.php -------------------------------------------------------------------------------- /tests/DataSets/Runners/FirstRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Runners/FirstRunner.php -------------------------------------------------------------------------------- /tests/DataSets/Runners/SecondRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Runners/SecondRunner.php -------------------------------------------------------------------------------- /tests/DataSets/Translations/example-translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Translations/example-translations.php -------------------------------------------------------------------------------- /tests/DataSets/Translations/wp-kit-example-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Translations/wp-kit-example-ru_RU.mo -------------------------------------------------------------------------------- /tests/DataSets/Translations/wp-kit-example-ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/Translations/wp-kit-example-ru_RU.po -------------------------------------------------------------------------------- /tests/DataSets/ValidateSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataSets/ValidateSet.php -------------------------------------------------------------------------------- /tests/DataTransformers/BooleanToStringTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/DataTransformers/BooleanToStringTransformerTest.php -------------------------------------------------------------------------------- /tests/MetaBoxes/DashboardMetaBoxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/MetaBoxes/DashboardMetaBoxTest.php -------------------------------------------------------------------------------- /tests/MetaBoxes/MetaBoxStackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/MetaBoxes/MetaBoxStackTest.php -------------------------------------------------------------------------------- /tests/MetaBoxes/MetaBoxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/MetaBoxes/MetaBoxTest.php -------------------------------------------------------------------------------- /tests/MetaBoxes/MetaBoxTestingPurposesView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/MetaBoxes/MetaBoxTestingPurposesView.php -------------------------------------------------------------------------------- /tests/MetaBoxes/MetaBoxTwigViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/MetaBoxes/MetaBoxTwigViewTest.php -------------------------------------------------------------------------------- /tests/Notices/NoticeErrorViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/NoticeErrorViewTest.php -------------------------------------------------------------------------------- /tests/Notices/NoticeInfoViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/NoticeInfoViewTest.php -------------------------------------------------------------------------------- /tests/Notices/NoticeSuccessViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/NoticeSuccessViewTest.php -------------------------------------------------------------------------------- /tests/Notices/NoticeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/NoticeTest.php -------------------------------------------------------------------------------- /tests/Notices/NoticeTwigViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/NoticeTwigViewTest.php -------------------------------------------------------------------------------- /tests/Notices/NoticeViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/NoticeViewTest.php -------------------------------------------------------------------------------- /tests/Notices/NoticeWarningViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/NoticeWarningViewTest.php -------------------------------------------------------------------------------- /tests/Notices/NoticesStackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/NoticesStackTest.php -------------------------------------------------------------------------------- /tests/Notices/RelevantStorageForTestsOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Notices/RelevantStorageForTestsOption.php -------------------------------------------------------------------------------- /tests/Options/AbstractOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Options/AbstractOptionTest.php -------------------------------------------------------------------------------- /tests/Options/OptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Options/OptionTest.php -------------------------------------------------------------------------------- /tests/Options/Special/AbstractAggregateOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Options/Special/AbstractAggregateOptionTest.php -------------------------------------------------------------------------------- /tests/Options/Special/BoolOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Options/Special/BoolOptionTest.php -------------------------------------------------------------------------------- /tests/Options/Special/DateTimeOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Options/Special/DateTimeOptionTest.php -------------------------------------------------------------------------------- /tests/Options/Special/NumericOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Options/Special/NumericOptionTest.php -------------------------------------------------------------------------------- /tests/Pages/AbstractPageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Pages/AbstractPageTest.php -------------------------------------------------------------------------------- /tests/Pages/MenuPageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Pages/MenuPageTest.php -------------------------------------------------------------------------------- /tests/Pages/PageTestingPurposesView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Pages/PageTestingPurposesView.php -------------------------------------------------------------------------------- /tests/Pages/SubMenuPageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Pages/SubMenuPageTest.php -------------------------------------------------------------------------------- /tests/Pages/Tabs/TabTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Pages/Tabs/TabTest.php -------------------------------------------------------------------------------- /tests/Pages/Tabs/TabsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Pages/Tabs/TabsTest.php -------------------------------------------------------------------------------- /tests/Pages/Views/TwigPageViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Pages/Views/TwigPageViewTest.php -------------------------------------------------------------------------------- /tests/Pages/VirtualMenuPageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Pages/VirtualMenuPageTest.php -------------------------------------------------------------------------------- /tests/Plugins/AbstractMUPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Plugins/AbstractMUPluginTest.php -------------------------------------------------------------------------------- /tests/Plugins/AbstractPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Plugins/AbstractPluginTest.php -------------------------------------------------------------------------------- /tests/PostMeta/AbstractPostMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/PostMeta/AbstractPostMetaTest.php -------------------------------------------------------------------------------- /tests/PostMeta/PostMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/PostMeta/PostMetaTest.php -------------------------------------------------------------------------------- /tests/PostMeta/Special/AbstractAggregatePostMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/PostMeta/Special/AbstractAggregatePostMetaTest.php -------------------------------------------------------------------------------- /tests/PostMeta/Special/BoolPostMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/PostMeta/Special/BoolPostMetaTest.php -------------------------------------------------------------------------------- /tests/PostMeta/Special/DateTimePostMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/PostMeta/Special/DateTimePostMetaTest.php -------------------------------------------------------------------------------- /tests/PostMeta/Special/NumericPostMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/PostMeta/Special/NumericPostMetaTest.php -------------------------------------------------------------------------------- /tests/Runners/AbstractRunnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Runners/AbstractRunnerTest.php -------------------------------------------------------------------------------- /tests/Runners/MultipleRunnersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Runners/MultipleRunnersTest.php -------------------------------------------------------------------------------- /tests/Sanitizers/BoolSanitizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Sanitizers/BoolSanitizerTest.php -------------------------------------------------------------------------------- /tests/Sanitizers/DateTimeISO8601SanitizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Sanitizers/DateTimeISO8601SanitizerTest.php -------------------------------------------------------------------------------- /tests/Sanitizers/FloatSanitizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Sanitizers/FloatSanitizerTest.php -------------------------------------------------------------------------------- /tests/Sanitizers/IntegerSanitizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Sanitizers/IntegerSanitizerTest.php -------------------------------------------------------------------------------- /tests/ScriptsStyles/AbstractScriptsStylesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/ScriptsStyles/AbstractScriptsStylesTest.php -------------------------------------------------------------------------------- /tests/Settings/SettingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Settings/SettingTest.php -------------------------------------------------------------------------------- /tests/TermMeta/AbstractTermMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/TermMeta/AbstractTermMetaTest.php -------------------------------------------------------------------------------- /tests/TermMeta/Special/AbstractAggregateTermMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/TermMeta/Special/AbstractAggregateTermMetaTest.php -------------------------------------------------------------------------------- /tests/TermMeta/Special/BoolTermMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/TermMeta/Special/BoolTermMetaTest.php -------------------------------------------------------------------------------- /tests/TermMeta/Special/DateTimeTermMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/TermMeta/Special/DateTimeTermMetaTest.php -------------------------------------------------------------------------------- /tests/TermMeta/Special/NumericTermMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/TermMeta/Special/NumericTermMetaTest.php -------------------------------------------------------------------------------- /tests/TermMeta/TermMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/TermMeta/TermMetaTest.php -------------------------------------------------------------------------------- /tests/Themes/AbstractThemeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Themes/AbstractThemeTest.php -------------------------------------------------------------------------------- /tests/Transients/AbstractTransientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Transients/AbstractTransientTest.php -------------------------------------------------------------------------------- /tests/Transients/Special/AbstractAggregateTransientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Transients/Special/AbstractAggregateTransientTest.php -------------------------------------------------------------------------------- /tests/Transients/Special/BoolTransientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Transients/Special/BoolTransientTest.php -------------------------------------------------------------------------------- /tests/Transients/Special/DateTimeTransientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Transients/Special/DateTimeTransientTest.php -------------------------------------------------------------------------------- /tests/Transients/Special/NumericTransientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Transients/Special/NumericTransientTest.php -------------------------------------------------------------------------------- /tests/Transients/TransientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Transients/TransientTest.php -------------------------------------------------------------------------------- /tests/Translations/AbstractTranslationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Translations/AbstractTranslationsTest.php -------------------------------------------------------------------------------- /tests/Translations/MUPluginTranslationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Translations/MUPluginTranslationsTest.php -------------------------------------------------------------------------------- /tests/Translations/PluginTranslationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Translations/PluginTranslationsTest.php -------------------------------------------------------------------------------- /tests/Translations/ThemeTranslationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Translations/ThemeTranslationsTest.php -------------------------------------------------------------------------------- /tests/Uninstall/UninstallTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Uninstall/UninstallTest.php -------------------------------------------------------------------------------- /tests/Utils/CompatibilityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Utils/CompatibilityTest.php -------------------------------------------------------------------------------- /tests/Utils/CronUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Utils/CronUtilsTest.php -------------------------------------------------------------------------------- /tests/Utils/RequestContentProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Utils/RequestContentProxy.php -------------------------------------------------------------------------------- /tests/Utils/RequestFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Utils/RequestFactoryTest.php -------------------------------------------------------------------------------- /tests/Utils/WordPressFeaturesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/Utils/WordPressFeaturesTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korobochkin/wp-kit/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------