You are here

GathercontentMappingInterface.php in GatherContent 8

File

src/GathercontentMappingInterface.php
View source
<?php

namespace Drupal\gathercontent;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for defining GatherContent Mapping entities.
 */
interface GathercontentMappingInterface extends ConfigEntityInterface {
  public function getGathercontentProjectId();
  public function getGathercontentProject();
  public function getGathercontentTemplateId();
  public function getGathercontentTemplate();
  public function getContentType();
  public function getContentTypeName();
  public function getUpdatedDrupal();
  public function getTemplate();
  public function getData();

}

Interfaces

Namesort descending Description
GathercontentMappingInterface Provides an interface for defining GatherContent Mapping entities.