PushInterface.php in Open Social 10.3.x
Same filename and directory in other branches
- 8.9 modules/custom/activity_send/modules/activity_send_push_notification/src/PushInterface.php
- 8.7 modules/custom/activity_send/modules/activity_send_push_notification/src/PushInterface.php
- 8.8 modules/custom/activity_send/modules/activity_send_push_notification/src/PushInterface.php
- 10.0.x modules/custom/activity_send/modules/activity_send_push_notification/src/PushInterface.php
- 10.1.x modules/custom/activity_send/modules/activity_send_push_notification/src/PushInterface.php
- 10.2.x modules/custom/activity_send/modules/activity_send_push_notification/src/PushInterface.php
Namespace
Drupal\activity_send_push_notificationFile
modules/custom/activity_send/modules/activity_send_push_notification/src/PushInterface.phpView source
<?php
namespace Drupal\activity_send_push_notification;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
/**
* Interface PushInterface.
*
* @package Drupal\activity_send_push_notification
*/
interface PushInterface extends ContainerFactoryPluginInterface {
/**
* Check access.
*
* @return bool
* TRUE if it should be shown.
*/
public function access();
/**
* Build form elements.
*
* @return array
* The form elements.
*/
public function buildForm();
/**
* Save plugin settings.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The form state.
*/
public function submitForm(FormStateInterface $form_state);
}
Interfaces
Name | Description |
---|---|
PushInterface | Interface PushInterface. |