NetworkInterface.php in Social API 8.2
Same filename and directory in other branches
Namespace
Drupal\social_api\PluginFile
src/Plugin/NetworkInterface.phpView source
<?php
namespace Drupal\social_api\Plugin;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
/**
* Defines an interface for Social Network plugins.
*/
interface NetworkInterface extends PluginInspectionInterface, ContainerFactoryPluginInterface {
/**
* Gets the underlying SDK library.
*
* @return mixed
* The SDK client.
*/
public function getSdk();
}
Interfaces
Name | Description |
---|---|
NetworkInterface | Defines an interface for Social Network plugins. |