ObserverInterface.php in Changed Fields API 8.2
Same filename and directory in other branches
Contains SubjectInterface.php.
Namespace
Drupal\changed_fieldsFile
src/ObserverInterface.phpView source
<?php
/**
* @file
* Contains SubjectInterface.php.
*/
namespace Drupal\changed_fields;
use SplObserver;
/**
* Interface ObserverInterface.
*/
interface ObserverInterface extends SplObserver {
/**
* Returns associative array of node types with their fields for watching.
*
* @return array
*/
public function getInfo();
}
Interfaces
Name | Description |
---|---|
ObserverInterface | Interface ObserverInterface. |