added terms of services

This commit is contained in:
2021-06-25 14:00:13 +02:00
parent baf617e8ed
commit 1ac8e08daa
23 changed files with 712 additions and 11 deletions

View File

@@ -0,0 +1,179 @@
<?php
namespace Drupal\materio_commerce\Plugin\Commerce\CheckoutPane;
use Drupal\Core\Form\FormStateInterface;
use Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane\CheckoutPaneBase;
use Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane\CheckoutPaneInterface;
use Drupal\node\Entity\Node;
use Drupal\Core\Link;
/**
* Provides the completion message pane.
*
* @CommerceCheckoutPane(
* id = "materio_commerce_agree_terms",
* label = @Translation("Agree to the terms and conditions"),
* default_step = "review",
* )
*/
class MaterioCommerceAgreeTerms extends CheckoutPaneBase implements CheckoutPaneInterface {
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'path' => NULL,
'link_text' => 'Terms and Conditions',
'prefix_text' => 'I agree with the %terms',
'invalid_text' => 'You must agree with the %terms before continuing',
'new_window' => 1,
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationSummary() {
$prefix = $this->configuration['prefix_text'];
$link_text = $this->configuration['link_text'];
$invalid_text = $this->configuration['invalid_text'];
$new_window = $this->configuration['new_window'];
$path = $this->configuration['path'];
$summary = '';
if (!empty($prefix)) {
$summary = $this->t('Prefix text: @text', ['@text' => $prefix]) . '<br/>';
}
if (!empty($link_text)) {
$summary .= $this->t('Link text: @text', ['@text' => $link_text]) . '<br/>';
}
if (!empty($invalid_text)) {
$summary .= $this->t('Error text: @text', ['@text' => $invalid_text]) . '<br/>';
}
if (!empty($window_target)) {
$window_text = ($new_window === 1) ? $this->t('New window') : $this->t('Same window');
$summary .= $this->t('Window opens in: @opens', ['@text' => $window_text]) . '<br/>';
}
if (!empty($path)) {
$summary .= $this->t('Terms page: @path', ['@path' => $path['route_name']]);
}
return $summary;
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
$form['prefix_text'] = [
'#type' => 'textfield',
'#title' => $this->t('Prefix text'),
'#default_value' => $this->configuration['prefix_text'],
];
$form['link_text'] = [
'#type' => 'textfield',
'#title' => $this->t('Link text'),
'#default_value' => $this->configuration['link_text'],
'#required' => TRUE,
];
$form['invalid_text'] = [
'#type' => 'textfield',
'#title' => $this->t('Invalid text'),
'#default_value' => $this->configuration['invalid_text'],
];
$form['new_window'] = [
'#type' => 'checkbox',
'#title' => $this->t('Open window link in new window'),
'#default_value' => $this->configuration['new_window'],
];
if ($this->configuration['path']) {
$path = $this->configuration['path'];
}
else {
$path = NULL;
}
$form['path'] = [
'#type' => 'path',
'#default_value' => $path,
'#required' => TRUE
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
// Todo validate existing path
// Get route name and parameters from path.
// $url_object = \Drupal::service('path.validator')->getUrlIfValid($path);
// $route_name = $url_object->getRouteName();
// $route_parameters = $url_object->getrouteParameters();
if (!$form_state->getErrors()) {
$values = $form_state->getValue($form['#parents']);
$this->configuration['prefix_text'] = $values['prefix_text'];
$this->configuration['link_text'] = $values['link_text'];
$this->configuration['invalid_text'] = $values['invalid_text'];
$this->configuration['new_window'] = $values['new_window'];
$this->configuration['path'] = $values['path'];
}
}
/**
* {@inheritdoc}
*/
public function buildPaneForm(array $pane_form, FormStateInterface $form_state, array &$complete_form) {
$prefix_text = $this->configuration['prefix_text'];
$link_text = $this->configuration['link_text'];
$path = $this->configuration['path'];
if ($path) {
// $node = Node::load($nid);
$attributes = [];
if ($this->configuration['new_window']) {
$attributes = ['attributes' => ['target' => '_blank']];
}
$link = Link::createFromRoute(
$this->t($link_text),
$path['route_name'],
$path['route_parameters'],
$attributes
)->toString();
if ($prefix_text) {
$pane_form['terms_and_conditions'] = [
'#type' => 'checkbox',
'#default_value' => FALSE,
'#title' => $this->t($prefix_text, ['%terms' => $link]),
'#required' => TRUE,
'#weight' => $this->getWeight(),
];
}
else {
$pane_form['terms_and_conditions'] = [
'#type' => 'checkbox',
'#default_value' => FALSE,
'#title' => $link,
'#required' => TRUE,
'#weight' => $this->getWeight(),
];
}
}
return $pane_form;
}
/**
* {@inheritdoc}
*/
public function validatePaneForm(array &$pane_form, FormStateInterface $form_state, array &$complete_form) {
$values = $form_state->getValue($pane_form['#parents']);
if (!$values['terms_and_conditions']) {
$form_state->setError($pane_form, $this->configuration['invalid_text']);
}
}
}