You are here

class ManageDialog in TacJS 8.3

Same name and namespace in other branches
  1. 8.6 src/Form/Steps/ManageDialog.php \Drupal\tacjs\Form\Steps\ManageDialog
  2. 8.4 src/Form/Steps/ManageDialog.php \Drupal\tacjs\Form\Steps\ManageDialog
  3. 8.5 src/Form/Steps/ManageDialog.php \Drupal\tacjs\Form\Steps\ManageDialog

Class ManageDialog.

@package Drupal\tacjs\Form

Hierarchy

Expanded class hierarchy of ManageDialog

1 string reference to 'ManageDialog'
tacjs.routing.yml in ./tacjs.routing.yml
tacjs.routing.yml

File

src/Form/Steps/ManageDialog.php, line 13

Namespace

Drupal\tacjs\Form\Steps
View source
class ManageDialog extends ConfigFormBase {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'tacjs_manage_dialog';
  }

  /**
   * {@inheritdoc}
   */
  protected function getEditableConfigNames() {
    return [
      'tacjs.settings',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = $this
      ->config('tacjs.settings');
    $form['privacyUrl'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Privacy url'),
      '#description' => $this
        ->t('Privacy policy url'),
      '#default_value' => $config
        ->get('dialog.privacyUrl'),
    ];
    $form['cookieName'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Cookie name'),
      '#default_value' => $config
        ->get('dialog.cookieName'),
    ];
    $form['hashtag'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Hashtag'),
      '#description' => $this
        ->t('Open the panel with this hashtag'),
      '#default_value' => $config
        ->get('dialog.hashtag'),
    ];
    $form['orientation'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Orientation'),
      '#description' => $this
        ->t('Banner position (top - bottom)'),
      '#default_value' => $config
        ->get('dialog.orientation'),
      '#options' => [
        'top' => $this
          ->t('Top'),
        'middle' => t('Middle'),
        'bottom' => $this
          ->t('Bottom'),
      ],
    ];
    $form['bodyPosition'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('bodyPosition'),
      '#description' => $this
        ->t('Body position (top - bottom)'),
      '#default_value' => $config
        ->get('dialog.bodyPosition'),
      '#options' => [
        'top' => $this
          ->t('Top'),
        'bottom' => $this
          ->t('Bottom'),
      ],
    ];
    $form['showAlertSmall'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Show alert small'),
      '#description' => $this
        ->t('Show the small banner on bottom right'),
      '#default_value' => $config
        ->get('dialog.showAlertSmall'),
    ];
    $form['cookieslist'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Cookies list'),
      '#description' => $this
        ->t('Show the cookie list'),
      '#default_value' => $config
        ->get('dialog.cookieslist'),
    ];
    $form['adblocker'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Adblocker'),
      '#description' => $this
        ->t('Show a Warning if an adblocker is detected'),
      '#default_value' => $config
        ->get('dialog.adblocker'),
    ];
    $form['AcceptAllCta'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Accept all cta'),
      '#description' => $this
        ->t('Show the accept all button when high privacy on'),
      '#default_value' => $config
        ->get('dialog.AcceptAllCta'),
    ];
    $form['highPrivacy'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('High privacy'),
      '#description' => $this
        ->t('Disable auto consent'),
      '#default_value' => $config
        ->get('dialog.highPrivacy'),
    ];
    $form['handleBrowserDNTRequest'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Handle browser DNT request'),
      '#description' => $this
        ->t('If Do Not Track == 1, disallow all'),
      '#default_value' => $config
        ->get('dialog.handleBrowserDNTRequest'),
    ];
    $form['removeCredit'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Remove credit'),
      '#description' => $this
        ->t('Remove credit link'),
      '#default_value' => $config
        ->get('dialog.removeCredit'),
    ];
    $form['moreInfoLink'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('More info link'),
      '#description' => $this
        ->t('Show more info link'),
      '#default_value' => $config
        ->get('dialog.moreInfoLink'),
    ];
    $form['useExternalCss'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Use external CSS'),
      '#default_value' => $config
        ->get('dialog.useExternalCss'),
    ];
    $form['useExternalJs'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Use external JS'),
      '#default_value' => $config
        ->get('dialog.useExternalJs'),
    ];
    $form['cookieDomain'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Cookie domain'),
      '#description' => $this
        ->t('Shared cookie for subdomain website'),
      '#default_value' => $config
        ->get('dialog.cookieDomain'),
    ];
    $form['readmoreLink'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Read more link'),
      '#description' => $this
        ->t('Change the default readmore link pointing to opt-out.ferank.eu'),
      '#default_value' => $config
        ->get('dialog.readmoreLink'),
    ];
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    $form_state
      ->setValue('showAlertSmall', $form_state
      ->getValue('showAlertSmall') ? TRUE : FALSE)
      ->setValue('cookieslist', $form_state
      ->getValue('cookieslist') ? TRUE : FALSE)
      ->setValue('adblocker', $form_state
      ->getValue('adblocker') ? TRUE : FALSE)
      ->setValue('AcceptAllCta', $form_state
      ->getValue('AcceptAllCta') ? TRUE : FALSE)
      ->setValue('highPrivacy', $form_state
      ->getValue('highPrivacy') ? TRUE : FALSE)
      ->setValue('handleBrowserDNTRequest', $form_state
      ->getValue('handleBrowserDNTRequest') ? TRUE : FALSE)
      ->setValue('removeCredit', $form_state
      ->getValue('removeCredit') ? TRUE : FALSE)
      ->setValue('moreInfoLink', $form_state
      ->getValue('moreInfoLink') ? TRUE : FALSE)
      ->setValue('useExternalCss', $form_state
      ->getValue('useExternalCss') ? TRUE : FALSE)
      ->setValue('useExternalJs', $form_state
      ->getValue('useExternalJs') ? TRUE : FALSE);
    parent::validateForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $config = $this
      ->config('tacjs.settings');
    $config
      ->set('dialog.adblocker', $form_state
      ->getValue('adblocker'))
      ->set('dialog.hashtag', $form_state
      ->getValue('hashtag'))
      ->set('dialog.cookieName', $form_state
      ->getValue('cookieName'))
      ->set('dialog.highPrivacy', $form_state
      ->getValue('highPrivacy'))
      ->set('dialog.orientation', $form_state
      ->getValue('orientation'))
      ->set('dialog.bodyPosition', $form_state
      ->getValue('bodyPosition'))
      ->set('dialog.removeCredit', $form_state
      ->getValue('removeCredit'))
      ->set('dialog.showAlertSmall', $form_state
      ->getValue('showAlertSmall'))
      ->set('dialog.cookieslist', $form_state
      ->getValue('cookieslist'))
      ->set('dialog.handleBrowserDNTRequest', $form_state
      ->getValue('handleBrowserDNTRequest'))
      ->set('dialog.AcceptAllCta', $form_state
      ->getValue('AcceptAllCta'))
      ->set('dialog.moreInfoLink', $form_state
      ->getValue('moreInfoLink'))
      ->set('dialog.privacyUrl', $form_state
      ->getValue('privacyUrl'))
      ->set('dialog.useExternalCss', $form_state
      ->getValue('useExternalCss'))
      ->set('dialog.useExternalJs', $form_state
      ->getValue('useExternalJs'))
      ->set('dialog.cookieDomain', $form_state
      ->getValue('cookieDomain'))
      ->set('dialog.readmoreLink', $form_state
      ->getValue('readmoreLink'))
      ->save();
    parent::submitForm($form, $form_state);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigFormBase::create public static function Instantiates a new instance of this class. Overrides FormBase::create 13
ConfigFormBase::__construct public function Constructs a \Drupal\system\ConfigFormBase object. 11
ConfigFormBaseTrait::config protected function Retrieves a configuration object.
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 1
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::configFactory protected function Gets the config factory for this form. 1
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait::redirect
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
LinkGeneratorTrait::$linkGenerator protected property The link generator. 1
LinkGeneratorTrait::getLinkGenerator Deprecated protected function Returns the link generator.
LinkGeneratorTrait::l Deprecated protected function Renders a link to a route given a route name and its parameters.
LinkGeneratorTrait::setLinkGenerator Deprecated public function Sets the link generator service.
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
ManageDialog::buildForm public function Form constructor. Overrides ConfigFormBase::buildForm
ManageDialog::getEditableConfigNames protected function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames
ManageDialog::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
ManageDialog::submitForm public function Form submission handler. Overrides ConfigFormBase::submitForm
ManageDialog::validateForm public function Form validation handler. Overrides FormBase::validateForm
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
UrlGeneratorTrait::$urlGenerator protected property The url generator.
UrlGeneratorTrait::getUrlGenerator Deprecated protected function Returns the URL generator service.
UrlGeneratorTrait::setUrlGenerator Deprecated public function Sets the URL generator service.
UrlGeneratorTrait::url Deprecated protected function Generates a URL or path for a specific route based on the given parameters.