├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── SUPPORT.md ├── stale.yml └── workflows │ └── tests.yml ├── .gitignore ├── Assets ├── css │ └── custom-objects.css ├── img │ └── icon.png └── js │ ├── co-form.js │ └── custom-objects.js ├── Command ├── CustomItemsScheduledExportCommand.php └── GenerateSampleDataCommand.php ├── Config └── config.php ├── Controller ├── CustomField │ ├── FormController.php │ └── SaveController.php ├── CustomItem │ ├── BatchDeleteController.php │ ├── CancelController.php │ ├── ContactListController.php │ ├── DeleteController.php │ ├── ExportController.php │ ├── FormController.php │ ├── LinkController.php │ ├── LinkFormController.php │ ├── ListController.php │ ├── LookupController.php │ ├── SaveController.php │ ├── UnlinkController.php │ └── ViewController.php ├── CustomObject │ ├── CancelController.php │ ├── DeleteController.php │ ├── FormController.php │ ├── ListController.php │ ├── SaveController.php │ └── ViewController.php └── JsonController.php ├── CustomFieldType ├── AbstractCustomFieldType.php ├── AbstractMultivalueType.php ├── AbstractTextType.php ├── CheckboxGroupType.php ├── CountryType.php ├── CustomFieldTypeInterface.php ├── DataTransformer │ ├── CsvTransformer.php │ ├── DateTimeAtomTransformer.php │ ├── DateTimeTransformer.php │ ├── DateTransformer.php │ ├── MultivalueTransformer.php │ └── ViewDateTransformer.php ├── DateOperatorTrait.php ├── DateTimeType.php ├── DateType.php ├── EmailType.php ├── HiddenType.php ├── IntType.php ├── MultiselectType.php ├── PhoneType.php ├── RadioGroupType.php ├── SelectType.php ├── StaticChoiceTypeInterface.php ├── TextType.php ├── TextareaType.php └── UrlType.php ├── CustomItemEvents.php ├── CustomObjectEvents.php ├── CustomObjectsBundle.php ├── DTO ├── CustomItemFieldListData.php ├── ImportLogDTO.php ├── TableConfig.php └── Token.php ├── DataPersister └── CustomItemDataPersister.php ├── DependencyInjection └── Compiler │ └── CustomFieldTypePass.php ├── Entity ├── AbstractCustomFieldValue.php ├── CustomField.php ├── CustomField │ └── Params.php ├── CustomFieldFactory.php ├── CustomFieldOption.php ├── CustomFieldValueDate.php ├── CustomFieldValueDateTime.php ├── CustomFieldValueInt.php ├── CustomFieldValueInterface.php ├── CustomFieldValueOption.php ├── CustomFieldValueText.php ├── CustomItem.php ├── CustomItemExportScheduler.php ├── CustomItemXrefCompany.php ├── CustomItemXrefContact.php ├── CustomItemXrefCustomItem.php ├── CustomItemXrefInterface.php ├── CustomObject.php └── UniqueEntityInterface.php ├── Event ├── CustomItemEvent.php ├── CustomItemExportSchedulerEvent.php ├── CustomItemListDbalQueryEvent.php ├── CustomItemListQueryEvent.php ├── CustomItemXrefEntityDiscoveryEvent.php ├── CustomItemXrefEntityEvent.php ├── CustomObjectEvent.php └── CustomObjectListFormatEvent.php ├── EventListener ├── ApiSubscriber.php ├── AssetsSubscriber.php ├── AuditLogSubscriber.php ├── CampaignSubscriber.php ├── ContactSubscriber.php ├── ContactTabSubscriber.php ├── CustomFieldPostLoadSubscriber.php ├── CustomFieldPreSaveSubscriber.php ├── CustomItemButtonSubscriber.php ├── CustomItemPostDeleteSubscriber.php ├── CustomItemPostSaveSubscriber.php ├── CustomItemScheduledExportSubscriber.php ├── CustomItemTabSubscriber.php ├── CustomItemXrefContactSubscriber.php ├── CustomItemXrefCustomItemSubscriber.php ├── CustomObjectButtonSubscriber.php ├── CustomObjectListFormatSubscriber.php ├── CustomObjectPostSaveSubscriber.php ├── CustomObjectPreDeleteSubscriber.php ├── DynamicContentSubscriber.php ├── FilterOperatorSubscriber.php ├── ImportSubscriber.php ├── MenuSubscriber.php ├── ReportSubscriber.php ├── SegmentFilterDecoratorDelegateSubscriber.php ├── SegmentFiltersChoicesGenerateSubscriber.php ├── SegmentFiltersDictionarySubscriber.php ├── SegmentFiltersMergeSubscriber.php ├── SerializerSubscriber.php └── TokenSubscriber.php ├── Exception ├── ForbiddenException.php ├── InUseException.php ├── InvalidArgumentException.php ├── InvalidCustomObjectFormatListException.php ├── InvalidSegmentFilterException.php ├── InvalidValueException.php ├── NoRelationshipException.php ├── NotFoundException.php └── UndefinedTransformerException.php ├── Extension └── CustomItemListeningExtension.php ├── Form ├── DataTransformer │ ├── CustomObjectHiddenTransformer.php │ ├── OptionsToStringTransformer.php │ ├── OptionsTransformer.php │ └── ParamsToStringTransformer.php ├── Type │ ├── CampaignActionLinkType.php │ ├── CampaignConditionFieldValueType.php │ ├── CustomField │ │ ├── OptionsType.php │ │ └── ParamsType.php │ ├── CustomFieldType.php │ ├── CustomFieldValueType.php │ ├── CustomItemType.php │ └── CustomObjectType.php └── Validator │ └── Constraints │ ├── AllowUniqueIdentifier.php │ ├── AllowUniqueIdentifierValidator.php │ ├── CustomObjectTypeValues.php │ └── CustomObjectTypeValuesValidator.php ├── Helper ├── ContactFilterMatcher.php ├── CsvHelper.php ├── LockFlashMessageHelper.php ├── QueryBuilderManipulatorTrait.php ├── QueryFilterFactory.php ├── QueryFilterFactory │ └── Calculator.php ├── QueryFilterHelper.php ├── RandomHelper.php ├── TokenFormatter.php └── TokenParser.php ├── LICENSE ├── Migrations ├── Version_0_0_1.php ├── Version_0_0_11.php ├── Version_0_0_12.php ├── Version_0_0_13.php ├── Version_0_0_14.php ├── Version_0_0_15.php ├── Version_0_0_16.php ├── Version_0_0_17.php ├── Version_0_0_18.php ├── Version_0_0_19.php ├── Version_0_0_2.php ├── Version_0_0_21.php ├── Version_0_0_22.php ├── Version_0_0_23.php ├── Version_0_0_27.php ├── Version_0_0_3.php ├── Version_0_0_4.php ├── Version_0_0_5.php ├── Version_0_0_6.php ├── Version_0_0_7.php ├── Version_0_0_8.php └── Version_0_0_9.php ├── Model ├── CustomFieldModel.php ├── CustomFieldOptionModel.php ├── CustomFieldValueModel.php ├── CustomItemExportSchedulerModel.php ├── CustomItemImportModel.php ├── CustomItemModel.php ├── CustomItemXrefContactModel.php └── CustomObjectModel.php ├── Polyfill └── EventListener │ └── MatchFilterForLeadTrait.php ├── Provider ├── AbstractPermissionProvider.php ├── ConfigProvider.php ├── CustomFieldPermissionProvider.php ├── CustomFieldRouteProvider.php ├── CustomFieldTypeProvider.php ├── CustomItemPermissionProvider.php ├── CustomItemRouteProvider.php ├── CustomObjectPermissionProvider.php ├── CustomObjectRouteProvider.php ├── SessionProvider.php └── SessionProviderFactory.php ├── README.md ├── Report └── ReportColumnsBuilder.php ├── Repository ├── CustomFieldRepository.php ├── CustomItemExportSchedulerRepository.php ├── CustomItemRepository.php ├── CustomItemXrefContactRepository.php ├── CustomItemXrefCustomItemRepository.php ├── CustomObjectRepository.php └── DbalQueryTrait.php ├── Security └── Permissions │ └── CustomObjectPermissions.php ├── Segment ├── Decorator │ └── MultiselectDecorator.php └── Query │ ├── Filter │ ├── CustomFieldFilterQueryBuilder.php │ ├── CustomItemNameFilterQueryBuilder.php │ ├── CustomObjectMergedFilterQueryBuilder.php │ └── QueryFilterFactory.php │ └── UnionQueryContainer.php ├── Serializer └── ApiNormalizer.php ├── Tests ├── Functional │ ├── ApiPlatform │ │ ├── AbstractApiPlatformFunctionalTest.php │ │ ├── CustomFieldFunctionalTest.php │ │ ├── CustomFieldOptionFunctionalTest.php │ │ ├── CustomItemFunctionalTest.php │ │ └── CustomObjectFunctionalTest.php │ ├── Controller │ │ ├── CustomItemListControllerSearchTest.php │ │ ├── CustomItemListControllerShownFieldTest.php │ │ ├── CustomItemListControllerXrefTest.php │ │ ├── CustomItemLookupControllerTest.php │ │ ├── CustomObject │ │ │ └── DeleteControllerTest.php │ │ └── CustomObjectFormTest.php │ ├── DataFixtures │ │ ├── ORM │ │ │ └── Data │ │ │ │ ├── custom-item-relation-filter-query-builder-fixture-1.yml │ │ │ │ ├── custom-item-relation-filter-query-builder-fixture-2.yml │ │ │ │ ├── custom-item-relation-filter-query-builder-fixture-3.yml │ │ │ │ ├── custom_fields.yml │ │ │ │ ├── custom_items.yml │ │ │ │ ├── custom_objects.yml │ │ │ │ ├── custom_values.yml │ │ │ │ ├── custom_xref.yml │ │ │ │ ├── leads.yml │ │ │ │ ├── roles.yml │ │ │ │ └── users.yml │ │ └── Traits │ │ │ ├── CustomObjectsTrait.php │ │ │ └── FixtureObjectsTrait.php │ ├── EventListener │ │ ├── ApiSubscriberTest.php │ │ ├── CampaignConditionTest.php │ │ ├── CampaignSubscriberTest.php │ │ ├── ContactSubscriberTest.php │ │ ├── DynamicContentSubscriberTest.php │ │ ├── FilterOperatorSubscriberTest.php │ │ ├── ImportSubscriberTest.php │ │ ├── SegmentFiltersDictionarySubscriberTest.php │ │ └── TokenSubscriberTest.php │ ├── Exception │ │ └── FixtureNotFoundException.php │ ├── Helper │ │ └── QueryFilterHelperTest.php │ ├── Segment │ │ └── Query │ │ │ └── Filter │ │ │ ├── CustomFieldFilterQueryBuilderTest.php │ │ │ ├── CustomItemNameFilterQueryBuilderTest.php │ │ │ ├── CustomItemRelationQueryBuilderTest.php │ │ │ ├── CustomObjectMergedFilterQueryBuilderTest.php │ │ │ └── NegativeOperatorFilterQueryBuilderTest.php │ ├── Token │ │ ├── EmailTokenTest.php │ │ └── EmailWithCustomObjectDynamicContentFunctionalTest.php │ └── UpsertFunctionalTest.php ├── ProjectVersionTrait.php └── Unit │ ├── Command │ └── CustomItemExportCommandTest.php │ ├── Controller │ ├── ControllerTestCase.php │ ├── CustomField │ │ ├── AbstractFieldControllerTest.php │ │ ├── FormControllerTest.php │ │ └── SaveControllerTest.php │ ├── CustomItem │ │ ├── BatchDeleteControllerTest.php │ │ ├── CancelControllerTest.php │ │ ├── DeleteControllerTest.php │ │ ├── ExportControllerTest.php │ │ ├── FormControllerTest.php │ │ ├── LinkControllerTest.php │ │ ├── ListControllerTest.php │ │ ├── LookupControllerTest.php │ │ ├── SaveControllerTest.php │ │ ├── UnlinkControllerTest.php │ │ └── ViewControllerTest.php │ └── CustomObject │ │ ├── CancelControllerTest.php │ │ ├── DeleteControllerTest.php │ │ ├── FormControllerTest.php │ │ ├── ListControllerTest.php │ │ ├── SaveControllerTest.php │ │ └── ViewControllerTest.php │ ├── CustomFieldType │ ├── AbstractCustomFieldTypeTest.php │ ├── AbstractMultivalueTypeTest.php │ ├── AbstractTextTypeTest.php │ ├── CountryTypeTest.php │ ├── DataTransformer │ │ ├── CsvTransformerTest.php │ │ ├── DateTimeAtomTransformerTest.php │ │ ├── DateTimeTransformerTest.php │ │ ├── DateTransformerTest.php │ │ ├── MultivalueTransformerTest.php │ │ └── ViewDateTransformerTest.php │ ├── DateTimeTypeTest.php │ ├── DateTypeTest.php │ ├── EmailTypeTest.php │ ├── IntTypeTest.php │ ├── MultiselectTypeTest.php │ ├── PhoneTypeTest.php │ ├── SelectTypeTest.php │ └── UrlTypeTest.php │ ├── CustomObjectTestCase.php │ ├── DTO │ ├── TableConfigTest.php │ └── TokenTest.php │ ├── DependencyInjection │ └── Compiler │ │ └── CustomFieldTypePassTest.php │ ├── Entity │ ├── AbstractCustomFieldValueTest.php │ ├── CustomField │ │ └── ParamsTest.php │ ├── CustomFieldFactoryTest.php │ ├── CustomFieldOptionTest.php │ ├── CustomFieldTest.php │ ├── CustomFieldValueDateTest.php │ ├── CustomFieldValueDateTimeTest.php │ ├── CustomFieldValueOptionTest.php │ ├── CustomItemTest.php │ ├── CustomItemXrefCompanyTest.php │ ├── CustomItemXrefContactTest.php │ ├── CustomItemXrefCustomItemTest.php │ └── CustomObjectTest.php │ ├── Event │ ├── CustomItemEventTest.php │ ├── CustomItemListDbalQueryEventTest.php │ ├── CustomItemListQueryEventTest.php │ ├── CustomItemXrefEntityEventTest.php │ ├── CustomObjectEventTest.php │ └── CustomObjectListFormatEventTest.php │ ├── EventListener │ ├── ApiSubscriberTest.php │ ├── AssetsSubscriberTest.php │ ├── AuditLogSubscriberTest.php │ ├── CampaignSubscriberTest.php │ ├── ContactSubscriberTest.php │ ├── ContactTabSubscriberTest.php │ ├── CustomFieldPostLoadSubscriberTest.php │ ├── CustomItemButtonSubscriberTest.php │ ├── CustomItemPostSaveSubscriberTest.php │ ├── CustomItemTabSubscriberTest.php │ ├── CustomItemXrefContactSubscriberTest.php │ ├── CustomItemXrefCustomItemSubscriberTest.php │ ├── CustomObjectButtonSubscriberTest.php │ ├── CustomObjectListFormatSubscriberTest.php │ ├── CustomObjectPostSaveSubscriberTest.php │ ├── DynamicContentSubscriberTest.php │ ├── FilterOperatorSubscriberTest.php │ ├── ImportSubscriberTest.php │ ├── MenuSubscriberTest.php │ ├── ReportSubscriberTest.php │ ├── SegmentFilterDecoratorDelegateSubscriberTest.php │ ├── SegmentFiltersChoicesGenerateSubscriberTest.php │ ├── SerializerSubscriberTest.php │ └── TokenSubscriberTest.php │ ├── Exception │ ├── InvalidCustomObjectFormatListExceptionTest.php │ └── InvalidValueExceptionTest.php │ ├── Form │ ├── DataTransformer │ │ ├── OptionsToStringTransformerTest.php │ │ ├── OptionsTransformerTest.php │ │ └── ParamsToStringTransformerTest.php │ ├── Type │ │ ├── CampaignConditionFieldValueTypeTest.php │ │ ├── CustomFieldTypeTest.php │ │ ├── CustomFieldValueTypeTest.php │ │ ├── CustomItemTypeTest.php │ │ └── CustomObjectTypeTest.php │ └── Validator │ │ ├── AllowUniqueIdentifierTest.php │ │ ├── AllowUniqueIdentifierValidatorTest.php │ │ ├── CustomObjectTypeValuesTest.php │ │ └── CustomObjectTypeValuesValidatorTest.php │ ├── Helper │ ├── CsvHelperTest.php │ ├── CustomFieldQueryBuilder │ │ └── CalculatorTest.php │ ├── LockFlashMessageHelperTest.php │ ├── QueryFilterFactoryTest.php │ ├── QueryFilterHelperTest.php │ ├── TokenFormatterTest.php │ └── TokenParserTest.php │ ├── Model │ ├── CustomFieldOptionModelTest.php │ ├── CustomFieldValueModelTest.php │ ├── CustomItemImportModelTest.php │ ├── CustomItemModelTest.php │ ├── CustomItemXrefContactModelTest.php │ └── CustomObjectModelTest.php │ ├── Provider │ ├── CustomFieldRouteProviderTest.php │ ├── CustomFieldTypeProviderTest.php │ ├── CustomItemPermissionProviderTest.php │ ├── CustomItemRouteProviderTest.php │ ├── CustomObjectPermissionProviderTest.php │ ├── CustomObjectRouteProviderTest.php │ └── SessionProviderTest.php │ ├── Report │ └── ReportColumnsBuilderTest.php │ ├── Repository │ ├── CustomFieldRepositoryTest.php │ ├── CustomItemRepositoryTest.php │ ├── CustomItemXrefContactRepositoryTest.php │ ├── CustomObjectRepositoryTest.php │ └── DbalQueryTraitTest.php │ ├── Security │ └── Permissions │ │ └── CustomObjectPermissionsTest.php │ ├── Segment │ └── Query │ │ ├── Filter │ │ ├── CustomFieldFilterQueryBuilderTest.php │ │ ├── CustomItemNameFilterQueryBuilderTest.php │ │ └── QueryFilterFactoryTest.php │ │ └── UnionQueryContainerTest.php │ └── Serializer │ └── ApiNormalizerTest.php ├── Translations └── en_US │ ├── flashes.ini │ ├── messages.ini │ └── validators.ini ├── Views ├── CustomField │ ├── detail.html.php │ ├── form.html.php │ ├── index.html.php │ └── value.html.php ├── CustomItem │ ├── detail.html.php │ ├── form.html.php │ ├── index.html.php │ └── list.html.php ├── CustomObject │ ├── Form │ │ └── Panel │ │ │ ├── _field.html.php │ │ │ ├── checkbox_group.html.php │ │ │ ├── country.html.php │ │ │ ├── date.html.php │ │ │ ├── datetime.html.php │ │ │ ├── email.html.php │ │ │ ├── hidden.html.php │ │ │ ├── html_area.html.php │ │ │ ├── int.html.php │ │ │ ├── multiselect.html.php │ │ │ ├── phone.html.php │ │ │ ├── radio_group.html.php │ │ │ ├── select.html.php │ │ │ ├── text.html.php │ │ │ ├── textarea.html.php │ │ │ └── url.html.php │ ├── _form-fields.html.php │ ├── detail.html.php │ ├── form.html.php │ ├── index.html.php │ └── list.html.php ├── FormTheme │ └── FieldValueCondition │ │ └── campaign_condition_field_value_widget.html.php └── SubscribedEvents │ ├── Tab │ ├── content.html.php │ ├── link.html.php │ └── modal.html.php │ └── Timeline │ └── link.html.php ├── composer.json ├── phpstan-baseline-7.4.neon ├── phpstan-baseline-8.0.neon ├── phpstan-baseline-php-versions.neon.php ├── phpstan-class-aliases.php ├── phpstan.neon └── phpunit.xml /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/* 2 | /Tests/Coverage/* 3 | .idea -------------------------------------------------------------------------------- /Assets/css/custom-objects.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Assets/css/custom-objects.css -------------------------------------------------------------------------------- /Assets/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Assets/img/icon.png -------------------------------------------------------------------------------- /Assets/js/co-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Assets/js/co-form.js -------------------------------------------------------------------------------- /Assets/js/custom-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Assets/js/custom-objects.js -------------------------------------------------------------------------------- /Command/CustomItemsScheduledExportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Command/CustomItemsScheduledExportCommand.php -------------------------------------------------------------------------------- /Command/GenerateSampleDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Command/GenerateSampleDataCommand.php -------------------------------------------------------------------------------- /Config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Config/config.php -------------------------------------------------------------------------------- /Controller/CustomField/FormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomField/FormController.php -------------------------------------------------------------------------------- /Controller/CustomField/SaveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomField/SaveController.php -------------------------------------------------------------------------------- /Controller/CustomItem/BatchDeleteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/BatchDeleteController.php -------------------------------------------------------------------------------- /Controller/CustomItem/CancelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/CancelController.php -------------------------------------------------------------------------------- /Controller/CustomItem/ContactListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/ContactListController.php -------------------------------------------------------------------------------- /Controller/CustomItem/DeleteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/DeleteController.php -------------------------------------------------------------------------------- /Controller/CustomItem/ExportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/ExportController.php -------------------------------------------------------------------------------- /Controller/CustomItem/FormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/FormController.php -------------------------------------------------------------------------------- /Controller/CustomItem/LinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/LinkController.php -------------------------------------------------------------------------------- /Controller/CustomItem/LinkFormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/LinkFormController.php -------------------------------------------------------------------------------- /Controller/CustomItem/ListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/ListController.php -------------------------------------------------------------------------------- /Controller/CustomItem/LookupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/LookupController.php -------------------------------------------------------------------------------- /Controller/CustomItem/SaveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/SaveController.php -------------------------------------------------------------------------------- /Controller/CustomItem/UnlinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/UnlinkController.php -------------------------------------------------------------------------------- /Controller/CustomItem/ViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomItem/ViewController.php -------------------------------------------------------------------------------- /Controller/CustomObject/CancelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomObject/CancelController.php -------------------------------------------------------------------------------- /Controller/CustomObject/DeleteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomObject/DeleteController.php -------------------------------------------------------------------------------- /Controller/CustomObject/FormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomObject/FormController.php -------------------------------------------------------------------------------- /Controller/CustomObject/ListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomObject/ListController.php -------------------------------------------------------------------------------- /Controller/CustomObject/SaveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomObject/SaveController.php -------------------------------------------------------------------------------- /Controller/CustomObject/ViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/CustomObject/ViewController.php -------------------------------------------------------------------------------- /Controller/JsonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Controller/JsonController.php -------------------------------------------------------------------------------- /CustomFieldType/AbstractCustomFieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/AbstractCustomFieldType.php -------------------------------------------------------------------------------- /CustomFieldType/AbstractMultivalueType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/AbstractMultivalueType.php -------------------------------------------------------------------------------- /CustomFieldType/AbstractTextType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/AbstractTextType.php -------------------------------------------------------------------------------- /CustomFieldType/CheckboxGroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/CheckboxGroupType.php -------------------------------------------------------------------------------- /CustomFieldType/CountryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/CountryType.php -------------------------------------------------------------------------------- /CustomFieldType/CustomFieldTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/CustomFieldTypeInterface.php -------------------------------------------------------------------------------- /CustomFieldType/DataTransformer/CsvTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DataTransformer/CsvTransformer.php -------------------------------------------------------------------------------- /CustomFieldType/DataTransformer/DateTimeAtomTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DataTransformer/DateTimeAtomTransformer.php -------------------------------------------------------------------------------- /CustomFieldType/DataTransformer/DateTimeTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DataTransformer/DateTimeTransformer.php -------------------------------------------------------------------------------- /CustomFieldType/DataTransformer/DateTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DataTransformer/DateTransformer.php -------------------------------------------------------------------------------- /CustomFieldType/DataTransformer/MultivalueTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DataTransformer/MultivalueTransformer.php -------------------------------------------------------------------------------- /CustomFieldType/DataTransformer/ViewDateTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DataTransformer/ViewDateTransformer.php -------------------------------------------------------------------------------- /CustomFieldType/DateOperatorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DateOperatorTrait.php -------------------------------------------------------------------------------- /CustomFieldType/DateTimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DateTimeType.php -------------------------------------------------------------------------------- /CustomFieldType/DateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/DateType.php -------------------------------------------------------------------------------- /CustomFieldType/EmailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/EmailType.php -------------------------------------------------------------------------------- /CustomFieldType/HiddenType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/HiddenType.php -------------------------------------------------------------------------------- /CustomFieldType/IntType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/IntType.php -------------------------------------------------------------------------------- /CustomFieldType/MultiselectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/MultiselectType.php -------------------------------------------------------------------------------- /CustomFieldType/PhoneType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/PhoneType.php -------------------------------------------------------------------------------- /CustomFieldType/RadioGroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/RadioGroupType.php -------------------------------------------------------------------------------- /CustomFieldType/SelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/SelectType.php -------------------------------------------------------------------------------- /CustomFieldType/StaticChoiceTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/StaticChoiceTypeInterface.php -------------------------------------------------------------------------------- /CustomFieldType/TextType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/TextType.php -------------------------------------------------------------------------------- /CustomFieldType/TextareaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/TextareaType.php -------------------------------------------------------------------------------- /CustomFieldType/UrlType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomFieldType/UrlType.php -------------------------------------------------------------------------------- /CustomItemEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomItemEvents.php -------------------------------------------------------------------------------- /CustomObjectEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomObjectEvents.php -------------------------------------------------------------------------------- /CustomObjectsBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/CustomObjectsBundle.php -------------------------------------------------------------------------------- /DTO/CustomItemFieldListData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/DTO/CustomItemFieldListData.php -------------------------------------------------------------------------------- /DTO/ImportLogDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/DTO/ImportLogDTO.php -------------------------------------------------------------------------------- /DTO/TableConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/DTO/TableConfig.php -------------------------------------------------------------------------------- /DTO/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/DTO/Token.php -------------------------------------------------------------------------------- /DataPersister/CustomItemDataPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/DataPersister/CustomItemDataPersister.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/CustomFieldTypePass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/DependencyInjection/Compiler/CustomFieldTypePass.php -------------------------------------------------------------------------------- /Entity/AbstractCustomFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/AbstractCustomFieldValue.php -------------------------------------------------------------------------------- /Entity/CustomField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomField.php -------------------------------------------------------------------------------- /Entity/CustomField/Params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomField/Params.php -------------------------------------------------------------------------------- /Entity/CustomFieldFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomFieldFactory.php -------------------------------------------------------------------------------- /Entity/CustomFieldOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomFieldOption.php -------------------------------------------------------------------------------- /Entity/CustomFieldValueDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomFieldValueDate.php -------------------------------------------------------------------------------- /Entity/CustomFieldValueDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomFieldValueDateTime.php -------------------------------------------------------------------------------- /Entity/CustomFieldValueInt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomFieldValueInt.php -------------------------------------------------------------------------------- /Entity/CustomFieldValueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomFieldValueInterface.php -------------------------------------------------------------------------------- /Entity/CustomFieldValueOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomFieldValueOption.php -------------------------------------------------------------------------------- /Entity/CustomFieldValueText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomFieldValueText.php -------------------------------------------------------------------------------- /Entity/CustomItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomItem.php -------------------------------------------------------------------------------- /Entity/CustomItemExportScheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomItemExportScheduler.php -------------------------------------------------------------------------------- /Entity/CustomItemXrefCompany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomItemXrefCompany.php -------------------------------------------------------------------------------- /Entity/CustomItemXrefContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomItemXrefContact.php -------------------------------------------------------------------------------- /Entity/CustomItemXrefCustomItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomItemXrefCustomItem.php -------------------------------------------------------------------------------- /Entity/CustomItemXrefInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomItemXrefInterface.php -------------------------------------------------------------------------------- /Entity/CustomObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/CustomObject.php -------------------------------------------------------------------------------- /Entity/UniqueEntityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Entity/UniqueEntityInterface.php -------------------------------------------------------------------------------- /Event/CustomItemEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Event/CustomItemEvent.php -------------------------------------------------------------------------------- /Event/CustomItemExportSchedulerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Event/CustomItemExportSchedulerEvent.php -------------------------------------------------------------------------------- /Event/CustomItemListDbalQueryEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Event/CustomItemListDbalQueryEvent.php -------------------------------------------------------------------------------- /Event/CustomItemListQueryEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Event/CustomItemListQueryEvent.php -------------------------------------------------------------------------------- /Event/CustomItemXrefEntityDiscoveryEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Event/CustomItemXrefEntityDiscoveryEvent.php -------------------------------------------------------------------------------- /Event/CustomItemXrefEntityEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Event/CustomItemXrefEntityEvent.php -------------------------------------------------------------------------------- /Event/CustomObjectEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Event/CustomObjectEvent.php -------------------------------------------------------------------------------- /Event/CustomObjectListFormatEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Event/CustomObjectListFormatEvent.php -------------------------------------------------------------------------------- /EventListener/ApiSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/ApiSubscriber.php -------------------------------------------------------------------------------- /EventListener/AssetsSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/AssetsSubscriber.php -------------------------------------------------------------------------------- /EventListener/AuditLogSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/AuditLogSubscriber.php -------------------------------------------------------------------------------- /EventListener/CampaignSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CampaignSubscriber.php -------------------------------------------------------------------------------- /EventListener/ContactSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/ContactSubscriber.php -------------------------------------------------------------------------------- /EventListener/ContactTabSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/ContactTabSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomFieldPostLoadSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomFieldPostLoadSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomFieldPreSaveSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomFieldPreSaveSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomItemButtonSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomItemButtonSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomItemPostDeleteSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomItemPostDeleteSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomItemPostSaveSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomItemPostSaveSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomItemScheduledExportSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomItemScheduledExportSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomItemTabSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomItemTabSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomItemXrefContactSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomItemXrefContactSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomItemXrefCustomItemSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomItemXrefCustomItemSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomObjectButtonSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomObjectButtonSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomObjectListFormatSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomObjectListFormatSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomObjectPostSaveSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomObjectPostSaveSubscriber.php -------------------------------------------------------------------------------- /EventListener/CustomObjectPreDeleteSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/CustomObjectPreDeleteSubscriber.php -------------------------------------------------------------------------------- /EventListener/DynamicContentSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/DynamicContentSubscriber.php -------------------------------------------------------------------------------- /EventListener/FilterOperatorSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/FilterOperatorSubscriber.php -------------------------------------------------------------------------------- /EventListener/ImportSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/ImportSubscriber.php -------------------------------------------------------------------------------- /EventListener/MenuSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/MenuSubscriber.php -------------------------------------------------------------------------------- /EventListener/ReportSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/ReportSubscriber.php -------------------------------------------------------------------------------- /EventListener/SegmentFilterDecoratorDelegateSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/SegmentFilterDecoratorDelegateSubscriber.php -------------------------------------------------------------------------------- /EventListener/SegmentFiltersChoicesGenerateSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/SegmentFiltersChoicesGenerateSubscriber.php -------------------------------------------------------------------------------- /EventListener/SegmentFiltersDictionarySubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/SegmentFiltersDictionarySubscriber.php -------------------------------------------------------------------------------- /EventListener/SegmentFiltersMergeSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/SegmentFiltersMergeSubscriber.php -------------------------------------------------------------------------------- /EventListener/SerializerSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/SerializerSubscriber.php -------------------------------------------------------------------------------- /EventListener/TokenSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/EventListener/TokenSubscriber.php -------------------------------------------------------------------------------- /Exception/ForbiddenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/ForbiddenException.php -------------------------------------------------------------------------------- /Exception/InUseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/InUseException.php -------------------------------------------------------------------------------- /Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /Exception/InvalidCustomObjectFormatListException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/InvalidCustomObjectFormatListException.php -------------------------------------------------------------------------------- /Exception/InvalidSegmentFilterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/InvalidSegmentFilterException.php -------------------------------------------------------------------------------- /Exception/InvalidValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/InvalidValueException.php -------------------------------------------------------------------------------- /Exception/NoRelationshipException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/NoRelationshipException.php -------------------------------------------------------------------------------- /Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/NotFoundException.php -------------------------------------------------------------------------------- /Exception/UndefinedTransformerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Exception/UndefinedTransformerException.php -------------------------------------------------------------------------------- /Extension/CustomItemListeningExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Extension/CustomItemListeningExtension.php -------------------------------------------------------------------------------- /Form/DataTransformer/CustomObjectHiddenTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/DataTransformer/CustomObjectHiddenTransformer.php -------------------------------------------------------------------------------- /Form/DataTransformer/OptionsToStringTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/DataTransformer/OptionsToStringTransformer.php -------------------------------------------------------------------------------- /Form/DataTransformer/OptionsTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/DataTransformer/OptionsTransformer.php -------------------------------------------------------------------------------- /Form/DataTransformer/ParamsToStringTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/DataTransformer/ParamsToStringTransformer.php -------------------------------------------------------------------------------- /Form/Type/CampaignActionLinkType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Type/CampaignActionLinkType.php -------------------------------------------------------------------------------- /Form/Type/CampaignConditionFieldValueType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Type/CampaignConditionFieldValueType.php -------------------------------------------------------------------------------- /Form/Type/CustomField/OptionsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Type/CustomField/OptionsType.php -------------------------------------------------------------------------------- /Form/Type/CustomField/ParamsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Type/CustomField/ParamsType.php -------------------------------------------------------------------------------- /Form/Type/CustomFieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Type/CustomFieldType.php -------------------------------------------------------------------------------- /Form/Type/CustomFieldValueType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Type/CustomFieldValueType.php -------------------------------------------------------------------------------- /Form/Type/CustomItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Type/CustomItemType.php -------------------------------------------------------------------------------- /Form/Type/CustomObjectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Type/CustomObjectType.php -------------------------------------------------------------------------------- /Form/Validator/Constraints/AllowUniqueIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Validator/Constraints/AllowUniqueIdentifier.php -------------------------------------------------------------------------------- /Form/Validator/Constraints/AllowUniqueIdentifierValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Validator/Constraints/AllowUniqueIdentifierValidator.php -------------------------------------------------------------------------------- /Form/Validator/Constraints/CustomObjectTypeValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Validator/Constraints/CustomObjectTypeValues.php -------------------------------------------------------------------------------- /Form/Validator/Constraints/CustomObjectTypeValuesValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Form/Validator/Constraints/CustomObjectTypeValuesValidator.php -------------------------------------------------------------------------------- /Helper/ContactFilterMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/ContactFilterMatcher.php -------------------------------------------------------------------------------- /Helper/CsvHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/CsvHelper.php -------------------------------------------------------------------------------- /Helper/LockFlashMessageHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/LockFlashMessageHelper.php -------------------------------------------------------------------------------- /Helper/QueryBuilderManipulatorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/QueryBuilderManipulatorTrait.php -------------------------------------------------------------------------------- /Helper/QueryFilterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/QueryFilterFactory.php -------------------------------------------------------------------------------- /Helper/QueryFilterFactory/Calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/QueryFilterFactory/Calculator.php -------------------------------------------------------------------------------- /Helper/QueryFilterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/QueryFilterHelper.php -------------------------------------------------------------------------------- /Helper/RandomHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/RandomHelper.php -------------------------------------------------------------------------------- /Helper/TokenFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/TokenFormatter.php -------------------------------------------------------------------------------- /Helper/TokenParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Helper/TokenParser.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/LICENSE -------------------------------------------------------------------------------- /Migrations/Version_0_0_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_1.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_11.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_12.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_13.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_14.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_15.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_16.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_16.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_17.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_17.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_18.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_18.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_19.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_19.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_2.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_21.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_21.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_22.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_22.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_23.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_23.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_27.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_27.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_3.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_4.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_5.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_6.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_7.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_8.php -------------------------------------------------------------------------------- /Migrations/Version_0_0_9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Migrations/Version_0_0_9.php -------------------------------------------------------------------------------- /Model/CustomFieldModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Model/CustomFieldModel.php -------------------------------------------------------------------------------- /Model/CustomFieldOptionModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Model/CustomFieldOptionModel.php -------------------------------------------------------------------------------- /Model/CustomFieldValueModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Model/CustomFieldValueModel.php -------------------------------------------------------------------------------- /Model/CustomItemExportSchedulerModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Model/CustomItemExportSchedulerModel.php -------------------------------------------------------------------------------- /Model/CustomItemImportModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Model/CustomItemImportModel.php -------------------------------------------------------------------------------- /Model/CustomItemModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Model/CustomItemModel.php -------------------------------------------------------------------------------- /Model/CustomItemXrefContactModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Model/CustomItemXrefContactModel.php -------------------------------------------------------------------------------- /Model/CustomObjectModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Model/CustomObjectModel.php -------------------------------------------------------------------------------- /Polyfill/EventListener/MatchFilterForLeadTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Polyfill/EventListener/MatchFilterForLeadTrait.php -------------------------------------------------------------------------------- /Provider/AbstractPermissionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/AbstractPermissionProvider.php -------------------------------------------------------------------------------- /Provider/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/ConfigProvider.php -------------------------------------------------------------------------------- /Provider/CustomFieldPermissionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/CustomFieldPermissionProvider.php -------------------------------------------------------------------------------- /Provider/CustomFieldRouteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/CustomFieldRouteProvider.php -------------------------------------------------------------------------------- /Provider/CustomFieldTypeProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/CustomFieldTypeProvider.php -------------------------------------------------------------------------------- /Provider/CustomItemPermissionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/CustomItemPermissionProvider.php -------------------------------------------------------------------------------- /Provider/CustomItemRouteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/CustomItemRouteProvider.php -------------------------------------------------------------------------------- /Provider/CustomObjectPermissionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/CustomObjectPermissionProvider.php -------------------------------------------------------------------------------- /Provider/CustomObjectRouteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/CustomObjectRouteProvider.php -------------------------------------------------------------------------------- /Provider/SessionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/SessionProvider.php -------------------------------------------------------------------------------- /Provider/SessionProviderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Provider/SessionProviderFactory.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/README.md -------------------------------------------------------------------------------- /Report/ReportColumnsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Report/ReportColumnsBuilder.php -------------------------------------------------------------------------------- /Repository/CustomFieldRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Repository/CustomFieldRepository.php -------------------------------------------------------------------------------- /Repository/CustomItemExportSchedulerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Repository/CustomItemExportSchedulerRepository.php -------------------------------------------------------------------------------- /Repository/CustomItemRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Repository/CustomItemRepository.php -------------------------------------------------------------------------------- /Repository/CustomItemXrefContactRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Repository/CustomItemXrefContactRepository.php -------------------------------------------------------------------------------- /Repository/CustomItemXrefCustomItemRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Repository/CustomItemXrefCustomItemRepository.php -------------------------------------------------------------------------------- /Repository/CustomObjectRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Repository/CustomObjectRepository.php -------------------------------------------------------------------------------- /Repository/DbalQueryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Repository/DbalQueryTrait.php -------------------------------------------------------------------------------- /Security/Permissions/CustomObjectPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Security/Permissions/CustomObjectPermissions.php -------------------------------------------------------------------------------- /Segment/Decorator/MultiselectDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Segment/Decorator/MultiselectDecorator.php -------------------------------------------------------------------------------- /Segment/Query/Filter/CustomFieldFilterQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Segment/Query/Filter/CustomFieldFilterQueryBuilder.php -------------------------------------------------------------------------------- /Segment/Query/Filter/CustomItemNameFilterQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Segment/Query/Filter/CustomItemNameFilterQueryBuilder.php -------------------------------------------------------------------------------- /Segment/Query/Filter/CustomObjectMergedFilterQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Segment/Query/Filter/CustomObjectMergedFilterQueryBuilder.php -------------------------------------------------------------------------------- /Segment/Query/Filter/QueryFilterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Segment/Query/Filter/QueryFilterFactory.php -------------------------------------------------------------------------------- /Segment/Query/UnionQueryContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Segment/Query/UnionQueryContainer.php -------------------------------------------------------------------------------- /Serializer/ApiNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Serializer/ApiNormalizer.php -------------------------------------------------------------------------------- /Tests/Functional/ApiPlatform/AbstractApiPlatformFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/ApiPlatform/AbstractApiPlatformFunctionalTest.php -------------------------------------------------------------------------------- /Tests/Functional/ApiPlatform/CustomFieldFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/ApiPlatform/CustomFieldFunctionalTest.php -------------------------------------------------------------------------------- /Tests/Functional/ApiPlatform/CustomFieldOptionFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/ApiPlatform/CustomFieldOptionFunctionalTest.php -------------------------------------------------------------------------------- /Tests/Functional/ApiPlatform/CustomItemFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/ApiPlatform/CustomItemFunctionalTest.php -------------------------------------------------------------------------------- /Tests/Functional/ApiPlatform/CustomObjectFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/ApiPlatform/CustomObjectFunctionalTest.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/CustomItemListControllerSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Controller/CustomItemListControllerSearchTest.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/CustomItemListControllerShownFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Controller/CustomItemListControllerShownFieldTest.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/CustomItemListControllerXrefTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Controller/CustomItemListControllerXrefTest.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/CustomItemLookupControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Controller/CustomItemLookupControllerTest.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/CustomObject/DeleteControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Controller/CustomObject/DeleteControllerTest.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/CustomObjectFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Controller/CustomObjectFormTest.php -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/custom-item-relation-filter-query-builder-fixture-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/custom-item-relation-filter-query-builder-fixture-1.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/custom-item-relation-filter-query-builder-fixture-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/custom-item-relation-filter-query-builder-fixture-2.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/custom-item-relation-filter-query-builder-fixture-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/custom-item-relation-filter-query-builder-fixture-3.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/custom_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/custom_fields.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/custom_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/custom_items.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/custom_objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/custom_objects.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/custom_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/custom_values.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/custom_xref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/custom_xref.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/leads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/leads.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/roles.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/ORM/Data/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/ORM/Data/users.yml -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/Traits/CustomObjectsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/Traits/CustomObjectsTrait.php -------------------------------------------------------------------------------- /Tests/Functional/DataFixtures/Traits/FixtureObjectsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/DataFixtures/Traits/FixtureObjectsTrait.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/ApiSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/ApiSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/CampaignConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/CampaignConditionTest.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/CampaignSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/CampaignSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/ContactSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/ContactSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/DynamicContentSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/DynamicContentSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/FilterOperatorSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/FilterOperatorSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/ImportSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/ImportSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/SegmentFiltersDictionarySubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/SegmentFiltersDictionarySubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/EventListener/TokenSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/EventListener/TokenSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Exception/FixtureNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Exception/FixtureNotFoundException.php -------------------------------------------------------------------------------- /Tests/Functional/Helper/QueryFilterHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Helper/QueryFilterHelperTest.php -------------------------------------------------------------------------------- /Tests/Functional/Segment/Query/Filter/CustomFieldFilterQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Segment/Query/Filter/CustomFieldFilterQueryBuilderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Segment/Query/Filter/CustomItemNameFilterQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Segment/Query/Filter/CustomItemNameFilterQueryBuilderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Segment/Query/Filter/CustomItemRelationQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Segment/Query/Filter/CustomItemRelationQueryBuilderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Segment/Query/Filter/CustomObjectMergedFilterQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Segment/Query/Filter/CustomObjectMergedFilterQueryBuilderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Segment/Query/Filter/NegativeOperatorFilterQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Segment/Query/Filter/NegativeOperatorFilterQueryBuilderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Token/EmailTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Token/EmailTokenTest.php -------------------------------------------------------------------------------- /Tests/Functional/Token/EmailWithCustomObjectDynamicContentFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/Token/EmailWithCustomObjectDynamicContentFunctionalTest.php -------------------------------------------------------------------------------- /Tests/Functional/UpsertFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Functional/UpsertFunctionalTest.php -------------------------------------------------------------------------------- /Tests/ProjectVersionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/ProjectVersionTrait.php -------------------------------------------------------------------------------- /Tests/Unit/Command/CustomItemExportCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Command/CustomItemExportCommandTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/ControllerTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/ControllerTestCase.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomField/AbstractFieldControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomField/AbstractFieldControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomField/FormControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomField/FormControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomField/SaveControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomField/SaveControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/BatchDeleteControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/BatchDeleteControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/CancelControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/CancelControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/DeleteControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/DeleteControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/ExportControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/ExportControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/FormControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/FormControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/LinkControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/LinkControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/ListControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/ListControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/LookupControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/LookupControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/SaveControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/SaveControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/UnlinkControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/UnlinkControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomItem/ViewControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomItem/ViewControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomObject/CancelControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomObject/CancelControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomObject/DeleteControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomObject/DeleteControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomObject/FormControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomObject/FormControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomObject/ListControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomObject/ListControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomObject/SaveControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomObject/SaveControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controller/CustomObject/ViewControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Controller/CustomObject/ViewControllerTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/AbstractCustomFieldTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/AbstractCustomFieldTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/AbstractMultivalueTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/AbstractMultivalueTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/AbstractTextTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/AbstractTextTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/CountryTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/CountryTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/DataTransformer/CsvTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/DataTransformer/CsvTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/DataTransformer/DateTimeAtomTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/DataTransformer/DateTimeAtomTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/DataTransformer/DateTimeTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/DataTransformer/DateTimeTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/DataTransformer/DateTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/DataTransformer/DateTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/DataTransformer/MultivalueTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/DataTransformer/MultivalueTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/DataTransformer/ViewDateTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/DataTransformer/ViewDateTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/DateTimeTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/DateTimeTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/DateTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/DateTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/EmailTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/EmailTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/IntTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/IntTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/MultiselectTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/MultiselectTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/PhoneTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/PhoneTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/SelectTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/SelectTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomFieldType/UrlTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomFieldType/UrlTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/CustomObjectTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/CustomObjectTestCase.php -------------------------------------------------------------------------------- /Tests/Unit/DTO/TableConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/DTO/TableConfigTest.php -------------------------------------------------------------------------------- /Tests/Unit/DTO/TokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/DTO/TokenTest.php -------------------------------------------------------------------------------- /Tests/Unit/DependencyInjection/Compiler/CustomFieldTypePassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/DependencyInjection/Compiler/CustomFieldTypePassTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/AbstractCustomFieldValueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/AbstractCustomFieldValueTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomField/ParamsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomField/ParamsTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomFieldFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomFieldFactoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomFieldOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomFieldOptionTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomFieldTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomFieldValueDateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomFieldValueDateTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomFieldValueDateTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomFieldValueDateTimeTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomFieldValueOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomFieldValueOptionTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomItemTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomItemXrefCompanyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomItemXrefCompanyTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomItemXrefContactTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomItemXrefContactTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomItemXrefCustomItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomItemXrefCustomItemTest.php -------------------------------------------------------------------------------- /Tests/Unit/Entity/CustomObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Entity/CustomObjectTest.php -------------------------------------------------------------------------------- /Tests/Unit/Event/CustomItemEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Event/CustomItemEventTest.php -------------------------------------------------------------------------------- /Tests/Unit/Event/CustomItemListDbalQueryEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Event/CustomItemListDbalQueryEventTest.php -------------------------------------------------------------------------------- /Tests/Unit/Event/CustomItemListQueryEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Event/CustomItemListQueryEventTest.php -------------------------------------------------------------------------------- /Tests/Unit/Event/CustomItemXrefEntityEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Event/CustomItemXrefEntityEventTest.php -------------------------------------------------------------------------------- /Tests/Unit/Event/CustomObjectEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Event/CustomObjectEventTest.php -------------------------------------------------------------------------------- /Tests/Unit/Event/CustomObjectListFormatEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Event/CustomObjectListFormatEventTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/ApiSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/ApiSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/AssetsSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/AssetsSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/AuditLogSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/AuditLogSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CampaignSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CampaignSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/ContactSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/ContactSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/ContactTabSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/ContactTabSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomFieldPostLoadSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomFieldPostLoadSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomItemButtonSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomItemButtonSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomItemPostSaveSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomItemPostSaveSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomItemTabSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomItemTabSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomItemXrefContactSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomItemXrefContactSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomItemXrefCustomItemSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomItemXrefCustomItemSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomObjectButtonSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomObjectButtonSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomObjectListFormatSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomObjectListFormatSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/CustomObjectPostSaveSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/CustomObjectPostSaveSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/DynamicContentSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/DynamicContentSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/FilterOperatorSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/FilterOperatorSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/ImportSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/ImportSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/MenuSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/MenuSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/ReportSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/ReportSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/SegmentFilterDecoratorDelegateSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/SegmentFilterDecoratorDelegateSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/SegmentFiltersChoicesGenerateSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/SegmentFiltersChoicesGenerateSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/SerializerSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/SerializerSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/EventListener/TokenSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/EventListener/TokenSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Unit/Exception/InvalidCustomObjectFormatListExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Exception/InvalidCustomObjectFormatListExceptionTest.php -------------------------------------------------------------------------------- /Tests/Unit/Exception/InvalidValueExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Exception/InvalidValueExceptionTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/DataTransformer/OptionsToStringTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/DataTransformer/OptionsToStringTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/DataTransformer/OptionsTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/DataTransformer/OptionsTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/DataTransformer/ParamsToStringTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/DataTransformer/ParamsToStringTransformerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Type/CampaignConditionFieldValueTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Type/CampaignConditionFieldValueTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Type/CustomFieldTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Type/CustomFieldTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Type/CustomFieldValueTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Type/CustomFieldValueTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Type/CustomItemTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Type/CustomItemTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Type/CustomObjectTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Type/CustomObjectTypeTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Validator/AllowUniqueIdentifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Validator/AllowUniqueIdentifierTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Validator/AllowUniqueIdentifierValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Validator/AllowUniqueIdentifierValidatorTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Validator/CustomObjectTypeValuesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Validator/CustomObjectTypeValuesTest.php -------------------------------------------------------------------------------- /Tests/Unit/Form/Validator/CustomObjectTypeValuesValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Form/Validator/CustomObjectTypeValuesValidatorTest.php -------------------------------------------------------------------------------- /Tests/Unit/Helper/CsvHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Helper/CsvHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/Helper/CustomFieldQueryBuilder/CalculatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Helper/CustomFieldQueryBuilder/CalculatorTest.php -------------------------------------------------------------------------------- /Tests/Unit/Helper/LockFlashMessageHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Helper/LockFlashMessageHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/Helper/QueryFilterFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Helper/QueryFilterFactoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Helper/QueryFilterHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Helper/QueryFilterHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/Helper/TokenFormatterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Helper/TokenFormatterTest.php -------------------------------------------------------------------------------- /Tests/Unit/Helper/TokenParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Helper/TokenParserTest.php -------------------------------------------------------------------------------- /Tests/Unit/Model/CustomFieldOptionModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Model/CustomFieldOptionModelTest.php -------------------------------------------------------------------------------- /Tests/Unit/Model/CustomFieldValueModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Model/CustomFieldValueModelTest.php -------------------------------------------------------------------------------- /Tests/Unit/Model/CustomItemImportModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Model/CustomItemImportModelTest.php -------------------------------------------------------------------------------- /Tests/Unit/Model/CustomItemModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Model/CustomItemModelTest.php -------------------------------------------------------------------------------- /Tests/Unit/Model/CustomItemXrefContactModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Model/CustomItemXrefContactModelTest.php -------------------------------------------------------------------------------- /Tests/Unit/Model/CustomObjectModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Model/CustomObjectModelTest.php -------------------------------------------------------------------------------- /Tests/Unit/Provider/CustomFieldRouteProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Provider/CustomFieldRouteProviderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Provider/CustomFieldTypeProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Provider/CustomFieldTypeProviderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Provider/CustomItemPermissionProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Provider/CustomItemPermissionProviderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Provider/CustomItemRouteProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Provider/CustomItemRouteProviderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Provider/CustomObjectPermissionProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Provider/CustomObjectPermissionProviderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Provider/CustomObjectRouteProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Provider/CustomObjectRouteProviderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Provider/SessionProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Provider/SessionProviderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Report/ReportColumnsBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Report/ReportColumnsBuilderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/CustomFieldRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Repository/CustomFieldRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/CustomItemRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Repository/CustomItemRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/CustomItemXrefContactRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Repository/CustomItemXrefContactRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/CustomObjectRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Repository/CustomObjectRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/DbalQueryTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Repository/DbalQueryTraitTest.php -------------------------------------------------------------------------------- /Tests/Unit/Security/Permissions/CustomObjectPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Security/Permissions/CustomObjectPermissionsTest.php -------------------------------------------------------------------------------- /Tests/Unit/Segment/Query/Filter/CustomFieldFilterQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Segment/Query/Filter/CustomFieldFilterQueryBuilderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Segment/Query/Filter/CustomItemNameFilterQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Segment/Query/Filter/CustomItemNameFilterQueryBuilderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Segment/Query/Filter/QueryFilterFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Segment/Query/Filter/QueryFilterFactoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Segment/Query/UnionQueryContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Segment/Query/UnionQueryContainerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Serializer/ApiNormalizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Tests/Unit/Serializer/ApiNormalizerTest.php -------------------------------------------------------------------------------- /Translations/en_US/flashes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Translations/en_US/flashes.ini -------------------------------------------------------------------------------- /Translations/en_US/messages.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Translations/en_US/messages.ini -------------------------------------------------------------------------------- /Translations/en_US/validators.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Translations/en_US/validators.ini -------------------------------------------------------------------------------- /Views/CustomField/detail.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomField/detail.html.php -------------------------------------------------------------------------------- /Views/CustomField/form.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomField/form.html.php -------------------------------------------------------------------------------- /Views/CustomField/index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomField/index.html.php -------------------------------------------------------------------------------- /Views/CustomField/value.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomField/value.html.php -------------------------------------------------------------------------------- /Views/CustomItem/detail.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomItem/detail.html.php -------------------------------------------------------------------------------- /Views/CustomItem/form.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomItem/form.html.php -------------------------------------------------------------------------------- /Views/CustomItem/index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomItem/index.html.php -------------------------------------------------------------------------------- /Views/CustomItem/list.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomItem/list.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/_field.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/_field.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/checkbox_group.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/checkbox_group.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/country.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/country.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/date.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/date.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/datetime.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/datetime.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/email.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/email.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/hidden.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/hidden.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/html_area.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/html_area.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/int.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/int.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/multiselect.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/multiselect.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/phone.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/phone.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/radio_group.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/radio_group.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/select.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/select.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/text.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/text.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/textarea.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/textarea.html.php -------------------------------------------------------------------------------- /Views/CustomObject/Form/Panel/url.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/Form/Panel/url.html.php -------------------------------------------------------------------------------- /Views/CustomObject/_form-fields.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/_form-fields.html.php -------------------------------------------------------------------------------- /Views/CustomObject/detail.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/detail.html.php -------------------------------------------------------------------------------- /Views/CustomObject/form.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/form.html.php -------------------------------------------------------------------------------- /Views/CustomObject/index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/index.html.php -------------------------------------------------------------------------------- /Views/CustomObject/list.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/CustomObject/list.html.php -------------------------------------------------------------------------------- /Views/FormTheme/FieldValueCondition/campaign_condition_field_value_widget.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/FormTheme/FieldValueCondition/campaign_condition_field_value_widget.html.php -------------------------------------------------------------------------------- /Views/SubscribedEvents/Tab/content.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/SubscribedEvents/Tab/content.html.php -------------------------------------------------------------------------------- /Views/SubscribedEvents/Tab/link.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/SubscribedEvents/Tab/link.html.php -------------------------------------------------------------------------------- /Views/SubscribedEvents/Tab/modal.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/SubscribedEvents/Tab/modal.html.php -------------------------------------------------------------------------------- /Views/SubscribedEvents/Timeline/link.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/Views/SubscribedEvents/Timeline/link.html.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan-baseline-7.4.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/phpstan-baseline-7.4.neon -------------------------------------------------------------------------------- /phpstan-baseline-8.0.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/phpstan-baseline-8.0.neon -------------------------------------------------------------------------------- /phpstan-baseline-php-versions.neon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/phpstan-baseline-php-versions.neon.php -------------------------------------------------------------------------------- /phpstan-class-aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/phpstan-class-aliases.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquia/mc-cs-plugin-custom-objects/HEAD/phpunit.xml --------------------------------------------------------------------------------