You are here

public function SessionProxy_Backend_Native::isWriteEnabled in Session Proxy 7

Is session write enabled.

Return value

bool

Overrides SessionProxy_Backend_Interface::isWriteEnabled

File

lib/SessionProxy/Backend/Native.php, line 19

Class

SessionProxy_Backend_Native
Native implementation of session backend: use PHP native session handling. Using it allows to use built-in extensions session handling, such as Redis or Memcache extensions features, which are known to be really fast.

Code

public function isWriteEnabled() {
  return TRUE;
}