Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ScrollTopCommand.php

class ScrollTopCommand

Provides an AJAX command for scrolling to the top of an element.

This command is implemented in Drupal.AjaxCommands.prototype.scrollTop.

Hierarchy

  • class \Drupal\Core\Ajax\ScrollTopCommand implements \Drupal\Core\Ajax\CommandInterface

Expanded class hierarchy of ScrollTopCommand

1 file declares its use of ScrollTopCommand
ViewAjaxController.php in core/modules/views/src/Controller/ViewAjaxController.php

File

core/lib/Drupal/Core/Ajax/ScrollTopCommand.php, line 10

Namespace

Drupal\Core\Ajax
View source
class ScrollTopCommand implements CommandInterface {
    
    /**
     * A CSS selector string.
     *
     * @var string
     */
    protected $selector;
    
    /**
     * Constructs a \Drupal\Core\Ajax\ScrollTopCommand object.
     *
     * @param string $selector
     *   A CSS selector.
     */
    public function __construct($selector) {
        $this->selector = $selector;
    }
    
    /**
     * {@inheritdoc}
     */
    public function render() : array {
        return [
            'command' => 'scrollTop',
            'selector' => $this->selector,
        ];
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
ScrollTopCommand::$selector protected property A CSS selector string.
ScrollTopCommand::render public function Return an array to be run through json_encode and sent to the client. Overrides CommandInterface::render
ScrollTopCommand::__construct public function Constructs a \Drupal\Core\Ajax\ScrollTopCommand object.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal