SetFormCommand.php in Drupal 10
File
core/modules/views_ui/src/Ajax/SetFormCommand.php
View source
<?php
namespace Drupal\views_ui\Ajax;
use Drupal\Core\Ajax\CommandInterface;
class SetFormCommand implements CommandInterface {
protected $url;
public function __construct($url) {
$this->url = $url;
}
public function render() {
return [
'command' => 'viewsSetForm',
'url' => $this->url,
];
}
}
Classes
Name |
Description |
SetFormCommand |
Provides an AJAX command for setting a form submit URL in modal forms. |