Skip to content

Commit

Permalink
IBX-1696: Rebranded Container parameters and Config Resolver namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
alongosz committed Feb 1, 2022
1 parent ab4f9d0 commit 431e39f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions src/bundle/Resources/config/ezpublish_default_settings.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
parameters:
ezsettings.default.content_edit.templates.edit: '@@IbexaContentForms/Content/content_edit.html.twig'
ezsettings.default.content_edit.templates.create: '@@IbexaContentForms/Content/content_edit.html.twig'
ezsettings.default.content_edit.templates.create_draft: '@@IbexaContentForms/Content/content_create_draft.html.twig'
ibexa.site_access.config.default.content_edit.templates.edit: '@@IbexaContentForms/Content/content_edit.html.twig'
ibexa.site_access.config.default.content_edit.templates.create: '@@IbexaContentForms/Content/content_edit.html.twig'
ibexa.site_access.config.default.content_edit.templates.create_draft: '@@IbexaContentForms/Content/content_create_draft.html.twig'

ezsettings.default.user_edit.templates.update: '@@IbexaContentForms/Content/content_edit.html.twig'
ezsettings.default.user_edit.templates.create: '@@IbexaContentForms/Content/content_edit.html.twig'
ibexa.site_access.config.default.user_edit.templates.update: '@@IbexaContentForms/Content/content_edit.html.twig'
ibexa.site_access.config.default.user_edit.templates.create: '@@IbexaContentForms/Content/content_edit.html.twig'

ezsettings.default.content_edit_view: {}
ezsettings.default.content_create_view: {}
ibexa.site_access.config.default.content_edit_view: {}
ibexa.site_access.config.default.content_create_view: {}
2 changes: 1 addition & 1 deletion src/bundle/Resources/config/fieldtypes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:

Ibexa\ContentForms\Form\Type\FieldType\CountryFieldType:
arguments:
$countriesInfo: '%ezpublish.fieldType.ezcountry.data%'
$countriesInfo: '%ibexa.field_type.country.data%'

#
# FormMappers
Expand Down
2 changes: 1 addition & 1 deletion src/bundle/Resources/config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ imports:

parameters:

ezplatform.content_forms.user_content_type_identifier: "user"
ibexa.content_forms.user_content_type_identifier: "user"

services:
Ibexa\ContentForms\FieldType\FieldTypeFormMapperDispatcher: ~
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class MultipleCountryValueTransformer implements DataTransformerInterface
{
/**
* @var array Array of countries from ezpublish.fieldType.ezcountry.data
* @var array Array of countries from "ibexa.field_type.country.data"
*/
protected $countriesInfo;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class SingleCountryValueTransformer implements DataTransformerInterface
{
/**
* @var array Array of countries from ezpublish.fieldType.ezcountry.data
* @var array Array of countries from "ibexa.field_type.country.data"
*/
protected $countriesInfo;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class MultipleCountryValueTransformerTest extends TestCase
{
/**
* @var array Array of countries from ezpublish.fieldType.ezcountry.data
* @var array Array of countries from "ibexa.field_type.country.data"
*/
protected $countriesInfo = [
'AF' => ['Name' => 'Afghanistan', 'Alpha2' => 'AF', 'Alpha3' => 'AFG', 'IDC' => '93'],
Expand Down

0 comments on commit 431e39f

Please sign in to comment.