You are here

class InvoiceType in Commerce Invoice 8.2

Defines the invoice type entity class.

Plugin annotation


@ConfigEntityType(
  id = "commerce_invoice_type",
  label = @Translation("Invoice type"),
  label_collection = @Translation("Invoice types"),
  label_singular = @Translation("invoice type"),
  label_plural = @Translation("invoice types"),
  label_count = @PluralTranslation(
    singular = "@count invoice type",
    plural = "@count invoice types",
  ),
  handlers = {
    "access" = "Drupal\commerce\CommerceBundleAccessControlHandler",
    "form" = {
      "add" = "Drupal\commerce_invoice\Form\InvoiceTypeForm",
      "duplicate" = "Drupal\commerce_invoice\Form\InvoiceTypeForm",
      "edit" = "Drupal\commerce_invoice\Form\InvoiceTypeForm",
      "delete" = "Drupal\commerce\Form\CommerceBundleEntityDeleteFormBase"
    },
    "local_task_provider" = {
      "default" = "Drupal\entity\Menu\DefaultEntityLocalTaskProvider",
    },
    "route_provider" = {
      "default" = "Drupal\entity\Routing\DefaultHtmlRouteProvider",
    },
    "list_builder" = "Drupal\commerce_invoice\InvoiceTypeListBuilder",
  },
  admin_permission = "administer commerce_invoice_type",
  config_prefix = "commerce_invoice_type",
  bundle_of = "commerce_invoice",
  entity_keys = {
    "id" = "id",
    "label" = "label",
    "uuid" = "uuid"
  },
  config_export = {
    "label",
    "id",
    "numberPattern",
    "logo",
    "dueDays",
    "paymentTerms",
    "footerText",
    "traits",
    "workflow",
    "sendConfirmation",
    "confirmationBcc"
  },
  links = {
    "add-form" = "/admin/commerce/config/invoice-types/add",
    "edit-form" = "/admin/commerce/config/invoice-types/{commerce_invoice_type}/edit",
    "duplicate-form" = "/admin/commerce/config/invoice-types/{commerce_invoice_type}/duplicate",
    "delete-form" = "/admin/commerce/config/invoice-types/{commerce_invoice_type}/delete",
    "collection" = "/admin/commerce/config/invoice-types"
  }
)

Hierarchy

Expanded class hierarchy of InvoiceType

6 files declare their use of InvoiceType
commerce_invoice.module in ./commerce_invoice.module
Defines the Invoice entity and associated features.
InvoiceConfirmationTest.php in tests/src/Kernel/InvoiceConfirmationTest.php
InvoiceGeneratorTest.php in tests/src/Kernel/InvoiceGeneratorTest.php
InvoiceListBuilder.php in src/InvoiceListBuilder.php
InvoiceTypeTest.php in tests/src/FunctionalJavascript/InvoiceTypeTest.php

... See full list

File

src/Entity/InvoiceType.php, line 67

Namespace

Drupal\commerce_invoice\Entity
View source
class InvoiceType extends CommerceBundleEntityBase implements InvoiceTypeInterface {

  /**
   * The number pattern entity.
   *
   * @var \Drupal\commerce_number_pattern\Entity\NumberPatternInterface
   */
  protected $numberPattern;

  /**
   * UUID of the Invoice type logo file.
   *
   * @var string
   */
  protected $logo;

  /**
   * The invoice type footer text.
   *
   * @var string
   */
  protected $footerText;

  /**
   * The invoice type due days.
   *
   * @var int
   */
  protected $dueDays;

  /**
   * The invoice type payment terms.
   *
   * @var string
   */
  protected $paymentTerms;

  /**
   * The invoice type workflow ID.
   *
   * @var string
   */
  protected $workflow;

  /**
   * Whether to email the customer a confirmation when an invoice is generated.
   *
   * @var bool
   */
  protected $sendConfirmation;

  /**
   * The confirmation BCC email.
   *
   * @var bool
   */
  protected $confirmationBcc;

  /**
   * {@inheritdoc}
   */
  public function getNumberPattern() {
    if ($this
      ->getNumberPatternId()) {
      return NumberPattern::load($this
        ->getNumberPatternId());
    }
  }

  /**
   * {@inheritdoc}
   */
  public function getNumberPatternId() {
    return $this->numberPattern;
  }

