Loading core/modules/views/src/Plugin/Derivative/ViewsEntityRow.php +1 −1 Original line number Diff line number Diff line Loading @@ -95,7 +95,7 @@ public function getDerivativeDefinitions($base_plugin_definition) { $this->derivatives[$entity_type_id] = [ 'id' => 'entity:' . $entity_type_id, 'provider' => 'views', 'title' => $entity_type->getLabel(), 'title' => $this->t('@label view mode', ['@label' => $entity_type->getLabel()]), 'help' => $this->t('Display the @label', ['@label' => $entity_type->getLabel()]), 'base' => [$entity_type->getDataTable() ?: $entity_type->getBaseTable()], 'entity_type' => $entity_type_id, Loading core/modules/views/src/Plugin/views/display/DisplayPluginBase.php +1 −1 Original line number Diff line number Diff line Loading @@ -1700,7 +1700,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { break; case 'row': $form['#title'] .= $this->t('How should each row in this view be styled'); $form['#title'] .= $this->t('How should each row in this view be output'); $row_plugin_instance = $this->getPlugin('row'); $form['row'] = [ '#prefix' => '<div class="clearfix">', Loading core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php +1 −1 Original line number Diff line number Diff line Loading @@ -583,7 +583,7 @@ protected function buildFormStyle(array &$form, FormStateInterface $form_state, $options = $this->rowStyleOptions(); $style_form['row_plugin'] = [ '#type' => 'select', '#title' => $this->t('of'), '#title' => $this->t('output as'), '#options' => $options, '#access' => count($options) > 1, ]; Loading core/modules/views/src/Views.php +3 −2 Original line number Diff line number Diff line Loading @@ -159,8 +159,9 @@ public static function fetchPluginNames($type, $key = NULL, array $base = []) { } if (!empty($plugins)) { asort($plugins); return $plugins; uasort($plugins, static function ($a, $b) { return strcmp((string) $a, (string) $b); }); } return $plugins; Loading Loading
core/modules/views/src/Plugin/Derivative/ViewsEntityRow.php +1 −1 Original line number Diff line number Diff line Loading @@ -95,7 +95,7 @@ public function getDerivativeDefinitions($base_plugin_definition) { $this->derivatives[$entity_type_id] = [ 'id' => 'entity:' . $entity_type_id, 'provider' => 'views', 'title' => $entity_type->getLabel(), 'title' => $this->t('@label view mode', ['@label' => $entity_type->getLabel()]), 'help' => $this->t('Display the @label', ['@label' => $entity_type->getLabel()]), 'base' => [$entity_type->getDataTable() ?: $entity_type->getBaseTable()], 'entity_type' => $entity_type_id, Loading
core/modules/views/src/Plugin/views/display/DisplayPluginBase.php +1 −1 Original line number Diff line number Diff line Loading @@ -1700,7 +1700,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { break; case 'row': $form['#title'] .= $this->t('How should each row in this view be styled'); $form['#title'] .= $this->t('How should each row in this view be output'); $row_plugin_instance = $this->getPlugin('row'); $form['row'] = [ '#prefix' => '<div class="clearfix">', Loading
core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php +1 −1 Original line number Diff line number Diff line Loading @@ -583,7 +583,7 @@ protected function buildFormStyle(array &$form, FormStateInterface $form_state, $options = $this->rowStyleOptions(); $style_form['row_plugin'] = [ '#type' => 'select', '#title' => $this->t('of'), '#title' => $this->t('output as'), '#options' => $options, '#access' => count($options) > 1, ]; Loading
core/modules/views/src/Views.php +3 −2 Original line number Diff line number Diff line Loading @@ -159,8 +159,9 @@ public static function fetchPluginNames($type, $key = NULL, array $base = []) { } if (!empty($plugins)) { asort($plugins); return $plugins; uasort($plugins, static function ($a, $b) { return strcmp((string) $a, (string) $b); }); } return $plugins; Loading