Ejemplo n.º 1
0
 /**
  * Get the actively viewing users for this Thread
  * @return void
  */
 public function getViewing()
 {
     if (!empty($this->options['showViewing']) && empty($this->scriptProperties['print'])) {
         $this->setPlaceholder('readers', empty($this->scriptProperties['print']) ? $this->thread->getViewing() : '');
     }
 }
Ejemplo n.º 2
0
 /**
  * Get all the readers of this thread
  * @return void
  */
 public function getViewing()
 {
     $this->setPlaceholder('readers', $this->thread->getViewing('message'));
 }