/**
  * Open the session (used by PHP when the session handler is active)
  * @param string $save_path
  * @param string $session_name
  *
  * @return bool
  */
 public static function SessionOpen($save_path, $session_name)
 {
     self::$strSessionName = $session_name;
     // Nothing to do
     return true;
 }