  /**
   * {@inheritdoc}
   */
  public function setNumberPatternId($number_pattern) {
    $this->numberPattern = $number_pattern;
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getLogoFile() {
    if ($this->logo) {

      /** @var \Drupal\Core\Entity\EntityRepositoryInterface $entity_repository */
      $entity_repository = \Drupal::service('entity.repository');
      return $entity_repository
        ->loadEntityByUuid('file', $this->logo);
    }
    return NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function getLogoUrl() {
    if ($image = $this
      ->getLogoFile()) {
      return file_create_url($image
        ->getFileUri());
    }
    return NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function setLogo($uuid) {
    $this->logo = $uuid;
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getDueDays() {
    return $this->dueDays;
  }

  /**
   * {@inheritdoc}
   */
  public function setDueDays($days) {
    $this->dueDays = $days;
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getPaymentTerms() {
    return $this->paymentTerms;
  }

  /**
   * {@inheritdoc}
   */
  public function setPaymentTerms($payment_terms) {
    $this->paymentTerms = $payment_terms;
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getFooterText() {
    return $this->footerText;
  }

  /**
   * {@inheritdoc}
   */
  public function setFooterText($footer_text) {
    $this->footerText = $footer_text;
    return $this;
  }

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

  /**
   * {@inheritdoc}
   */
  public function setWorkflowId($workflow_id) {
    $this->workflow = $workflow_id;
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function shouldSendConfirmation() {
    return $this->sendConfirmation;
  }

  /**
   * {@inheritdoc}
   */
  public function setSendConfirmation($send_confirmation) {
    $this->sendConfirmation = (bool) $send_confirmation;
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getConfirmationBcc() {
    return $this->confirmationBcc;
  }

  /**
   * {@inheritdoc}
   */
  public function setConfirmationBcc($confirmation_bcc) {
    $this->confirmationBcc = $confirmation_bcc;
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function calculateDependencies() {
    parent::calculateDependencies();

    // The invoice type must depend on the module that provides the workflow.
    $workflow_manager = \Drupal::service('plugin.manager.workflow');
    $workflow = $workflow_manager
      ->createInstance($this
      ->getWorkflowId());
    $this
      ->calculatePluginDependencies($workflow);

    // Add the logo entity as dependency if a UUID was specified.
    if ($this->logo && ($file = $this
      ->getLogoFile())) {
      $this
        ->addDependency($file
        ->getConfigDependencyKey(), $file
        ->getConfigDependencyName());
    }
    return $this;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CacheableDependencyTrait::$cacheContexts protected property Cache contexts.
CacheableDependencyTrait::$cacheMaxAge protected property Cache max-age.
CacheableDependencyTrait::$cacheTags protected property Cache tags.
CacheableDependencyTrait::setCacheability protected function Sets cacheability; useful for value object constructors.
CommerceBundleEntityBase::$id protected property The bundle ID.
CommerceBundleEntityBase::$label protected property The bundle label.
CommerceBundleEntityBase::$locked protected property Whether the bundle is locked, indicating that it cannot be deleted.
CommerceBundleEntityBase::$traits protected property The bundle traits.
CommerceBundleEntityBase::getTraits public function Gets the traits. Overrides CommerceBundleEntityInterface::getTraits
CommerceBundleEntityBase::hasTrait public function Gets whether the bundle has the given trait. Overrides CommerceBundleEntityInterface::hasTrait
CommerceBundleEntityBase::isLocked public function Gets whether the bundle is locked. Overrides CommerceBundleEntityInterface::isLocked
CommerceBundleEntityBase::lock public function Locks the bundle. Overrides CommerceBundleEntityInterface::lock
CommerceBundleEntityBase::setTraits public function Sets the traits. Overrides CommerceBundleEntityInterface::setTraits
CommerceBundleEntityBase::unlock public function Unlocks the bundle. Overrides CommerceBundleEntityInterface::unlock
ConfigEntityBase::$isUninstalling private property Whether the config is being deleted by the uninstall process.
ConfigEntityBase::$langcode protected property The language code of the entity's default language.
ConfigEntityBase::$originalId protected property The original ID of the configuration entity.
ConfigEntityBase::$status protected property The enabled/disabled status of the configuration entity. 4
ConfigEntityBase::$third_party_settings protected property Third party entity settings.
ConfigEntityBase::$trustedData protected property Trust supplied data and not use configuration schema on save.
ConfigEntityBase::$uuid protected property The UUID for this entity.
ConfigEntityBase::$_core protected property Information maintained by Drupal core about configuration.
ConfigEntityBase::addDependency protected function Overrides \Drupal\Core\Entity\DependencyTrait:addDependency().
ConfigEntityBase::createDuplicate public function Creates a duplicate of the entity. Overrides EntityBase::createDuplicate 1
ConfigEntityBase::disable public function Disables the configuration entity. Overrides ConfigEntityInterface::disable 1
ConfigEntityBase::enable public function Enables the configuration entity. Overrides ConfigEntityInterface::enable
ConfigEntityBase::get public function Returns the value of a property. Overrides ConfigEntityInterface::get
ConfigEntityBase::getCacheTagsToInvalidate public function Returns the cache tags that should be used to invalidate caches. Overrides EntityBase::getCacheTagsToInvalidate 1
ConfigEntityBase::getConfigDependencyName public function Gets the configuration dependency name. Overrides EntityBase::getConfigDependencyName
ConfigEntityBase::getConfigManager protected static function Gets the configuration manager.
ConfigEntityBase::getConfigTarget public function Gets the configuration target identifier for the entity. Overrides EntityBase::getConfigTarget
ConfigEntityBase::getDependencies public function Gets the configuration dependencies. Overrides ConfigEntityInterface::getDependencies
ConfigEntityBase::getOriginalId public function Gets the original ID. Overrides EntityBase::getOriginalId
ConfigEntityBase::getThirdPartyProviders public function Gets the list of third parties that store information. Overrides ThirdPartySettingsInterface::getThirdPartyProviders
ConfigEntityBase::getThirdPartySetting public function Gets the value of a third-party setting. Overrides ThirdPartySettingsInterface::getThirdPartySetting
ConfigEntityBase::getThirdPartySettings public function Gets all third-party settings of a given module. Overrides ThirdPartySettingsInterface::getThirdPartySettings
ConfigEntityBase::getTypedConfig protected function Gets the typed config manager.
ConfigEntityBase::hasTrustedData public function Gets whether on not the data is trusted. Overrides ConfigEntityInterface::hasTrustedData
ConfigEntityBase::invalidateTagsOnDelete protected static function Override to never invalidate the individual entities' cache tags; the config system already invalidates them. Overrides EntityBase::invalidateTagsOnDelete
ConfigEntityBase::invalidateTagsOnSave protected function Override to never invalidate the entity's cache tag; the config system already invalidates it. Overrides EntityBase::invalidateTagsOnSave
ConfigEntityBase::isInstallable public function Checks whether this entity is installable. Overrides ConfigEntityInterface::isInstallable 2
ConfigEntityBase::isNew public function Overrides Entity::isNew(). Overrides EntityBase::isNew
ConfigEntityBase::isUninstalling public function Returns whether this entity is being changed during the uninstall process. Overrides ConfigEntityInterface::isUninstalling
ConfigEntityBase::link public function Deprecated way of generating a link to the entity. See toLink(). Overrides EntityBase::link
ConfigEntityBase::onDependencyRemoval public function Informs the entity that entities it depends on will be deleted. Overrides ConfigEntityInterface::onDependencyRemoval 7
ConfigEntityBase::preDelete public static function Acts on entities before they are deleted and before hooks are invoked. Overrides EntityBase::preDelete 8
ConfigEntityBase::save public function Saves an entity permanently. Overrides EntityBase::save 1
ConfigEntityBase::set public function Sets the value of a property. Overrides ConfigEntityInterface::set
ConfigEntityBase::setOriginalId public function Sets the original ID. Overrides EntityBase::setOriginalId
ConfigEntityBase::setStatus public function Sets the status of the configuration entity. Overrides ConfigEntityInterface::setStatus
ConfigEntityBase::setThirdPartySetting public function Sets the value of a third-party setting. Overrides ThirdPartySettingsInterface::setThirdPartySetting
ConfigEntityBase::setUninstalling public function
ConfigEntityBase::sort public static function Helper callback for uasort() to sort configuration entities by weight and label. 6
ConfigEntityBase::status public function Returns whether the configuration entity is enabled. Overrides ConfigEntityInterface::status 4
ConfigEntityBase::toArray public function Gets an array of all property values. Overrides EntityBase::toArray 2
ConfigEntityBase::toUrl public function Gets the URL object for the entity. Overrides EntityBase::toUrl
ConfigEntityBase::trustData public function Sets that the data should be trusted. Overrides ConfigEntityInterface::trustData
ConfigEntityBase::unsetThirdPartySetting public function Unsets a third-party setting. Overrides ThirdPartySettingsInterface::unsetThirdPartySetting
ConfigEntityBase::url public function Gets the public URL for this entity. Overrides EntityBase::url
ConfigEntityBase::urlInfo public function Gets the URL object for the entity. Overrides EntityBase::urlInfo
ConfigEntityBase::__construct public function Constructs an Entity object. Overrides EntityBase::__construct 10
ConfigEntityBase::__sleep public function Overrides EntityBase::__sleep 4
ConfigEntityBundleBase::deleteDisplays protected function Deletes display if a bundle is deleted.
ConfigEntityBundleBase::loadDisplays protected function Returns view or form displays for this bundle.
ConfigEntityBundleBase::postDelete public static function Acts on deleted entities before the delete hook is invoked. Overrides EntityBase::postDelete 2
ConfigEntityBundleBase::postSave public function Acts on a saved entity before the insert or update hook is invoked. Overrides EntityBase::postSave 2
ConfigEntityBundleBase::preSave public function Acts on an entity before the presave hook is invoked. Overrides ConfigEntityBase::preSave
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function Aliased as: traitSleep 1
DependencySerializationTrait::__wakeup public function 2
DependencyTrait::$dependencies protected property The object's dependencies.
DependencyTrait::addDependencies protected function Adds multiple dependencies.
DependencyTrait::addDependency protected function Adds a dependency. Aliased as: addDependencyTrait
EntityBase::$enforceIsNew protected property Boolean indicating whether the entity should be forced to be new.
EntityBase::$entityTypeId protected property The entity type.
EntityBase::$typedData protected property A typed data object wrapping this entity.
EntityBase::access public function Checks data value access. Overrides AccessibleInterface::access 1
EntityBase::bundle public function Gets the bundle of the entity. Overrides EntityInterface::bundle 1
EntityBase::create public static function Constructs a new entity object, without permanently saving it. Overrides EntityInterface::create
EntityBase::delete public function Deletes an entity permanently. Overrides EntityInterface::delete 2
EntityBase::enforceIsNew public function Enforces an entity to be new. Overrides EntityInterface::enforceIsNew
EntityBase::entityManager Deprecated protected function Gets the entity manager.
EntityBase::entityTypeBundleInfo protected function Gets the entity type bundle info service.
EntityBase::entityTypeManager protected function Gets the entity type manager.
EntityBase::getCacheContexts public function The cache contexts associated with this object. Overrides CacheableDependencyTrait::getCacheContexts
EntityBase::getCacheMaxAge public function The maximum age for which this object may be cached. Overrides CacheableDependencyTrait::getCacheMaxAge
EntityBase::getCacheTags public function The cache tags associated with this object. Overrides CacheableDependencyTrait::getCacheTags
EntityBase::getConfigDependencyKey public function Gets the key that is used to store configuration dependencies. Overrides EntityInterface::getConfigDependencyKey
EntityBase::getEntityType public function Gets the entity type definition. Overrides EntityInterface::getEntityType
EntityBase::getEntityTypeId public function Gets the ID of the type of the entity. Overrides EntityInterface::getEntityTypeId
EntityBase::getListCacheTagsToInvalidate protected function The list cache tags to invalidate for this entity.
EntityBase::getTypedData public function Gets a typed data object for this entity object. Overrides EntityInterface::getTypedData
EntityBase::hasLinkTemplate public function Indicates if a link template exists for a given key. Overrides EntityInterface::hasLinkTemplate
EntityBase::id public function Gets the identifier. Overrides EntityInterface::id 11
EntityBase::label public function Gets the label of the entity. Overrides EntityInterface::label 6
EntityBase::language public function Gets the language of the entity. Overrides EntityInterface::language 1
EntityBase::languageManager protected function Gets the language manager.
EntityBase::linkTemplates protected function Gets an array link templates. 1
EntityBase::load public static function Loads an entity. Overrides EntityInterface::load
EntityBase::loadMultiple public static function Loads one or more entities. Overrides EntityInterface::loadMultiple
EntityBase::postCreate public function Acts on a created entity before hooks are invoked. Overrides EntityInterface::postCreate 4
EntityBase::postLoad public static function Acts on loaded entities. Overrides EntityInterface::postLoad 2
EntityBase::preCreate public static function Changes the values of an entity before it is created. Overrides EntityInterface::preCreate 5
EntityBase::referencedEntities public function Gets a list of entities referenced by this entity. Overrides EntityInterface::referencedEntities 1
EntityBase::toLink public function Generates the HTML for a link to this entity. Overrides EntityInterface::toLink
EntityBase::uriRelationships public function Gets a list of URI relationships supported by this entity. Overrides EntityInterface::uriRelationships
EntityBase::urlRouteParameters protected function Gets an array of placeholders for this entity. 2
EntityBase::uuid public function Gets the entity UUID (Universally Unique Identifier). Overrides EntityInterface::uuid 1
EntityBase::uuidGenerator protected function Gets the UUID generator.
InvoiceType::$confirmationBcc protected property The confirmation BCC email.
InvoiceType::$dueDays protected property The invoice type due days.
InvoiceType::$footerText protected property The invoice type footer text.
InvoiceType::$logo protected property UUID of the Invoice type logo file.
InvoiceType::$numberPattern protected property The number pattern entity.
InvoiceType::$paymentTerms protected property The invoice type payment terms.
InvoiceType::$sendConfirmation protected property Whether to email the customer a confirmation when an invoice is generated.
InvoiceType::$workflow protected property The invoice type workflow ID.
InvoiceType::calculateDependencies public function Calculates dependencies and stores them in the dependency property. Overrides ConfigEntityBase::calculateDependencies
InvoiceType::getConfirmationBcc public function Gets the confirmation BCC email. Overrides InvoiceTypeInterface::getConfirmationBcc
InvoiceType::getDueDays public function Gets the invoice type due days. Overrides InvoiceTypeInterface::getDueDays
InvoiceType::getFooterText public function Gets the invoice type's footer text. Overrides InvoiceTypeInterface::getFooterText
InvoiceType::getLogoFile public function Gets the logo file entity. Overrides InvoiceTypeInterface::getLogoFile
InvoiceType::getLogoUrl public function Gets the logo URL. Overrides InvoiceTypeInterface::getLogoUrl
InvoiceType::getNumberPattern public function Gets the invoice type's number pattern. Overrides InvoiceTypeInterface::getNumberPattern
InvoiceType::getNumberPatternId public function Gets the invoice type's number pattern ID. Overrides InvoiceTypeInterface::getNumberPatternId
InvoiceType::getPaymentTerms public function Gets the invoice type's payment terms. Overrides InvoiceTypeInterface::getPaymentTerms
InvoiceType::getWorkflowId public function Gets the invoice type's workflow ID. Overrides InvoiceTypeInterface::getWorkflowId
InvoiceType::setConfirmationBcc public function Sets the confirmation BCC email. Overrides InvoiceTypeInterface::setConfirmationBcc
InvoiceType::setDueDays public function Sets the invoice type due days. Overrides InvoiceTypeInterface::setDueDays
InvoiceType::setFooterText public function Sets the payment terms of the invoice type. Overrides InvoiceTypeInterface::setFooterText
InvoiceType::setLogo public function Sets the logo. Overrides InvoiceTypeInterface::setLogo
InvoiceType::setNumberPatternId public function Sets the number pattern ID of the invoice type. Overrides InvoiceTypeInterface::setNumberPatternId
InvoiceType::setPaymentTerms public function Sets the payment terms of the invoice type. Overrides InvoiceTypeInterface::setPaymentTerms
InvoiceType::setSendConfirmation public function Sets whether to email the customer a confirmation when an invoice is generated. Overrides InvoiceTypeInterface::setSendConfirmation
InvoiceType::setWorkflowId public function Sets the workflow ID of the invoice type. Overrides InvoiceTypeInterface::setWorkflowId
InvoiceType::shouldSendConfirmation public function Gets whether to email the customer a confirmation when an invoice is generated. Overrides InvoiceTypeInterface::shouldSendConfirmation
PluginDependencyTrait::calculatePluginDependencies protected function Calculates and adds dependencies of a specific plugin instance. 1
PluginDependencyTrait::getPluginDependencies protected function Calculates and returns dependencies of a specific plugin instance.
PluginDependencyTrait::moduleHandler protected function Wraps the module handler. 1
PluginDependencyTrait::themeHandler protected function Wraps the theme handler. 1
RefinableCacheableDependencyTrait::addCacheableDependency public function 1
RefinableCacheableDependencyTrait::addCacheContexts public function
RefinableCacheableDependencyTrait::addCacheTags public function
RefinableCacheableDependencyTrait::mergeCacheMaxAge public function
SynchronizableEntityTrait::$isSyncing protected property Whether this entity is being created, updated or deleted through a synchronization process.
SynchronizableEntityTrait::isSyncing public function
SynchronizableEntityTrait::setSyncing public function