require_once('object/Conversation.php');
require_once('object/Item.php');
- $conv = new Conversation($mode);
+ $conv = new Conversation($mode, $preview);
// get all the topmost parents
// this shouldn't be needed, as we should have only them in our array
private $mode = null;
private $writable = false;
private $profile_owner = 0;
+ private $preview = false;
- public function __construct($mode) {
+ public function __construct($mode, $preview) {
$this->set_mode($mode);
+ $this->preview = $preview;
}
/**
return $this->writable;
}
+ /**
+ * Check if page is a preview
+ */
+ public function is_preview() {
+ return $this->preview;
+ }
+
/**
* Get profile owner
*/
'like' => $like,
'dislike' => $dislike,
'comment' => $this->get_comment_box($indent),
- 'previewing' => $previewing,
+ 'previewing' => ($conv->is_preview() ? ' preview ' : ''),
'wait' => t('Please wait'),
'thread_level' => $thread_level
);