You are here

public function NodeIsProduct::summary in Ubercart 8.4

Get the translated summary from the label annotation.

Return value

string The summary of the plugin.

Throws

\Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException Thrown if a summary was not set.

Overrides ExecutablePluginTrait::summary

File

uc_product/src/Plugin/Condition/NodeIsProduct.php, line 30

Class

NodeIsProduct
Provides a 'Node is a product' condition.

Namespace

Drupal\uc_product\Plugin\Condition

Code

public function summary() {
  return $this
    ->t('Content is product');
}