Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: PDF Event Name #3638

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/services/Pdfs.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class Pdfs extends Component
public const EVENT_AFTER_SAVE_PDF = 'afterSavePdf';

/**
* @event PdfEvent The event that is triggered before an order’s PDF is rendered.
* @event PdfRenderEvent The event that is triggered before an order’s PDF is rendered.
*
* Event handlers can customize PDF rendering by modifying several properties on the event object:
*
Expand Down Expand Up @@ -136,7 +136,7 @@ class Pdfs extends Component
public const EVENT_BEFORE_RENDER_PDF = 'beforeRenderPdf';

/**
* @event PdfEvent The event that is triggered after an order’s PDF has been rendered.
* @event PdfRenderEvent The event that is triggered after an order’s PDF has been rendered.
*
* Event handlers can override Commerce’s PDF generation by setting the `pdf` property on the event to a custom-rendered PDF string. The event properties will be the same as those from `beforeRenderPdf`, but `pdf` will contain a rendered PDF string and is the only one for which setting a value will make any difference for the resulting PDF output.
*
Expand Down
Loading