You are here

public function AuthcacheNodeHistorySetting::__construct in Authenticated User Page Caching (Authcache) 7.2

Construct a new node history setting instance.

File

modules/authcache_node_history/includes/AuthcacheNodeHistorySetting.inc, line 20
Defines a personalized setting for retrieving the last time a node was seen.

Class

AuthcacheNodeHistorySetting
Personalized setting for retrieving the last time a node was seen.

Code

public function __construct($select_limit, $update_limit) {
  $this->selectLimit = $select_limit;
  $this->updateLimit = $update_limit;
}