FieldVoteResultInterface.php in Votingapi Widgets 8
Namespace
Drupal\votingapi_widgetsFile
src/FieldVoteResultInterface.phpView source
<?php
namespace Drupal\votingapi_widgets;
/**
* Interface for field vote results plugins.
*/
interface FieldVoteResultInterface {
/**
* Get all votes for a field.
*/
public function getVotesForField($votes);
}
Interfaces
Name | Description |
---|---|
FieldVoteResultInterface | Interface for field vote results plugins. |