Promotion Module's Admin Widget Injection Zones
This reference shows all the injection zones in the Medusa Admin related to the Promotion Module.
Campaign Pages#
Injection Zone Name | Description | Additional Props |
---|
campaign.list.before
| Added at the top of the campaigns list page. | - |
campaign.list.after
| Added at the bottom of the campaigns list page. | - |
campaign.details.before
| Added at the top of a campaign's details page. | Type DetailWidgetProps<AdminCampaign> imported from @medusajs/framework/types {
data, // AdminCampaign object
}
|
campaign.details.after
| Added at the bottom of a campaign's details page. | Type DetailWidgetProps<AdminCampaign> imported from @medusajs/framework/types {
data, // AdminCampaign object
}
|
campaign.details.side.before
| Added at the top of the second column in the campaign details page. | Type DetailWidgetProps<AdminCampaign> imported from @medusajs/framework/types {
data, // AdminCampaign object
}
|
campaign.details.side.after
| Added at the bottom of the second column in the campaign details page. | Type DetailWidgetProps<AdminCampaign> imported from @medusajs/framework/types {
data, // AdminCampaign object
}
|
Promotion Pages#
Injection Zone Name | Description | Additional Props |
---|
promotion.list.before
| Added at the top of the promotions list page. | - |
promotion.list.after
| Added at the bottom of the promotions list page. | - |
promotion.details.before
| Added at the top of a promotion's details page. | Type DetailWidgetProps<AdminPromotion> imported from @medusajs/framework/types {
data, // AdminPromotion object
}
|
promotion.details.after
| Added at the bottom of a promotion's details page. | Type DetailWidgetProps<AdminPromotion> imported from @medusajs/framework/types {
data, // AdminPromotion object
}
|
promotion.details.side.before
| Added at the top of the second column in the promotion details page. | Type DetailWidgetProps<AdminPromotion> imported from @medusajs/framework/types {
data, // AdminPromotion object
}
|
promotion.details.side.after
| Added at the bottom of the second column in the promotion details page. | Type DetailWidgetProps<AdminPromotion> imported from @medusajs/framework/types {
data, // AdminPromotion object
}
|
Was this page helpful?