You are here

PlanTypeBase.php in farmOS 2.x

File

modules/core/entity/src/Plugin/Plan/PlanType/PlanTypeBase.php
View source
<?php

namespace Drupal\farm_entity\Plugin\Plan\PlanType;

use Drupal\farm_entity\FarmEntityTypeBase;

/**
 * Provides the base plan type class.
 */
abstract class PlanTypeBase extends FarmEntityTypeBase implements PlanTypeInterface {

  /**
   * {@inheritdoc}
   */
  public function getLabel() {
    return $this->pluginDefinition['label'];
  }

  /**
   * {@inheritdoc}
   */
  public function getWorkflowId() {
    return $this->pluginDefinition['workflow'];
  }

  /**
   * {@inheritdoc}
   */
  public function buildFieldDefinitions() {
    return [];
  }

}

Classes

Namesort descending Description
PlanTypeBase Provides the base plan type class.