Skip to content

Commit

Permalink
Merge pull request #22636 from eileenmcnaughton/exampley
Browse files Browse the repository at this point in the history
Add basic contribution example base for contribution workflows
  • Loading branch information
colemanw authored Feb 6, 2022
2 parents 5d22ac6 + 42d1c64 commit 8990a43
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?php

use Civi\Api4\WorkflowMessage;
use Civi\WorkflowMessage\GenericWorkflowMessage;
use Civi\WorkflowMessage\WorkflowMessageExample;

/**
* Basic contribution example for contribution templates.
*
* @noinspection PhpUnused
* @noinspection UnknownInspectionInspection
*/
class CRM_Contribute_WorkflowMessage_Contribution_BasicContribution extends WorkflowMessageExample {

/**
* Get the examples this class is able to deliver.
*/
public function getExamples(): iterable {
$workflows = ['contribution_online_receipt', 'contribution_offline_receipt', 'contribution_invoice_receipt'];
foreach ($workflows as $workflow) {
yield [
'name' => 'workflow/' . $workflow . '/' . $this->getExampleName(),
'title' => ts('Completed Contribution'),
'tags' => ['preview'],
'workflow' => $workflow,
];
}
}

/**
* Build an example to use when rendering the workflow.
*
* @param array $example
*
* @throws \API_Exception
* @throws \CRM_Core_Exception
* @throws \Civi\API\Exception\UnauthorizedException
*/
public function build(array &$example): void {
$workFlow = WorkflowMessage::get(TRUE)->addWhere('name', '=', $example['workflow'])->execute()->first();
$this->setWorkflowName($workFlow['name']);
$messageTemplate = new $workFlow['class']();
$this->addExampleData($messageTemplate);
$example['data'] = $this->toArray($messageTemplate);
}

/**
* Add relevant example data.
*
* @param \CRM_Contribute_WorkflowMessage_ContributionOfflineReceipt|\CRM_Contribute_WorkflowMessage_ContributionOnlineReceipt|\CRM_Contribute_WorkflowMessage_ContributionInvoiceReceipt $messageTemplate
*
* @throws \CRM_Core_Exception
*/
private function addExampleData(GenericWorkflowMessage $messageTemplate): void {
$messageTemplate->setContact(\Civi\Test::example('entity/Contact/Barb'));
$messageTemplate->setContribution(\Civi\Test::example('entity/Contribution/Euro5990/completed'));
}

}
20 changes: 20 additions & 0 deletions Civi/WorkflowMessage/WorkflowMessageExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,33 @@ abstract class WorkflowMessageExample implements ExampleDataInterface {
*/
protected $wfName;

/**
* Set the workflow name.
*
* The workflow name is the value in civicrm_message_template.workflow.
*
* @param string $workflowName
*/
public function setWorkflowName(string $workflowName): void {
$this->wfName = $workflowName;
}

/**
* Name for this example specifically.
*
* @var string
*/
protected $exName;

/**
* Get the example name.
*
* @return string
*/
public function getExampleName(): string {
return $this->exName;
}

/**
* WorkflowMessageExample constructor.
*/
Expand Down

0 comments on commit 8990a43

Please sign in to comment.