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

Breadcrumb

  1. Drupal Core 11.1.x

StickyNode.php

Namespace

Drupal\node\Plugin\Action

File

core/modules/node/src/Plugin/Action/StickyNode.php

View source
<?php

namespace Drupal\node\Plugin\Action;

use Drupal\Core\Action\Attribute\Action;
use Drupal\Core\Field\FieldUpdateActionBase;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\node\NodeInterface;

/**
 * Makes a node sticky.
 */
class StickyNode extends FieldUpdateActionBase {
    
    /**
     * {@inheritdoc}
     */
    protected function getFieldsToUpdate() {
        return [
            'sticky' => NodeInterface::STICKY,
        ];
    }

}

Classes

Title Deprecated Summary
StickyNode Makes a node sticky.

API Navigation

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