You are here

protected function WebformHelpManager::isUpdated in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/WebformHelpManager.php \Drupal\webform\WebformHelpManager::isUpdated()

Determine if the Webform module has been updated.

Return value

bool TRUE if the Webform module has been updated.

1 call to WebformHelpManager::isUpdated()
WebformHelpManager::initHelp in src/WebformHelpManager.php
Initialize help.

File

src/WebformHelpManager.php, line 791

Class

WebformHelpManager
Webform help manager.

Namespace

Drupal\webform

Code

protected function isUpdated() {
  return $this
    ->getVersion() !== $this->state
    ->get('webform.version') ? TRUE : FALSE;
}