You are here

public function WizardPluginBase::getCreatedColumn in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::getCreatedColumn()
  2. 9 core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::getCreatedColumn()

Gets the createdColumn property.

Return value

string The name of the column containing the created date.

1 call to WizardPluginBase::getCreatedColumn()
WizardPluginBase::buildSorts in core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php
Builds the form structure for selecting the view's sort order.

File

core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php, line 166

Class

WizardPluginBase
Base class for Views wizard plugins.

Namespace

Drupal\views\Plugin\views\wizard

Code

public function getCreatedColumn() {
  return $this->createdColumn;
}