mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
52 lines
1.1 KiB
PHP
52 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Controller that handles requests to EmailRecipient's
|
|
*
|
|
* @package userforms
|
|
*/
|
|
class UserFormRecipientItemRequest extends GridFieldDetailForm_ItemRequest {
|
|
|
|
private static $allowed_actions = array(
|
|
'edit',
|
|
'view',
|
|
'ItemEditForm',
|
|
'preview'
|
|
);
|
|
|
|
/**
|
|
* Renders a preview of the recipient email.
|
|
*/
|
|
public function preview() {
|
|
return $this->customise(new ArrayData(array(
|
|
'Body' => $this->record->getEmailBodyContent(),
|
|
'HideFormData' => $this->record->HideFormData,
|
|
'Fields' => $this->getPreviewFieldData()
|
|
)))->renderWith($this->record->EmailTemplate);
|
|
}
|
|
|
|
/**
|
|
* Get some placeholder field values to display in the preview
|
|
* @return ArrayList
|
|
*/
|
|
private function getPreviewFieldData() {
|
|
$data = new ArrayList();
|
|
|
|
$fields = $this->record->Form()->Fields()->filter(array(
|
|
'ClassName:not' => 'EditableLiteralField',
|
|
'ClassName:not' => 'EditableFormHeading'
|
|
));
|
|
|
|
foreach ($fields as $field) {
|
|
$data->push(new ArrayData(array(
|
|
'Name' => $field->Name,
|
|
'Title' => $field->Title,
|
|
'Value' => '$' . $field->Name,
|
|
'FormattedValue' => '$' . $field->Name
|
|
)));
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
}
|