Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
novicell/dds / modules / dds_maps / src / Entity / MapInterface.php
Size: Mime:
<?php

namespace Drupal\dds_maps\Entity;

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

/**
 * Provides an interface for defining Map entities.
 *
 * @ingroup dds_maps
 */
interface MapInterface extends  ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {

  // Add get/set methods for your configuration properties here.

  /**
   * Gets the Map name.
   *
   * @return string
   *   Name of the Map.
   */
  public function getName();

  /**
   * Sets the Map name.
   *
   * @param string $name
   *   The Map name.
   *
   * @return \Drupal\dds_maps\Entity\MapInterface
   *   The called Map entity.
   */
  public function setName($name);

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

  /**
   * Sets the Map creation timestamp.
   *
   * @param int $timestamp
   *   The Map creation timestamp.
   *
   * @return \Drupal\dds_maps\Entity\MapInterface
   *   The called Map entity.
   */
  public function setCreatedTime($timestamp);

  /**
   * Returns the Map published status indicator.
   *
   * Unpublished Map are only visible to restricted users.
   *
   * @return bool
   *   TRUE if the Map is published.
   */
  public function isPublished();

  /**
   * Sets the published status of a Map.
   *
   * @param bool $published
   *   TRUE to set this Map to published, FALSE to set it to unpublished.
   *
   * @return \Drupal\dds_maps\Entity\MapInterface
   *   The called Map entity.
   */
  public function setPublished($published);

}