added terms of services
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
name: Materio Commerce
|
||||
description: Materio commerce custom module
|
||||
package: Materio
|
||||
|
||||
type: module
|
||||
core: 8.x
|
||||
|
||||
dependencies:
|
||||
- drupal:commerce
|
@@ -0,0 +1 @@
|
||||
<?php
|
@@ -0,0 +1,7 @@
|
||||
materio_commerce.terms_viewer:
|
||||
path: 'tos'
|
||||
defaults:
|
||||
_controller: '\Drupal\materio_commerce\Controller\MaterioCommerceTermsViewer::getTos'
|
||||
_title_callback: '\Drupal\materio_commerce\Controller\MaterioCommerceTermsViewer::getTitle'
|
||||
requirements:
|
||||
_permission: 'access content'
|
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
namespace Drupal\materio_commerce\Controller;
|
||||
|
||||
use Drupal\Core\Controller\ControllerBase;
|
||||
use Symfony\Component\DependencyInjection\ContainerInterface;
|
||||
use Drupal\Core\Language\LanguageManagerInterface;
|
||||
use Drupal\Core\Url;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
// use Symfony\Component\HttpFoundation\JsonResponse;
|
||||
use Drupal\config_pages\Entity\ConfigPages;
|
||||
use Drupal\config_pages\Entity\ConfigPagesType;
|
||||
|
||||
/**
|
||||
* Class AjaxHomeController.
|
||||
*/
|
||||
class MaterioCommerceTermsViewer extends ControllerBase {
|
||||
|
||||
|
||||
/*
|
||||
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
|
||||
*/
|
||||
protected $languageManager;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function create(ContainerInterface $container) {
|
||||
return new static(
|
||||
$container->get('language_manager')
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a new MaterioDecoupledLanguageLinks object.
|
||||
*
|
||||
* @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
|
||||
* The language manager.
|
||||
*/
|
||||
public function __construct(LanguageManagerInterface $language_manager) {
|
||||
$this->languageManager = $language_manager;
|
||||
}
|
||||
|
||||
/**
|
||||
* getTerms
|
||||
*
|
||||
* @return string
|
||||
* Return config_page terms_of_services display.
|
||||
*/
|
||||
public function getTos(Request $request) {
|
||||
$config_page = $this->getConfigPage();
|
||||
|
||||
// Correct metatags attachment.
|
||||
if (function_exists('metatag_get_tags_from_route')) {
|
||||
$metatag_attachments = &drupal_static('metatag_attachments');
|
||||
$metatag_attachments = metatag_get_tags_from_route($config_page);
|
||||
}
|
||||
|
||||
return parent::entityTypeManager()->getViewBuilder('config_pages')->view($config_page, 'full');
|
||||
|
||||
}
|
||||
|
||||
public function getTitle(Request $request) {
|
||||
$config_page = $this->getConfigPage();
|
||||
return $config_page->get('field_title')->getString();
|
||||
}
|
||||
|
||||
private function getConfigPage(){
|
||||
return ConfigPages::load("terms_of_services");
|
||||
}
|
||||
}
|
@@ -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']);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user