Total Complexity | 74 |
Total Lines | 655 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like EmailRecipient often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use EmailRecipient, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
49 | class EmailRecipient extends DataObject |
||
50 | { |
||
51 | private static $db = [ |
||
52 | 'EmailAddress' => 'Varchar(200)', |
||
53 | 'EmailSubject' => 'Varchar(200)', |
||
54 | 'EmailFrom' => 'Varchar(200)', |
||
55 | 'EmailReplyTo' => 'Varchar(200)', |
||
56 | 'EmailBody' => 'Text', |
||
57 | 'EmailBodyHtml' => 'HTMLText', |
||
58 | 'EmailTemplate' => 'Varchar', |
||
59 | 'SendPlain' => 'Boolean', |
||
60 | 'HideFormData' => 'Boolean', |
||
61 | 'CustomRulesCondition' => 'Enum("And,Or")' |
||
62 | ]; |
||
63 | |||
64 | private static $has_one = [ |
||
65 | 'Form' => DataObject::class, |
||
66 | 'SendEmailFromField' => EditableFormField::class, |
||
67 | 'SendEmailToField' => EditableFormField::class, |
||
68 | 'SendEmailSubjectField' => EditableFormField::class |
||
69 | ]; |
||
70 | |||
71 | private static $has_many = [ |
||
72 | 'CustomRules' => EmailRecipientCondition::class, |
||
73 | ]; |
||
74 | |||
75 | private static $owns = [ |
||
76 | 'CustomRules', |
||
77 | ]; |
||
78 | |||
79 | private static $cascade_deletes = [ |
||
80 | 'CustomRules', |
||
81 | ]; |
||
82 | |||
83 | private static $summary_fields = [ |
||
84 | 'EmailAddress', |
||
85 | 'EmailSubject', |
||
86 | 'EmailFrom' |
||
87 | ]; |
||
88 | |||
89 | private static $table_name = 'UserDefinedForm_EmailRecipient'; |
||
90 | |||
91 | /** |
||
92 | * Setting this to true will allow you to select "risky" fields as |
||
93 | * email recipient, such as free-text entry fields. |
||
94 | * |
||
95 | * It's advisable to leave this off. |
||
96 | * |
||
97 | * @config |
||
98 | * @var bool |
||
99 | */ |
||
100 | private static $allow_unbound_recipient_fields = false; |
||
101 | |||
102 | public function requireDefaultRecords() |
||
108 | } |
||
109 | |||
110 | public function summaryFields() |
||
111 | { |
||
112 | $fields = parent::summaryFields(); |
||
113 | if (isset($fields['EmailAddress'])) { |
||
114 | /** @skipUpgrade */ |
||
115 | $fields['EmailAddress'] = _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILADDRESS', 'Email'); |
||
116 | } |
||
117 | if (isset($fields['EmailSubject'])) { |
||
118 | $fields['EmailSubject'] = _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILSUBJECT', 'Subject'); |
||
119 | } |
||
120 | if (isset($fields['EmailFrom'])) { |
||
121 | $fields['EmailFrom'] = _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILFROM', 'From'); |
||
122 | } |
||
123 | return $fields; |
||
124 | } |
||
125 | |||
126 | /** |
||
127 | * Get instance of UserForm when editing in getCMSFields |
||
128 | * |
||
129 | * @return UserDefinedForm |
||
130 | */ |
||
131 | protected function getFormParent() |
||
132 | { |
||
133 | // LeftAndMain::sessionNamespace is protected. @todo replace this with a non-deprecated equivalent. |
||
134 | $sessionNamespace = $this->config()->get('session_namespace') ?: CMSMain::class; |
||
135 | |||
136 | $formID = $this->FormID ?: Controller::curr()->getRequest()->getSession()->get($sessionNamespace . '.currentPage'); |
||
|
|||
137 | $formClass = $this->FormClass ?: UserDefinedForm::class; |
||
138 | |||
139 | return $formClass::get()->byID($formID); |
||
140 | } |
||
141 | |||
142 | public function getTitle() |
||
151 | } |
||
152 | |||
153 | /** |
||
154 | * Generate a gridfield config for editing filter rules |
||
155 | * |
||
156 | * @return GridFieldConfig |
||
157 | */ |
||
158 | protected function getRulesConfig() |
||
159 | { |
||
160 | if (!$this->getFormParent()) { |
||
161 | return null; |
||
162 | } |
||
163 | $formFields = $this->getFormParent()->Fields(); |
||
164 | |||
165 | $config = GridFieldConfig::create() |
||
166 | ->addComponents( |
||
167 | new GridFieldButtonRow('before'), |
||
168 | new GridFieldToolbarHeader(), |
||
169 | new GridFieldAddNewInlineButton(), |
||
170 | new GridFieldDeleteAction(), |
||
171 | $columns = new GridFieldEditableColumns() |
||
172 | ); |
||
173 | |||
174 | $columns->setDisplayFields(array( |
||
175 | 'ConditionFieldID' => function ($record, $column, $grid) use ($formFields) { |
||
176 | return DropdownField::create($column, false, $formFields->map('ID', 'Title')); |
||
177 | }, |
||
178 | 'ConditionOption' => function ($record, $column, $grid) { |
||
179 | $options = EmailRecipientCondition::config()->condition_options; |
||
180 | return DropdownField::create($column, false, $options); |
||
181 | }, |
||
182 | 'ConditionValue' => function ($record, $column, $grid) { |
||
183 | return TextField::create($column); |
||
184 | } |
||
185 | )); |
||
186 | |||
187 | return $config; |
||
188 | } |
||
189 | |||
190 | /** |
||
191 | * @return FieldList |
||
192 | */ |
||
193 | public function getCMSFields() |
||
194 | { |
||
195 | Requirements::javascript('silverstripe/userforms:client/dist/js/userforms-cms.js'); |
||
196 | |||
197 | // Build fieldlist |
||
198 | $fields = FieldList::create(Tabset::create('Root')->addExtraClass('EmailRecipientForm')); |
||
199 | |||
200 | // Configuration fields |
||
201 | $fields->addFieldsToTab('Root.EmailDetails', [ |
||
202 | $this->getSubjectCMSFields(), |
||
203 | $this->getEmailToCMSFields(), |
||
204 | $this->getEmailFromCMSFields(), |
||
205 | $this->getEmailReplyToCMSFields(), |
||
206 | ]); |
||
207 | $fields->fieldByName('Root.EmailDetails')->setTitle(_t(__CLASS__ . '.EMAILDETAILSTAB', 'Email Details')); |
||
208 | |||
209 | // Only show the preview link if the recipient has been saved. |
||
210 | if (!empty($this->EmailTemplate)) { |
||
211 | $pageEditController = singleton(CMSPageEditController::class); |
||
212 | $pageEditController |
||
213 | ->getRequest() |
||
214 | ->setSession(Controller::curr()->getRequest()->getSession()); |
||
215 | |||
216 | $preview = sprintf( |
||
217 | '<p><a href="%s" target="_blank" class="btn btn-outline-secondary">%s</a></p><em>%s</em>', |
||
218 | Controller::join_links( |
||
219 | $pageEditController->getEditForm()->FormAction(), |
||
220 | "field/EmailRecipients/item/{$this->ID}/preview" |
||
221 | ), |
||
222 | _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.PREVIEW_EMAIL', 'Preview email'), |
||
223 | _t( |
||
224 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.PREVIEW_EMAIL_DESCRIPTION', |
||
225 | 'Note: Unsaved changes will not appear in the preview.' |
||
226 | ) |
||
227 | ); |
||
228 | } else { |
||
229 | $preview = sprintf( |
||
230 | '<em>%s</em>', |
||
231 | _t( |
||
232 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.PREVIEW_EMAIL_UNAVAILABLE', |
||
233 | 'You can preview this email once you have saved the Recipient.' |
||
234 | ) |
||
235 | ); |
||
236 | } |
||
237 | |||
238 | // Email templates |
||
239 | $fields->addFieldsToTab('Root.EmailContent', [ |
||
240 | CheckboxField::create( |
||
241 | 'HideFormData', |
||
242 | _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.HIDEFORMDATA', 'Hide form data from email?') |
||
243 | ), |
||
244 | CheckboxField::create( |
||
245 | 'SendPlain', |
||
246 | _t( |
||
247 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDPLAIN', |
||
248 | 'Send email as plain text? (HTML will be stripped)' |
||
249 | ) |
||
250 | ), |
||
251 | HTMLEditorField::create( |
||
252 | 'EmailBodyHtml', |
||
253 | _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILBODYHTML', 'Body') |
||
254 | ) |
||
255 | ->addExtraClass('toggle-html-only'), |
||
256 | TextareaField::create( |
||
257 | 'EmailBody', |
||
258 | _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILBODY', 'Body') |
||
259 | ) |
||
260 | ->addExtraClass('toggle-plain-only'), |
||
261 | LiteralField::create('EmailPreview', $preview) |
||
262 | ]); |
||
263 | |||
264 | $templates = $this->getEmailTemplateDropdownValues(); |
||
265 | |||
266 | if ($templates) { |
||
267 | $fields->insertBefore( |
||
268 | DropdownField::create( |
||
269 | 'EmailTemplate', |
||
270 | _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILTEMPLATE', 'Email template'), |
||
271 | $templates |
||
272 | )->addExtraClass('toggle-html-only'), |
||
273 | 'EmailBodyHtml' |
||
274 | ); |
||
275 | } |
||
276 | |||
277 | $fields->fieldByName('Root.EmailContent')->setTitle(_t(__CLASS__ . '.EMAILCONTENTTAB', 'Email Content')); |
||
278 | |||
279 | // Custom rules for sending this field |
||
280 | $grid = GridField::create( |
||
281 | 'CustomRules', |
||
282 | _t('SilverStripe\\UserForms\\Model\\EditableFormField.CUSTOMRULES', 'Custom Rules'), |
||
283 | $this->CustomRules(), |
||
284 | $this->getRulesConfig() |
||
285 | ); |
||
286 | $grid->setDescription(_t( |
||
287 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.RulesDescription', |
||
288 | 'Emails will only be sent to the recipient if the custom rules are met. If no rules are defined, this receipient will receive notifications for every submission.' |
||
289 | )); |
||
290 | $fields->addFieldsToTab('Root.CustomRules', [ |
||
291 | DropdownField::create( |
||
292 | 'CustomRulesCondition', |
||
293 | _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDIF', 'Send condition'), |
||
294 | [ |
||
295 | 'Or' => _t( |
||
296 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDIFOR', |
||
297 | 'Any conditions are true' |
||
298 | ), |
||
299 | 'And' => _t( |
||
300 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDIFAND', |
||
301 | 'All conditions are true' |
||
302 | ) |
||
303 | ] |
||
304 | ), |
||
305 | $grid |
||
306 | ]); |
||
307 | |||
308 | $fields->fieldByName('Root.CustomRules')->setTitle(_t(__CLASS__ . '.CUSTOMRULESTAB', 'Custom Rules')); |
||
309 | |||
310 | $this->extend('updateCMSFields', $fields); |
||
311 | return $fields; |
||
312 | } |
||
313 | |||
314 | /** |
||
315 | * Return whether a user can create an object of this type |
||
316 | * |
||
317 | * @param Member $member |
||
318 | * @param array $context Virtual parameter to allow context to be passed in to check |
||
319 | * @return bool |
||
320 | */ |
||
321 | public function canCreate($member = null, $context = []) |
||
322 | { |
||
323 | // Check parent page |
||
324 | $parent = $this->getCanCreateContext(func_get_args()); |
||
325 | if ($parent) { |
||
326 | return $parent->canEdit($member); |
||
327 | } |
||
328 | |||
329 | // Fall back to secure admin permissions |
||
330 | return parent::canCreate($member); |
||
331 | } |
||
332 | |||
333 | /** |
||
334 | * Helper method to check the parent for this object |
||
335 | * |
||
336 | * @param array $args List of arguments passed to canCreate |
||
337 | * @return SiteTree Parent page instance |
||
338 | */ |
||
339 | protected function getCanCreateContext($args) |
||
340 | { |
||
341 | // Inspect second parameter to canCreate for a 'Parent' context |
||
342 | if (isset($args[1][Form::class])) { |
||
343 | return $args[1][Form::class]; |
||
344 | } |
||
345 | // Hack in currently edited page if context is missing |
||
346 | if (Controller::has_curr() && Controller::curr() instanceof CMSMain) { |
||
347 | return Controller::curr()->currentPage(); |
||
348 | } |
||
349 | |||
350 | // No page being edited |
||
351 | return null; |
||
352 | } |
||
353 | |||
354 | public function canView($member = null) |
||
355 | { |
||
356 | if ($form = $this->getFormParent()) { |
||
357 | return $form->canView($member); |
||
358 | } |
||
359 | return parent::canView($member); |
||
360 | } |
||
361 | |||
362 | public function canEdit($member = null) |
||
363 | { |
||
364 | if ($form = $this->getFormParent()) { |
||
365 | return $form->canEdit($member); |
||
366 | } |
||
367 | |||
368 | return parent::canEdit($member); |
||
369 | } |
||
370 | |||
371 | /** |
||
372 | * @param Member |
||
373 | * |
||
374 | * @return boolean |
||
375 | */ |
||
376 | public function canDelete($member = null) |
||
377 | { |
||
378 | return $this->canEdit($member); |
||
379 | } |
||
380 | |||
381 | /** |
||
382 | * Determine if this recipient may receive notifications for this submission |
||
383 | * |
||
384 | * @param array $data |
||
385 | * @param Form $form |
||
386 | * @return bool |
||
387 | */ |
||
388 | public function canSend($data, $form) |
||
389 | { |
||
390 | // Skip if no rules configured |
||
391 | $customRules = $this->CustomRules(); |
||
392 | if (!$customRules->count()) { |
||
393 | return true; |
||
394 | } |
||
395 | |||
396 | // Check all rules |
||
397 | $isAnd = $this->CustomRulesCondition === 'And'; |
||
398 | foreach ($customRules as $customRule) { |
||
399 | /** @var EmailRecipientCondition $customRule */ |
||
400 | $matches = $customRule->matches($data); |
||
401 | if ($isAnd && !$matches) { |
||
402 | return false; |
||
403 | } |
||
404 | if (!$isAnd && $matches) { |
||
405 | return true; |
||
406 | } |
||
407 | } |
||
408 | |||
409 | // Once all rules are checked |
||
410 | return $isAnd; |
||
411 | } |
||
412 | |||
413 | /** |
||
414 | * Make sure the email template saved against the recipient exists on the file system. |
||
415 | * |
||
416 | * @param string |
||
417 | * |
||
418 | * @return boolean |
||
419 | */ |
||
420 | public function emailTemplateExists($template = '') |
||
421 | { |
||
422 | $t = ($template ? $template : $this->EmailTemplate); |
||
423 | |||
424 | return array_key_exists($t, (array) $this->getEmailTemplateDropdownValues()); |
||
425 | } |
||
426 | |||
427 | /** |
||
428 | * Get the email body for the current email format |
||
429 | * |
||
430 | * @return string |
||
431 | */ |
||
432 | public function getEmailBodyContent() |
||
438 | } |
||
439 | |||
440 | /** |
||
441 | * Gets a list of email templates suitable for populating the email template dropdown. |
||
442 | * |
||
443 | * @return array |
||
444 | */ |
||
445 | public function getEmailTemplateDropdownValues() |
||
489 | } |
||
490 | |||
491 | /** |
||
492 | * Validate that valid email addresses are being used |
||
493 | * |
||
494 | * @return ValidationResult |
||
495 | */ |
||
496 | public function validate() |
||
497 | { |
||
498 | $result = parent::validate(); |
||
499 | $checkEmail = [ |
||
500 | 'EmailAddress' => 'EMAILADDRESSINVALID', |
||
501 | 'EmailFrom' => 'EMAILFROMINVALID', |
||
502 | 'EmailReplyTo' => 'EMAILREPLYTOINVALID', |
||
503 | ]; |
||
504 | foreach ($checkEmail as $check => $translation) { |
||
505 | if ($this->$check) { |
||
506 | //may be a comma separated list of emails |
||
507 | $addresses = explode(',', $this->$check); |
||
508 | foreach ($addresses as $address) { |
||
509 | $trimAddress = trim($address); |
||
510 | if ($trimAddress && !Email::is_valid_address($trimAddress)) { |
||
511 | $error = _t( |
||
512 | __CLASS__.".$translation", |
||
513 | "Invalid email address $trimAddress" |
||
514 | ); |
||
515 | $result->addError($error . " ($trimAddress)"); |
||
516 | } |
||
517 | } |
||
518 | } |
||
519 | } |
||
520 | |||
521 | // if there is no from address and no fallback, you'll have errors if this isn't defined |
||
522 | if (!$this->EmailFrom && empty(Email::getSendAllEmailsFrom()) && empty(Email::config()->get('admin_email'))) { |
||
523 | $result->addError(_t(__CLASS__.".EMAILFROMREQUIRED", '"Email From" address is required')); |
||
524 | } |
||
525 | return $result; |
||
526 | } |
||
527 | |||
528 | /** |
||
529 | * @return FieldGroup|TextField |
||
530 | */ |
||
531 | protected function getSubjectCMSFields() |
||
532 | { |
||
533 | $subjectTextField = TextField::create( |
||
534 | 'EmailSubject', |
||
535 | _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.TYPESUBJECT', 'Type subject') |
||
536 | ) |
||
537 | ->setAttribute('style', 'min-width: 400px;'); |
||
538 | |||
539 | if ($this->getFormParent() && $this->getValidSubjectFields()) { |
||
540 | return FieldGroup::create( |
||
541 | $subjectTextField, |
||
542 | DropdownField::create( |
||
543 | 'SendEmailSubjectFieldID', |
||
544 | _t( |
||
545 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SELECTAFIELDTOSETSUBJECT', |
||
546 | '.. or select a field to use as the subject' |
||
547 | ), |
||
548 | $this->getValidSubjectFields()->map('ID', 'Title') |
||
549 | )->setEmptyString('') |
||
550 | ) |
||
551 | ->setTitle(_t('SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILSUBJECT', 'Email subject')); |
||
552 | } else { |
||
553 | return $subjectTextField; |
||
554 | } |
||
555 | } |
||
556 | |||
557 | /** |
||
558 | * @return FieldGroup|TextField |
||
559 | */ |
||
560 | protected function getEmailToCMSFields() |
||
561 | { |
||
562 | $emailToTextField = TextField::create( |
||
563 | 'EmailAddress', |
||
564 | _t('SilverStripe\\UserForms\\Model\\UserDefinedForm.TYPETO', 'Type to address') |
||
565 | ) |
||
566 | ->setAttribute('style', 'min-width: 400px;'); |
||
567 | |||
568 | if ($this->getFormParent() && $this->getValidEmailToFields()) { |
||
569 | return FieldGroup::create( |
||
570 | $emailToTextField, |
||
571 | DropdownField::create( |
||
572 | 'SendEmailToFieldID', |
||
573 | _t( |
||
574 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.ORSELECTAFIELDTOUSEASTO', |
||
575 | '.. or select a field to use as the to address' |
||
576 | ), |
||
577 | $this->getValidEmailToFields()->map('ID', 'Title') |
||
578 | )->setEmptyString(' ') |
||
579 | ) |
||
580 | ->setTitle(_t('SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDEMAILTO', 'Send email to')) |
||
581 | ->setDescription(_t( |
||
582 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDEMAILTO_DESCRIPTION', |
||
583 | 'You may enter multiple email addresses as a comma separated list.' |
||
584 | )); |
||
585 | } else { |
||
586 | return $emailToTextField; |
||
587 | } |
||
588 | } |
||
589 | |||
590 | /** |
||
591 | * @return TextField |
||
592 | */ |
||
593 | protected function getEmailFromCMSFields() |
||
605 | )); |
||
606 | } |
||
607 | |||
608 | /** |
||
609 | * @return FieldGroup|TextField |
||
610 | */ |
||
611 | protected function getEmailReplyToCMSFields() |
||
612 | { |
||
613 | $replyToTextField = TextField::create('EmailReplyTo', _t( |
||
614 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.TYPEREPLY', |
||
615 | 'Type reply address' |
||
616 | )) |
||
617 | ->setAttribute('style', 'min-width: 400px;'); |
||
618 | if ($this->getFormParent() && $this->getValidEmailFromFields()) { |
||
619 | return FieldGroup::create( |
||
620 | $replyToTextField, |
||
621 | DropdownField::create( |
||
622 | 'SendEmailFromFieldID', |
||
623 | _t( |
||
624 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.ORSELECTAFIELDTOUSEASFROM', |
||
625 | '.. or select a field to use as reply to address' |
||
626 | ), |
||
627 | $this->getValidEmailFromFields()->map('ID', 'Title') |
||
628 | )->setEmptyString(' ') |
||
629 | ) |
||
630 | ->setTitle(_t( |
||
631 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.REPLYADDRESS', |
||
632 | 'Email for reply to' |
||
633 | )) |
||
634 | ->setDescription(_t( |
||
635 | 'SilverStripe\\UserForms\\Model\\UserDefinedForm.REPLYADDRESS_DESCRIPTION', |
||
636 | 'The email address which the recipient is able to \'reply\' to.' |
||
637 | )); |
||
638 | } else { |
||
639 | return $replyToTextField; |
||
640 | } |
||
641 | } |
||
642 | |||
643 | /** |
||
644 | * @return DataList|null |
||
645 | */ |
||
646 | protected function getMultiOptionFields() |
||
647 | { |
||
648 | if (!$form = $this->getFormParent()) { |
||
649 | return null; |
||
650 | } |
||
651 | return EditableMultipleOptionField::get()->filter('ParentID', $form->ID); |
||
652 | } |
||
653 | |||
654 | /** |
||
655 | * @return ArrayList|null |
||
656 | */ |
||
657 | protected function getValidSubjectFields() |
||
658 | { |
||
659 | if (!$form = $this->getFormParent()) { |
||
660 | return null; |
||
661 | } |
||
662 | // For the subject, only one-line entry boxes make sense |
||
663 | $validSubjectFields = ArrayList::create( |
||
664 | EditableTextField::get() |
||
665 | ->filter('ParentID', $form->ID) |
||
666 | ->exclude('Rows:GreaterThan', 1) |
||
667 | ->toArray() |
||
668 | ); |
||
669 | $validSubjectFields->merge($this->getMultiOptionFields()); |
||
670 | return $validSubjectFields; |
||
671 | } |
||
672 | |||
673 | /** |
||
674 | * @return DataList|null |
||
675 | */ |
||
676 | protected function getValidEmailFromFields() |
||
684 | } |
||
685 | |||
686 | /** |
||
687 | * @return ArrayList|DataList|null |
||
688 | */ |
||
689 | protected function getValidEmailToFields() |
||
704 | } |
||
705 | } |
||
706 | } |
||
707 |