OpenModalDialogWithUrl.php

Same filename and directory in other branches
  1. 10 core/lib/Drupal/Core/Ajax/OpenModalDialogWithUrl.php

Namespace

Drupal\Core\Ajax

File

core/lib/Drupal/Core/Ajax/OpenModalDialogWithUrl.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Core\Ajax;

use Drupal\Component\Utility\UrlHelper;

/**
 * Provides an AJAX command for opening a modal with URL.
 *
 * OpenDialogCommand is a similar class which opens modals but works
 * differently as it needs all data to be passed through dialogOptions while
 * OpenModalDialogWithUrl fetches the data from routing info of the URL.
 *
 * @see \Drupal\Core\Ajax\OpenDialogCommand
 */
class OpenModalDialogWithUrl implements CommandInterface {
  
  /**
   * Constructs a OpenModalDialogWithUrl object.
   *
   * @param string $url
   *   Only Internal URLs or URLs with the same domain and base path are
   *   allowed.
   * @param array $settings
   *   The dialog settings.
   */
  public function __construct(protected string $url, protected array $settings) {
  }
  
  /**
   * {@inheritdoc}
   */
  public function render() {
    // @see \Drupal\Core\Routing\LocalAwareRedirectResponseTrait::isLocal()
    if (!UrlHelper::isExternal($this->url) || UrlHelper::externalIsLocal($this->url, $this->getBaseURL())) {
      return [
        'command' => 'openModalDialogWithUrl',
        'url' => $this->url,
        'dialogOptions' => $this->settings,
      ];
    }
    throw new \LogicException('External URLs are not allowed.');
  }
  
  /**
   * Gets the complete base URL.
   */
  private function getBaseUrl() {
    $requestContext = \Drupal::service('router.request_context');
    return $requestContext->getCompleteBaseUrl();
  }

}

Classes

Title Deprecated Summary
OpenModalDialogWithUrl Provides an AJAX command for opening a modal with URL.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.