You are here

public function ConfigStorage::getSavedProgress in Checklist API 8

Gets the saved checklist progress.

Return value

mixed The stored value, or NULL if no value exists.

Overrides StorageInterface::getSavedProgress

File

src/Storage/ConfigStorage.php, line 44

Class

ConfigStorage
Provides config-based checklist progress storage.

Namespace

Drupal\checklistapi\Storage

Code

public function getSavedProgress() {
  return $this
    ->getConfig()
    ->get(self::CONFIG_KEY);
}