interface UpdaterInterface in Update helper 2.x
Same name and namespace in other branches
- 8 src/UpdaterInterface.php \Drupal\update_helper\UpdaterInterface
Interface for the Update entity.
Hierarchy
- interface \Drupal\update_helper\UpdaterInterface
Expanded class hierarchy of UpdaterInterface
All classes that implement UpdaterInterface
File
- src/
UpdaterInterface.php, line 8
Namespace
Drupal\update_helperView source
interface UpdaterInterface {
/**
* Get update logger service.
*
* @return \Drupal\update_helper\UpdateLogger
* Returns update logger.
*/
public function logger();
/**
* Execute update of configuration from update definitions.
*
* @param string $module
* Module name where update definition is saved.
* @param string $update_definition_name
* Update definition name. Usually same name as update hook.
*/
public function executeUpdate($module, $update_definition_name);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UpdaterInterface:: |
public | function | Execute update of configuration from update definitions. | 1 |
UpdaterInterface:: |
public | function | Get update logger service. | 1 |