diff options
author | friendica <info@friendica.com> | 2014-11-16 20:23:22 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-16 20:23:22 -0800 |
commit | b3383a2547846e14c79cf59a3a0a0b1939e2aa71 (patch) | |
tree | 61c1fa2a0d675b585c15160607ee2d2afb7309f3 /include/ItemObject.php | |
parent | acc8c692421581c2516bbe5d91d86ad2f3f12c27 (diff) | |
download | volse-hubzilla-b3383a2547846e14c79cf59a3a0a0b1939e2aa71.tar.gz volse-hubzilla-b3383a2547846e14c79cf59a3a0a0b1939e2aa71.tar.bz2 volse-hubzilla-b3383a2547846e14c79cf59a3a0a0b1939e2aa71.zip |
speed things up a wee bit
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r-- | include/ItemObject.php | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index ee7676bd4..4aa6857c1 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -28,6 +28,7 @@ class Item extends BaseObject { private $threaded = false; private $visiting = false; private $channel = null; + private $display_mode = 'normal'; public function __construct($data) { @@ -226,9 +227,10 @@ class Item extends BaseObject { if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) $indent .= ' shiny'; - localize_item($item); + localize_item($item); $body = prepare_body($item,true); + $comment_count_txt = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); $children = $this->get_children(); @@ -316,7 +318,8 @@ class Item extends BaseObject { $result['children'] = array(); $nb_children = count($children); - if($nb_children > 0) { + + if(($this->get_display_mode() === 'normal') && ($nb_children > 0)) { foreach($children as $child) { $result['children'][] = $child->get_template_data($alike, $dlike, $thread_level + 1); } @@ -353,6 +356,14 @@ class Item extends BaseObject { return $this->get_data_value('id'); } + public function get_display_mode() { + return $this->display_mode; + } + + public function set_display_mode($mode) { + $this->display_mode = $mode; + } + public function is_threaded() { return $this->threaded; } |