interface CFObserverInterface in Changed Fields API 7.2
Same name and namespace in other branches
- 7.3 src/CFObserverInterface.php \CFObserverInterface
Interface CFObserverInterface.
Hierarchy
- interface \CFObserverInterface
Expanded class hierarchy of CFObserverInterface
All classes that implement CFObserverInterface
File
- includes/
changed_fields.core.inc, line 49 - File contains core classes and interfaces.
View source
interface CFObserverInterface {
/**
* Update method with info about event.
*
* It is called by CFNodeSubject when node fields have been changed.
*
* @param CFSubjectInterface $nodeSubject
* Node subject object.
*/
public function update(CFSubjectInterface $nodeSubject);
/**
* Method to get observer id.
*/
public function getId();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CFObserverInterface:: |
public | function | Method to get observer id. | 1 |
CFObserverInterface:: |
public | function | Update method with info about event. | 1 |