You are here

public function HeartbeatStream::skipActiveUser in Heartbeat 7

skipActiveUser().

Return whether you want to skip the active user (being the logged-in user and NOT the displayed user) from display. Typical private will not skip this one ofcourse where most other will skip active user since you don't want to watch your own activity.

1 call to HeartbeatStream::skipActiveUser()
HeartbeatStream::createQuery in includes/heartbeatstream.inc
createQuery().

File

includes/heartbeatstream.inc, line 241
HeartbeatStream object is the object that takes stream configuration to create a stream of activity objects. It is the controlling organ at the pre-query, query and post-query phases.

Class

HeartbeatStream
Abstract class HeartbeatStream This base class has final template methods which are used by the derived concretes. The HeartbeatStream is a state object that is given to the HeartbeatStreamBuilder to set the access to the current request.

Code

public function skipActiveUser() {
  return $this->config->skip_active_user;
}