Skip to content

Instantly share code, notes, and snippets.

@splatio
Created January 26, 2014 13:26
Show Gist options
  • Save splatio/8632664 to your computer and use it in GitHub Desktop.
Save splatio/8632664 to your computer and use it in GitHub Desktop.
<?php
namespace Drupal\hardcopy\Plugin;
use Drupal\Component\Plugin\ConfigurablePluginInterface;
use Drupal\Core\Plugin\PluginFormInterface;
interface HardcopyFormatInterface extends ConfigurablePluginInterface, PluginFormInterface {
public function getLabel();
public function getDescription();
public function setContent(array $content);
public function getResponse();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment