1 config.inc public ConfigFileStorage::getModifiedTime($name)

Returns a timestamp indicating the last time a configuration was modified.

Parameters

string $name: The name of a configuration object on which the time will be checked.

Return value

int: A timestamp indicating the last time the configuration was modified.

Overrides ConfigStorageInterface::getModifiedTime

File

core/includes/config.inc, line 1408
This is the API for configuration storage.

Class

ConfigFileStorage
Defines the file storage controller.

Code

public function getModifiedTime($name) {
  return filectime($this->getFilePath($name));
}