-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactFormBlock.php
More file actions
213 lines (186 loc) · 4.76 KB
/
ContactFormBlock.php
File metadata and controls
213 lines (186 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?php
namespace Syntro\ElementalBootstrapBlocks\Element;
use SilverStripe\Forms\TextareaField;
use SilverStripe\Forms\HTMLEditor\HTMLEditorField;
use SilverStripe\Forms\DropdownField;
use SilverStripe\Forms\Form;
use SilverStripe\Control\Controller;
use SilverStripe\Assets\Image;
use SilverStripe\Forms\FieldList;
use SilverStripe\AssetAdmin\Forms\UploadField;
use SilverStripe\Core\Injector\Injector;
use DNADesign\Elemental\Models\BaseElement;
use Syntro\ElementalBootstrapBlocks\Control\ContactFormBlockController;
use Syntro\ElementalBootstrapBlocks\Control\FormProvider;
/**
* Adds a block which allows to add one of different contact forms to the page
*
* @author Matthias Leutenegger
*/
class ContactFormBlock extends BaseElement
{
/**
* Defines the database table name
* @config
* @var string
*/
private static $table_name = 'BlockContactForm';
/**
* Singular name for CMS
* @config
* @var string
*/
private static $singular_name = 'Contact Form';
/**
* Plural name for CMS
* @config
* @var string
*/
private static $plural_name = 'Contact Forms';
/**
* @config
* @var string
*/
private static $controller_class = ContactFormBlockController::class;
/**
* @config
* @var bool
*/
private static $inline_editable = true;
/**
* Display a show title button
*
* @config
* @var boolean
*/
private static $displays_title_in_template = true;
/**
* @config
* @var string
*/
private static $icon = 'font-icon-block-phone';
/**
* Database fields
* @config
* @var array
*/
private static $db = [
'FormName' => 'Varchar',
'Content' => 'HTMLText',
'SuccessResponse' => 'Text'
];
/**
* Add default values to database
* @config
* @var array
*/
private static $defaults = [];
/**
* Has_one relationship
* @config
* @var array
*/
private static $has_one = [];
/**
* Relationship version ownership
* @config
* @var array
*/
private static $owns = [];
/**
* The controller which handles the forms
* @config
* @var string
*/
private static $forms_provider = FormProvider::class;
/**
* CMS Fields
* @return FieldList
*/
public function getCMSFields()
{
$fields = parent::getCMSFields();
$fields->removeByName([
'FormName',
'Content',
'SuccessResponse'
]);
$controllerClass = $this->config()->get('forms_provider');
$fields->addFieldsToTab(
'Root.Main',
[
DropdownField::create(
'FormName',
_t(__CLASS__ . '.FormVariant', 'Form Variant'),
Injector::inst()->create($controllerClass, $this)->providedForms()
),
HtmlEditorField::create(
'Content',
_t(__CLASS__ . '.Content', 'Content')
),
TextareaField::create(
'SuccessResponse',
_t(__CLASS__ . '.SuccessResponse', 'Nachricht bei Erfolg')
)
]
);
return $fields;
}
/**
* getType
*
* @return string
*/
public function getType()
{
return _t(__CLASS__ . '.BlockType', 'Contact Form');
}
/**
* Link
*
* @param string $action = null action to append
* @return string
*/
public function Link($action = null)
{
$current = Controller::curr();
if ($action === 'finished') {
return Controller::join_links(
$current->Link(),
'finished'
);
}
return parent::Link($action);
}
/**
* Form - returns the Form
*
* @return Form|null
*/
public function Form()
{
$providerClass = $this->config()->get('forms_provider');
if (!class_exists($providerClass ?? '')) {
throw new \Exception(
'Could not find form provider class ' . $providerClass . '.'
);
}
$provider = Injector::inst()->create($providerClass, $this);
$current = Controller::curr();
$provider->setRequest($current->getRequest());
$formName = $this->FormName;
if (!$provider->hasMethod($formName)) {
return null;
}
$form = $provider->$formName();
$form->setFormAction(
Controller::join_links(
$current->Link(),
'element',
$this->owner->ID,
'Form'
)
);
return $form;
}
}