You are here

QuantityInterface.php in farmOS 2.x

File

modules/core/quantity/src/Entity/QuantityInterface.php
View source
<?php

namespace Drupal\quantity\Entity;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\Core\Entity\RevisionLogInterface;
use Drupal\user\EntityOwnerInterface;

/**
 * Provides an interface for defining quantity entities.
 *
 * @ingroup quantity
 */
interface QuantityInterface extends ContentEntityInterface, EntityChangedInterface, RevisionLogInterface, EntityOwnerInterface {

  /**
   * Gets the quantity creation timestamp.
   *
   * @return int
   *   Creation timestamp of the quantity.
   */
  public function getCreatedTime();

  /**
   * Sets the quantity creation timestamp.
   *
   * @param int $timestamp
   *   Creation timestamp of the quantity.
   *
   * @return \Drupal\quantity\Entity\QuantityInterface
   *   The quantity entity.
   */
  public function setCreatedTime($timestamp);

  /**
   * Gets the label of the the quantity type.
   *
   * @return string
   *   The label of the quantity type.
   */
  public function getBundleLabel();

}

Interfaces

Namesort descending Description
QuantityInterface Provides an interface for defining quantity entities.