You are here

public static function ConfigHandler::getPastDateAllowed in Node expire 7.2

Returns PastDateAllowed configuration value.

1 call to ConfigHandler::getPastDateAllowed()
AdminHookHandler::hookAdminSettings in src/Module/Hook/AdminHookHandler.php
Administrative settings.

File

src/Module/Config/ConfigHandler.php, line 65
ConfigHandler class.

Class

ConfigHandler
ConfigHandler class.

Namespace

Drupal\node_expire\Module\Config

Code

public static function getPastDateAllowed() {
  $val = variable_get('node_expire_past_date_allowed', 0);
  return $val;
}