We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f51cf8 commit 094e559Copy full SHA for 094e559
1 file changed
src/Controllers/Examples/WebForms/EG001CreateAndEmbedForm.php
@@ -5,6 +5,7 @@
5
use DocuSign\Controllers\WebFormsApiBaseController;
6
use DocuSign\Services\Examples\WebForms\CreateAndEmbedFormService;
7
use DocuSign\WebForms\Client\ApiException;
8
+use DocuSign\Services\ManifestService;
9
10
class EG001CreateAndEmbedForm extends WebFormsApiBaseController
11
{
@@ -124,7 +125,11 @@ public function askToCreateWebForm(): void
124
125
[
126
'common_texts' => $this->getCommonText(),
127
'code_example_text' => $this->codeExampleText,
- 'description' => $this->codeExampleText["AdditionalPage"][1]["ResultsPageText"],
128
+ 'description' => ManifestService::replacePlaceholders(
129
+ "{0}",
130
+ "public/demo_documents",
131
+ $this->codeExampleText["AdditionalPage"][1]["ResultsPageText"]
132
+ ),
133
]
134
);
135
0 commit comments