2012-08-10 17:46:39 +02:00
|
|
|
<?php
|
|
|
|
if(class_exists('Item'))
|
|
|
|
return;
|
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
require_once('object/BaseObject.php');
|
2012-08-10 17:46:39 +02:00
|
|
|
require_once('include/text.php');
|
2012-08-11 16:56:10 +02:00
|
|
|
require_once('boot.php');
|
2012-08-10 17:46:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An item
|
|
|
|
*/
|
2012-08-10 19:57:39 +02:00
|
|
|
class Item extends BaseObject {
|
2012-08-10 17:46:39 +02:00
|
|
|
private $data = array();
|
2012-08-10 19:57:39 +02:00
|
|
|
private $template = null;
|
|
|
|
private $available_templates = array(
|
|
|
|
'wall' => 'wall_thread.tpl',
|
|
|
|
'wall2wall' => 'wallwall_thread.tpl'
|
|
|
|
);
|
2012-08-12 16:02:47 +02:00
|
|
|
private $comment_box_template = 'comment_item.tpl';
|
2012-08-11 17:09:35 +02:00
|
|
|
private $toplevel = false;
|
2012-08-17 16:40:41 +02:00
|
|
|
private $writable = false;
|
2012-08-11 17:39:11 +02:00
|
|
|
private $children = array();
|
|
|
|
private $parent = null;
|
2012-08-11 18:12:35 +02:00
|
|
|
private $conversation = null;
|
2012-08-12 16:18:53 +02:00
|
|
|
private $redirect_url = null;
|
2012-08-12 17:20:38 +02:00
|
|
|
private $owner_url = '';
|
|
|
|
private $owner_photo = '';
|
|
|
|
private $owner_name = '';
|
|
|
|
private $wall_to_wall = false;
|
2012-08-23 10:54:21 +02:00
|
|
|
private $threaded = false;
|
2012-09-10 10:14:30 +02:00
|
|
|
private $visiting = false;
|
2012-08-10 17:46:39 +02:00
|
|
|
|
|
|
|
public function __construct($data) {
|
2012-08-12 16:18:53 +02:00
|
|
|
$a = $this->get_app();
|
2014-03-16 17:12:56 +01:00
|
|
|
|
2012-08-10 17:46:39 +02:00
|
|
|
$this->data = $data;
|
2012-08-11 16:56:10 +02:00
|
|
|
$this->set_template('wall');
|
2012-08-11 17:39:11 +02:00
|
|
|
$this->toplevel = ($this->get_id() == $this->get_data_value('parent'));
|
2012-09-10 10:14:30 +02:00
|
|
|
|
|
|
|
if(is_array($_SESSION['remote'])) {
|
|
|
|
foreach($_SESSION['remote'] as $visitor) {
|
|
|
|
if($visitor['cid'] == $this->get_data_value('contact-id')) {
|
|
|
|
$this->visiting = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-22 00:36:20 +02:00
|
|
|
|
2012-08-17 16:40:41 +02:00
|
|
|
$this->writable = ($this->get_data_value('writable') || $this->get_data_value('self'));
|
2012-08-11 17:39:11 +02:00
|
|
|
|
2012-08-12 16:18:53 +02:00
|
|
|
$ssl_state = ((local_user()) ? true : false);
|
|
|
|
$this->redirect_url = $a->get_baseurl($ssl_state) . '/redir/' . $this->get_data_value('cid') ;
|
|
|
|
|
2012-08-23 10:56:22 +02:00
|
|
|
if(get_config('system','thread_allow') && $a->theme_thread_allow && !$this->is_toplevel())
|
2012-08-23 10:54:21 +02:00
|
|
|
$this->threaded = true;
|
|
|
|
|
2012-08-11 17:39:11 +02:00
|
|
|
// Prepare the children
|
2012-08-12 16:26:37 +02:00
|
|
|
if(count($data['children'])) {
|
|
|
|
foreach($data['children'] as $item) {
|
2012-08-12 17:46:02 +02:00
|
|
|
/*
|
|
|
|
* Only add will be displayed
|
|
|
|
*/
|
|
|
|
if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-09-28 04:53:55 +02:00
|
|
|
if(! visible_activity($item)) {
|
2012-08-12 17:46:02 +02:00
|
|
|
continue;
|
|
|
|
}
|
2013-01-13 18:51:19 +01:00
|
|
|
$item['pagedrop'] = $data['pagedrop'];
|
2012-08-12 16:26:37 +02:00
|
|
|
$child = new Item($item);
|
|
|
|
$this->add_child($child);
|
|
|
|
}
|
2012-08-11 17:39:11 +02:00
|
|
|
}
|
2012-08-10 17:46:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get data in a form usable by a conversation template
|
|
|
|
*
|
|
|
|
* Returns:
|
2012-09-10 10:36:30 +02:00
|
|
|
* _ The data requested on success
|
|
|
|
* _ false on failure
|
2012-08-10 17:46:39 +02:00
|
|
|
*/
|
2012-08-12 16:02:47 +02:00
|
|
|
public function get_template_data($alike, $dlike, $thread_level=1) {
|
2014-08-13 00:13:13 +02:00
|
|
|
require_once("mod/proxy.php");
|
|
|
|
|
2012-08-10 17:46:39 +02:00
|
|
|
$result = array();
|
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
$a = $this->get_app();
|
|
|
|
|
|
|
|
$item = $this->get_data();
|
2013-03-03 11:47:01 +01:00
|
|
|
$edited = false;
|
|
|
|
if (strcmp($item['created'], $item['edited'])<>0) {
|
|
|
|
$edited = array(
|
|
|
|
'label' => t('This entry was edited'),
|
2013-03-03 12:02:45 +01:00
|
|
|
'date' => datetime_convert('UTC', date_default_timezone_get(), $item['edited'], 'r'),
|
2013-03-03 11:47:01 +01:00
|
|
|
'relative' => relative_date($item['edited'])
|
|
|
|
);
|
|
|
|
}
|
2012-08-10 19:57:39 +02:00
|
|
|
$commentww = '';
|
|
|
|
$sparkle = '';
|
|
|
|
$buttons = '';
|
|
|
|
$dropping = false;
|
|
|
|
$star = false;
|
2014-09-04 00:58:52 +02:00
|
|
|
$ignore = false;
|
2012-08-10 19:57:39 +02:00
|
|
|
$isstarred = "unstarred";
|
|
|
|
$indent = '';
|
2012-11-09 17:13:59 +01:00
|
|
|
$shiny = '';
|
2012-08-10 19:57:39 +02:00
|
|
|
$osparkle = '';
|
2012-08-11 17:48:07 +02:00
|
|
|
$total_children = $this->count_descendants();
|
2012-08-10 19:57:39 +02:00
|
|
|
|
2012-08-11 18:12:35 +02:00
|
|
|
$conv = $this->get_conversation();
|
|
|
|
|
2012-12-09 22:44:48 +01:00
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
$lock = ((($item['private'] == 1) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid'])
|
|
|
|
|| strlen($item['deny_cid']) || strlen($item['deny_gid']))))
|
|
|
|
? t('Private Message')
|
|
|
|
: false);
|
2012-08-11 18:12:35 +02:00
|
|
|
$shareable = ((($conv->get_profile_owner() == local_user()) && ($item['private'] != 1)) ? true : false);
|
2012-08-10 19:57:39 +02:00
|
|
|
if(local_user() && link_compare($a->contact['url'],$item['author-link']))
|
|
|
|
$edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit"));
|
|
|
|
else
|
|
|
|
$edpost = false;
|
2012-09-10 10:14:30 +02:00
|
|
|
if(($this->get_data_value('uid') == local_user()) || $this->is_visiting())
|
2012-08-10 19:57:39 +02:00
|
|
|
$dropping = true;
|
|
|
|
|
|
|
|
$drop = array(
|
|
|
|
'dropping' => $dropping,
|
2012-11-22 17:14:22 +01:00
|
|
|
'pagedrop' => ((feature_enabled($conv->get_profile_owner(),'multi_delete')) ? $item['pagedrop'] : ''),
|
2012-12-27 01:05:59 +01:00
|
|
|
'select' => t('Select'),
|
2012-08-10 19:57:39 +02:00
|
|
|
'delete' => t('Delete'),
|
|
|
|
);
|
2012-12-27 01:05:59 +01:00
|
|
|
|
2012-08-11 18:12:35 +02:00
|
|
|
$filer = (($conv->get_profile_owner() == local_user()) ? t("save to folder") : false);
|
2012-08-10 19:57:39 +02:00
|
|
|
|
|
|
|
$diff_author = ((link_compare($item['url'],$item['author-link'])) ? false : true);
|
|
|
|
$profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']);
|
|
|
|
if($item['author-link'] && (! $item['author-name']))
|
|
|
|
$profile_name = $item['author-link'];
|
|
|
|
|
|
|
|
$sp = false;
|
|
|
|
$profile_link = best_link_url($item,$sp);
|
|
|
|
if($profile_link === 'mailbox')
|
|
|
|
$profile_link = '';
|
|
|
|
if($sp)
|
|
|
|
$sparkle = ' sparkle';
|
|
|
|
else
|
2012-12-27 01:05:59 +01:00
|
|
|
$profile_link = zrl($profile_link);
|
2012-08-10 19:57:39 +02:00
|
|
|
|
|
|
|
$normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
|
|
|
|
if(($normalised != 'mailbox') && (x($a->contacts,$normalised)))
|
|
|
|
$profile_avatar = $a->contacts[$normalised]['thumb'];
|
|
|
|
else
|
2012-08-11 17:51:25 +02:00
|
|
|
$profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $a->get_cached_avatar_image($this->get_data_value('thumb')));
|
2012-08-10 19:57:39 +02:00
|
|
|
|
|
|
|
$locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
|
|
|
|
call_hooks('render_location',$locate);
|
|
|
|
$location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
|
|
|
|
|
2013-01-13 14:50:55 +01:00
|
|
|
$searchpath = $a->get_baseurl()."/search?tag=";
|
2012-08-10 19:57:39 +02:00
|
|
|
$tags=array();
|
2012-09-20 09:46:49 +02:00
|
|
|
$hashtags = array();
|
|
|
|
$mentions = array();
|
2013-01-11 01:20:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*foreach(explode(',',$item['tag']) as $tag){
|
2012-08-10 19:57:39 +02:00
|
|
|
$tag = trim($tag);
|
2012-09-20 09:46:49 +02:00
|
|
|
if ($tag!="") {
|
|
|
|
$t = bbcode($tag);
|
|
|
|
$tags[] = $t;
|
|
|
|
if($t[0] == '#')
|
|
|
|
$hashtags[] = $t;
|
|
|
|
elseif($t[0] == '@')
|
|
|
|
$mentions[] = $t;
|
|
|
|
}
|
2013-01-11 01:20:16 +01:00
|
|
|
}*/
|
2012-08-10 19:57:39 +02:00
|
|
|
|
|
|
|
$like = ((x($alike,$item['uri'])) ? format_like($alike[$item['uri']],$alike[$item['uri'] . '-l'],'like',$item['uri']) : '');
|
|
|
|
$dislike = ((x($dlike,$item['uri'])) ? format_like($dlike[$item['uri']],$dlike[$item['uri'] . '-l'],'dislike',$item['uri']) : '');
|
|
|
|
|
2012-08-12 17:20:38 +02:00
|
|
|
/*
|
|
|
|
* We should avoid doing this all the time, but it depends on the conversation mode
|
|
|
|
* And the conv mode may change when we change the conv, or it changes its mode
|
|
|
|
* Maybe we should establish a way to be notified about conversation changes
|
|
|
|
*/
|
|
|
|
$this->check_wall_to_wall();
|
2013-01-27 23:25:04 +01:00
|
|
|
|
2012-08-12 17:20:38 +02:00
|
|
|
if($this->is_wall_to_wall() && ($this->get_owner_url() == $this->get_redirect_url()))
|
|
|
|
$osparkle = ' sparkle';
|
2013-01-27 23:25:04 +01:00
|
|
|
|
2012-08-11 17:09:35 +02:00
|
|
|
if($this->is_toplevel()) {
|
2012-08-11 18:12:35 +02:00
|
|
|
if($conv->get_profile_owner() == local_user()) {
|
2012-08-10 19:57:39 +02:00
|
|
|
$isstarred = (($item['starred']) ? "starred" : "unstarred");
|
|
|
|
|
|
|
|
$star = array(
|
|
|
|
'do' => t("add star"),
|
|
|
|
'undo' => t("remove star"),
|
|
|
|
'toggle' => t("toggle star status"),
|
|
|
|
'classdo' => (($item['starred']) ? "hidden" : ""),
|
|
|
|
'classundo' => (($item['starred']) ? "" : "hidden"),
|
|
|
|
'starred' => t('starred'),
|
2012-11-22 17:14:22 +01:00
|
|
|
);
|
2014-09-04 01:27:28 +02:00
|
|
|
$r = q("SELECT `ignored` FROM `thread` WHERE `uid` = %d AND `iid` = %d LIMIT 1",
|
|
|
|
intval($item['uid']),
|
|
|
|
intval($item['id'])
|
2014-09-04 00:58:52 +02:00
|
|
|
);
|
2014-09-04 01:27:28 +02:00
|
|
|
if (count($r)) {
|
|
|
|
$ignore = array(
|
|
|
|
'do' => t("ignore thread"),
|
|
|
|
'undo' => t("unignore thread"),
|
|
|
|
'toggle' => t("toggle ignore status"),
|
|
|
|
'classdo' => (($r[0]['ignored']) ? "hidden" : ""),
|
|
|
|
'classundo' => (($r[0]['ignored']) ? "" : "hidden"),
|
|
|
|
'ignored' => t('ignored'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-11-22 17:34:50 +01:00
|
|
|
$tagger = '';
|
|
|
|
if(feature_enabled($conv->get_profile_owner(),'commtag')) {
|
|
|
|
$tagger = array(
|
|
|
|
'add' => t("add tag"),
|
|
|
|
'class' => "",
|
|
|
|
);
|
|
|
|
}
|
2012-08-10 19:57:39 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$indent = 'comment';
|
|
|
|
}
|
|
|
|
|
2012-08-17 16:40:41 +02:00
|
|
|
if($conv->is_writable()) {
|
2012-08-10 19:57:39 +02:00
|
|
|
$buttons = array(
|
|
|
|
'like' => array( t("I like this \x28toggle\x29"), t("like")),
|
2012-11-22 17:14:22 +01:00
|
|
|
'dislike' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? array( t("I don't like this \x28toggle\x29"), t("dislike")) : ''),
|
2012-08-10 19:57:39 +02:00
|
|
|
);
|
|
|
|
if ($shareable) $buttons['share'] = array( t('Share this'), t('share'));
|
|
|
|
}
|
|
|
|
|
2012-11-09 17:13:59 +01:00
|
|
|
if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0){
|
|
|
|
$shiny = 'shiny';
|
|
|
|
}
|
2012-08-10 19:57:39 +02:00
|
|
|
|
|
|
|
localize_item($item);
|
|
|
|
|
2013-03-03 23:44:50 +01:00
|
|
|
if ($item["postopts"] and !get_config("system", "suppress_language")) {
|
2013-01-09 20:54:18 +01:00
|
|
|
//$langdata = explode(";", $item["postopts"]);
|
|
|
|
//$langstr = substr($langdata[0], 5)." (".round($langdata[1]*100, 1)."%)";
|
|
|
|
$langstr = "";
|
|
|
|
if (substr($item["postopts"], 0, 5) == "lang=") {
|
|
|
|
$postopts = substr($item["postopts"], 5);
|
|
|
|
|
|
|
|
$languages = explode(":", $postopts);
|
|
|
|
|
|
|
|
if (sizeof($languages) == 1) {
|
|
|
|
$languages = array();
|
|
|
|
$languages[] = $postopts;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($languages as $language) {
|
|
|
|
$langdata = explode(";", $language);
|
|
|
|
if ($langstr != "")
|
|
|
|
$langstr .= ", ";
|
|
|
|
|
|
|
|
//$langstr .= $langdata[0]." (".round($langdata[1]*100, 1)."%)";
|
|
|
|
$langstr .= round($langdata[1]*100, 1)."% ".$langdata[0];
|
|
|
|
}
|
|
|
|
}
|
2012-12-27 01:05:59 +01:00
|
|
|
}
|
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
$body = prepare_body($item,true);
|
|
|
|
|
2012-12-27 01:05:59 +01:00
|
|
|
list($categories, $folders) = get_cats_and_terms($item);
|
2012-09-20 09:46:49 +02:00
|
|
|
|
2012-12-22 20:57:29 +01:00
|
|
|
if($a->theme['template_engine'] === 'internal') {
|
|
|
|
$body_e = template_escape($body);
|
|
|
|
$text_e = strip_tags(template_escape($body));
|
|
|
|
$name_e = template_escape($profile_name);
|
|
|
|
$title_e = template_escape($item['title']);
|
|
|
|
$location_e = template_escape($location);
|
|
|
|
$owner_name_e = template_escape($this->get_owner_name());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$body_e = $body;
|
|
|
|
$text_e = strip_tags($body);
|
|
|
|
$name_e = $profile_name;
|
|
|
|
$title_e = $item['title'];
|
|
|
|
$location_e = $location;
|
|
|
|
$owner_name_e = $this->get_owner_name();
|
|
|
|
}
|
|
|
|
|
2014-03-02 00:50:06 +01:00
|
|
|
// Disable features that aren't available in several networks
|
2014-03-09 09:26:54 +01:00
|
|
|
if (($item["item_network"] != "dfrn") AND isset($buttons["dislike"])) {
|
2014-03-02 00:50:06 +01:00
|
|
|
unset($buttons["dislike"]);
|
|
|
|
$tagger = '';
|
|
|
|
}
|
|
|
|
|
2014-03-09 09:26:54 +01:00
|
|
|
if (($item["item_network"] == "feed") AND isset($buttons["like"]))
|
2014-03-02 00:50:06 +01:00
|
|
|
unset($buttons["like"]);
|
|
|
|
|
2014-03-09 09:26:54 +01:00
|
|
|
if (($item["item_network"] == "mail") AND isset($buttons["like"]))
|
2014-03-02 00:50:06 +01:00
|
|
|
unset($buttons["like"]);
|
|
|
|
|
2014-03-09 09:26:54 +01:00
|
|
|
if (($item["item_network"] == "dspr") AND ($indent == 'comment') AND isset($buttons["like"]))
|
2014-03-02 00:50:06 +01:00
|
|
|
unset($buttons["like"]);
|
|
|
|
|
|
|
|
// Facebook can like comments - but it isn't programmed in the connector yet.
|
2014-03-09 09:26:54 +01:00
|
|
|
if (($item["item_network"] == "face") AND ($indent == 'comment') AND isset($buttons["like"]))
|
2014-03-02 00:50:06 +01:00
|
|
|
unset($buttons["like"]);
|
|
|
|
|
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
$tmp_item = array(
|
2012-08-11 16:56:10 +02:00
|
|
|
'template' => $this->get_template(),
|
2012-12-27 01:05:59 +01:00
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
'type' => implode("",array_slice(explode("/",$item['verb']),-1)),
|
2013-06-26 13:02:04 +02:00
|
|
|
'tags' => $item['tags'],
|
|
|
|
'hashtags' => $item['hashtags'],
|
|
|
|
'mentions' => $item['mentions'],
|
2012-09-24 04:22:48 +02:00
|
|
|
'txt_cats' => t('Categories:'),
|
|
|
|
'txt_folders' => t('Filed under:'),
|
|
|
|
'has_cats' => ((count($categories)) ? 'true' : ''),
|
|
|
|
'has_folders' => ((count($folders)) ? 'true' : ''),
|
2013-01-27 23:25:04 +01:00
|
|
|
'categories' => $categories,
|
|
|
|
'folders' => $folders,
|
2012-12-22 20:57:29 +01:00
|
|
|
'body' => $body_e,
|
|
|
|
'text' => $text_e,
|
2012-08-12 16:18:53 +02:00
|
|
|
'id' => $this->get_id(),
|
2014-07-22 00:36:20 +02:00
|
|
|
'guid' => $item['guid'],
|
2012-08-10 19:57:39 +02:00
|
|
|
'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
|
2012-08-12 17:20:38 +02:00
|
|
|
'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
|
2012-08-10 19:57:39 +02:00
|
|
|
'to' => t('to'),
|
2012-11-15 08:18:25 +01:00
|
|
|
'via' => t('via'),
|
2012-08-10 19:57:39 +02:00
|
|
|
'wall' => t('Wall-to-Wall'),
|
|
|
|
'vwall' => t('via Wall-To-Wall:'),
|
|
|
|
'profile_url' => $profile_link,
|
|
|
|
'item_photo_menu' => item_photo_menu($item),
|
2012-12-22 20:57:29 +01:00
|
|
|
'name' => $name_e,
|
2014-08-13 00:13:13 +02:00
|
|
|
'thumb' => proxy_url($profile_avatar),
|
2012-08-10 19:57:39 +02:00
|
|
|
'osparkle' => $osparkle,
|
|
|
|
'sparkle' => $sparkle,
|
2012-12-22 20:57:29 +01:00
|
|
|
'title' => $title_e,
|
2012-08-23 10:54:21 +02:00
|
|
|
'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'),
|
2012-08-10 19:57:39 +02:00
|
|
|
'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])),
|
2014-02-02 09:57:31 +01:00
|
|
|
'app' => $item['app'],
|
|
|
|
'created' => relative_date($item['created']),
|
2012-08-10 19:57:39 +02:00
|
|
|
'lock' => $lock,
|
2012-12-22 20:57:29 +01:00
|
|
|
'location' => $location_e,
|
2012-08-10 19:57:39 +02:00
|
|
|
'indent' => $indent,
|
2012-11-09 17:13:59 +01:00
|
|
|
'shiny' => $shiny,
|
2012-08-12 17:20:38 +02:00
|
|
|
'owner_url' => $this->get_owner_url(),
|
2014-08-13 00:13:13 +02:00
|
|
|
'owner_photo' => proxy_url($this->get_owner_photo()),
|
2012-12-22 20:57:29 +01:00
|
|
|
'owner_name' => $owner_name_e,
|
2012-08-10 19:57:39 +02:00
|
|
|
'plink' => get_plink($item),
|
2012-11-22 17:14:22 +01:00
|
|
|
'edpost' => ((feature_enabled($conv->get_profile_owner(),'edit_posts')) ? $edpost : ''),
|
2012-08-10 19:57:39 +02:00
|
|
|
'isstarred' => $isstarred,
|
2012-11-22 17:14:22 +01:00
|
|
|
'star' => ((feature_enabled($conv->get_profile_owner(),'star_posts')) ? $star : ''),
|
2014-09-04 01:27:28 +02:00
|
|
|
'ignore' => ((feature_enabled($conv->get_profile_owner(),'ignore_posts')) ? $ignore : ''),
|
2012-11-22 17:14:22 +01:00
|
|
|
'tagger' => $tagger,
|
|
|
|
'filer' => ((feature_enabled($conv->get_profile_owner(),'filing')) ? $filer : ''),
|
2012-08-10 19:57:39 +02:00
|
|
|
'drop' => $drop,
|
|
|
|
'vote' => $buttons,
|
|
|
|
'like' => $like,
|
2013-03-03 11:47:01 +01:00
|
|
|
'dislike' => $dislike,
|
2012-11-09 01:19:24 +01:00
|
|
|
'switchcomment' => t('Comment'),
|
2012-08-18 17:49:07 +02:00
|
|
|
'comment' => $this->get_comment_box($indent),
|
2012-09-10 09:50:30 +02:00
|
|
|
'previewing' => ($conv->is_preview() ? ' preview ' : ''),
|
2012-08-10 19:57:39 +02:00
|
|
|
'wait' => t('Please wait'),
|
2012-12-27 01:05:59 +01:00
|
|
|
'thread_level' => $thread_level,
|
2013-03-03 11:47:01 +01:00
|
|
|
'postopts' => $langstr,
|
2013-12-27 01:58:21 +01:00
|
|
|
'edited' => $edited,
|
|
|
|
'network' => $item["item_network"],
|
|
|
|
'network_name' => network_to_name($item['item_network']),
|
2012-08-10 19:57:39 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$arr = array('item' => $item, 'output' => $tmp_item);
|
|
|
|
call_hooks('display_item', $arr);
|
|
|
|
|
2012-08-12 16:32:02 +02:00
|
|
|
$result = $arr['output'];
|
2012-08-10 19:57:39 +02:00
|
|
|
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['children'] = array();
|
2012-08-11 19:58:57 +02:00
|
|
|
$children = $this->get_children();
|
|
|
|
$nb_children = count($children);
|
|
|
|
if($nb_children > 0) {
|
2012-08-12 17:34:02 +02:00
|
|
|
foreach($children as $child) {
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['children'][] = $child->get_template_data($alike, $dlike, $thread_level + 1);
|
2012-08-11 19:58:57 +02:00
|
|
|
}
|
|
|
|
// Collapse
|
|
|
|
if(($nb_children > 2) || ($thread_level > 1)) {
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['children'][0]['comment_firstcollapsed'] = true;
|
|
|
|
$result['children'][0]['num_comments'] = sprintf( tt('%d comment','%d comments',$total_children),$total_children );
|
2012-09-20 05:31:26 +02:00
|
|
|
$result['children'][0]['hidden_comments_num'] = $total_children;
|
|
|
|
$result['children'][0]['hidden_comments_text'] = tt('comment', 'comments', $total_children);
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['children'][0]['hide_text'] = t('show more');
|
2012-08-11 19:58:57 +02:00
|
|
|
if($thread_level > 1) {
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
|
2012-08-11 19:58:57 +02:00
|
|
|
}
|
|
|
|
else {
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['children'][$nb_children - 3]['comment_lastcollapsed'] = true;
|
2012-08-11 19:58:57 +02:00
|
|
|
}
|
|
|
|
}
|
2012-08-10 19:57:39 +02:00
|
|
|
}
|
2013-01-27 23:25:04 +01:00
|
|
|
|
2012-09-20 09:46:49 +02:00
|
|
|
if ($this->is_toplevel()) {
|
2012-09-28 16:03:03 +02:00
|
|
|
$result['total_comments_num'] = "$total_children";
|
2012-09-20 09:46:49 +02:00
|
|
|
$result['total_comments_text'] = tt('comment', 'comments', $total_children);
|
|
|
|
}
|
2013-01-27 23:25:04 +01:00
|
|
|
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['private'] = $item['private'];
|
|
|
|
$result['toplevel'] = ($this->is_toplevel() ? 'toplevel_item' : '');
|
2012-08-10 19:57:39 +02:00
|
|
|
|
2012-08-23 10:54:21 +02:00
|
|
|
if($this->is_threaded()) {
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['flatten'] = false;
|
|
|
|
$result['threaded'] = true;
|
2012-08-10 19:57:39 +02:00
|
|
|
}
|
|
|
|
else {
|
2012-08-12 16:32:02 +02:00
|
|
|
$result['flatten'] = true;
|
|
|
|
$result['threaded'] = false;
|
2012-08-10 19:57:39 +02:00
|
|
|
}
|
2012-08-10 17:46:39 +02:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
2014-07-22 00:36:20 +02:00
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
public function get_id() {
|
|
|
|
return $this->get_data_value('id');
|
|
|
|
}
|
2012-08-11 17:39:11 +02:00
|
|
|
|
2012-08-23 10:54:21 +02:00
|
|
|
public function is_threaded() {
|
|
|
|
return $this->threaded;
|
|
|
|
}
|
|
|
|
|
2012-08-11 17:39:11 +02:00
|
|
|
/**
|
|
|
|
* Add a child item
|
|
|
|
*/
|
|
|
|
public function add_child($item) {
|
|
|
|
$item_id = $item->get_id();
|
|
|
|
if(!$item_id) {
|
|
|
|
logger('[ERROR] Item::add_child : Item has no ID!!', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if($this->get_child($item->get_id())) {
|
|
|
|
logger('[WARN] Item::add_child : Item already exists ('. $item->get_id() .').', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-12 17:46:02 +02:00
|
|
|
/*
|
2012-08-18 17:56:38 +02:00
|
|
|
* Only add what will be displayed
|
2012-08-12 17:46:02 +02:00
|
|
|
*/
|
|
|
|
if($item->get_data_value('network') === NETWORK_MAIL && local_user() != $item->get_data_value('uid')) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-28 04:53:55 +02:00
|
|
|
if(activity_match($item->get_data_value('verb'),ACTIVITY_LIKE) || activity_match($item->get_data_value('verb'),ACTIVITY_DISLIKE)) {
|
2012-08-12 17:46:02 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-07-22 00:36:20 +02:00
|
|
|
|
2012-08-11 17:39:11 +02:00
|
|
|
$item->set_parent($this);
|
|
|
|
$this->children[] = $item;
|
|
|
|
return end($this->children);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a child by its ID
|
|
|
|
*/
|
|
|
|
public function get_child($id) {
|
|
|
|
foreach($this->get_children() as $child) {
|
|
|
|
if($child->get_id() == $id)
|
|
|
|
return $child;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all ou children
|
|
|
|
*/
|
|
|
|
public function get_children() {
|
|
|
|
return $this->children;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set our parent
|
|
|
|
*/
|
|
|
|
protected function set_parent($item) {
|
|
|
|
$parent = $this->get_parent();
|
|
|
|
if($parent) {
|
|
|
|
$parent->remove_child($this);
|
|
|
|
}
|
|
|
|
$this->parent = $item;
|
2012-08-11 18:12:35 +02:00
|
|
|
$this->set_conversation($item->get_conversation());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove our parent
|
|
|
|
*/
|
|
|
|
protected function remove_parent() {
|
|
|
|
$this->parent = null;
|
|
|
|
$this->conversation = null;
|
2012-08-11 17:39:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a child
|
|
|
|
*/
|
|
|
|
public function remove_child($item) {
|
|
|
|
$id = $item->get_id();
|
|
|
|
foreach($this->get_children() as $key => $child) {
|
|
|
|
if($child->get_id() == $id) {
|
2012-08-11 18:12:35 +02:00
|
|
|
$child->remove_parent();
|
2012-08-11 17:39:11 +02:00
|
|
|
unset($this->children[$key]);
|
|
|
|
// Reindex the array, in order to make sure there won't be any trouble on loops using count()
|
|
|
|
$this->children = array_values($this->children);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
logger('[WARN] Item::remove_child : Item is not a child ('. $id .').', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get parent item
|
|
|
|
*/
|
|
|
|
protected function get_parent() {
|
|
|
|
return $this->parent;
|
2012-08-11 17:09:35 +02:00
|
|
|
}
|
2012-08-10 17:46:39 +02:00
|
|
|
|
2012-08-11 18:12:35 +02:00
|
|
|
/**
|
|
|
|
* set conversation
|
|
|
|
*/
|
|
|
|
public function set_conversation($conv) {
|
2012-08-12 17:20:38 +02:00
|
|
|
$previous_mode = ($this->conversation ? $this->conversation->get_mode() : '');
|
|
|
|
|
2012-08-11 18:12:35 +02:00
|
|
|
$this->conversation = $conv;
|
|
|
|
|
|
|
|
// Set it on our children too
|
|
|
|
foreach($this->get_children() as $child)
|
|
|
|
$child->set_conversation($conv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get conversation
|
|
|
|
*/
|
|
|
|
public function get_conversation() {
|
|
|
|
return $this->conversation;
|
|
|
|
}
|
|
|
|
|
2012-08-10 17:46:39 +02:00
|
|
|
/**
|
|
|
|
* Get raw data
|
|
|
|
*
|
|
|
|
* We shouldn't need this
|
|
|
|
*/
|
|
|
|
public function get_data() {
|
|
|
|
return $this->data;
|
|
|
|
}
|
2012-08-10 19:57:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a data value
|
|
|
|
*
|
|
|
|
* Returns:
|
2012-09-10 10:36:30 +02:00
|
|
|
* _ value on success
|
|
|
|
* _ false on failure
|
2012-08-10 19:57:39 +02:00
|
|
|
*/
|
2012-08-11 17:51:25 +02:00
|
|
|
public function get_data_value($name) {
|
2012-08-18 17:17:33 +02:00
|
|
|
if(!isset($this->data[$name])) {
|
2013-04-28 13:30:20 +02:00
|
|
|
// logger('[ERROR] Item::get_data_value : Item has no value name "'. $name .'".', LOGGER_DEBUG);
|
2012-08-10 19:57:39 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->data[$name];
|
|
|
|
}
|
|
|
|
|
2012-08-11 16:56:10 +02:00
|
|
|
/**
|
|
|
|
* Set template
|
|
|
|
*/
|
|
|
|
private function set_template($name) {
|
2012-12-22 20:57:29 +01:00
|
|
|
$a = get_app();
|
|
|
|
|
2012-08-11 17:04:07 +02:00
|
|
|
if(!x($this->available_templates, $name)) {
|
|
|
|
logger('[ERROR] Item::set_template : Template not available ("'. $name .'").', LOGGER_DEBUG);
|
2012-08-11 16:56:10 +02:00
|
|
|
return false;
|
2012-08-11 17:04:07 +02:00
|
|
|
}
|
2012-12-22 20:57:29 +01:00
|
|
|
|
2013-01-12 13:58:54 +01:00
|
|
|
$this->template = $this->available_templates[$name];
|
2012-08-11 16:56:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get template
|
|
|
|
*/
|
|
|
|
private function get_template() {
|
|
|
|
return $this->template;
|
|
|
|
}
|
2012-08-11 17:09:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this is a toplevel post
|
|
|
|
*/
|
|
|
|
private function is_toplevel() {
|
|
|
|
return $this->toplevel;
|
|
|
|
}
|
2012-08-11 17:15:19 +02:00
|
|
|
|
|
|
|
/**
|
2012-08-17 16:40:41 +02:00
|
|
|
* Check if this is writable
|
2012-08-11 17:15:19 +02:00
|
|
|
*/
|
2012-08-17 16:40:41 +02:00
|
|
|
private function is_writable() {
|
2012-09-10 10:14:30 +02:00
|
|
|
$conv = $this->get_conversation();
|
|
|
|
|
|
|
|
if($conv) {
|
|
|
|
// This will allow us to comment on wall-to-wall items owned by our friends
|
|
|
|
// and community forums even if somebody else wrote the post.
|
2012-12-09 22:44:48 +01:00
|
|
|
|
|
|
|
// bug #517 - this fixes for conversation owner
|
|
|
|
if($conv->get_mode() == 'profile' && $conv->get_profile_owner() == local_user())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// this fixes for visitors
|
2012-09-10 10:14:30 +02:00
|
|
|
return ($this->writable || ($this->is_visiting() && $conv->get_mode() == 'profile'));
|
|
|
|
}
|
2012-08-17 16:40:41 +02:00
|
|
|
return $this->writable;
|
2012-08-11 17:15:19 +02:00
|
|
|
}
|
2012-08-11 17:48:07 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Count the total of our descendants
|
|
|
|
*/
|
|
|
|
private function count_descendants() {
|
|
|
|
$children = $this->get_children();
|
|
|
|
$total = count($children);
|
|
|
|
if($total > 0) {
|
|
|
|
foreach($children as $child) {
|
|
|
|
$total += $child->count_descendants();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $total;
|
|
|
|
}
|
2012-08-12 16:02:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the template for the comment box
|
|
|
|
*/
|
|
|
|
private function get_comment_box_template() {
|
|
|
|
return $this->comment_box_template;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the comment box
|
|
|
|
*
|
|
|
|
* Returns:
|
2012-09-10 10:36:30 +02:00
|
|
|
* _ The comment box string (empty if no comment box)
|
|
|
|
* _ false on failure
|
2012-08-12 16:02:47 +02:00
|
|
|
*/
|
2012-08-18 17:49:07 +02:00
|
|
|
private function get_comment_box($indent) {
|
2012-11-01 17:33:01 +01:00
|
|
|
$a = $this->get_app();
|
|
|
|
if(!$this->is_toplevel() && !(get_config('system','thread_allow') && $a->theme_thread_allow)) {
|
2012-08-12 16:26:37 +02:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2012-08-12 16:02:47 +02:00
|
|
|
$comment_box = '';
|
|
|
|
$conv = $this->get_conversation();
|
|
|
|
$template = get_markup_template($this->get_comment_box_template());
|
2012-08-12 17:20:38 +02:00
|
|
|
$ww = '';
|
|
|
|
if( ($conv->get_mode() === 'network') && $this->is_wall_to_wall() )
|
|
|
|
$ww = 'ww';
|
2012-08-12 16:02:47 +02:00
|
|
|
|
2012-08-17 16:40:41 +02:00
|
|
|
if($conv->is_writable() && $this->is_writable()) {
|
2012-08-12 16:02:47 +02:00
|
|
|
$qc = $qcomment = null;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hmmm, code depending on the presence of a particular plugin?
|
|
|
|
* This should be better if done by a hook
|
|
|
|
*/
|
|
|
|
if(in_array('qcomment',$a->plugins)) {
|
|
|
|
$qc = ((local_user()) ? get_pconfig(local_user(),'qcomment','words') : null);
|
|
|
|
$qcomment = (($qc) ? explode("\n",$qc) : null);
|
|
|
|
}
|
|
|
|
$comment_box = replace_macros($template,array(
|
2013-01-26 20:52:21 +01:00
|
|
|
'$return_path' => $a->query_string,
|
2012-08-23 10:54:21 +02:00
|
|
|
'$threaded' => $this->is_threaded(),
|
2012-11-02 01:31:50 +01:00
|
|
|
// '$jsreload' => (($conv->get_mode() === 'display') ? $_SESSION['return_url'] : ''),
|
|
|
|
'$jsreload' => '',
|
2012-08-12 16:02:47 +02:00
|
|
|
'$type' => (($conv->get_mode() === 'profile') ? 'wall-comment' : 'net-comment'),
|
|
|
|
'$id' => $this->get_id(),
|
|
|
|
'$parent' => $this->get_id(),
|
|
|
|
'$qcomment' => $qcomment,
|
|
|
|
'$profile_uid' => $conv->get_profile_owner(),
|
|
|
|
'$mylink' => $a->contact['url'],
|
|
|
|
'$mytitle' => t('This is you'),
|
|
|
|
'$myphoto' => $a->contact['thumb'],
|
|
|
|
'$comment' => t('Comment'),
|
|
|
|
'$submit' => t('Submit'),
|
|
|
|
'$edbold' => t('Bold'),
|
|
|
|
'$editalic' => t('Italic'),
|
|
|
|
'$eduline' => t('Underline'),
|
|
|
|
'$edquote' => t('Quote'),
|
|
|
|
'$edcode' => t('Code'),
|
|
|
|
'$edimg' => t('Image'),
|
|
|
|
'$edurl' => t('Link'),
|
|
|
|
'$edvideo' => t('Video'),
|
2012-11-22 17:14:22 +01:00
|
|
|
'$preview' => ((feature_enabled($conv->get_profile_owner(),'preview')) ? t('Preview') : ''),
|
2012-08-18 17:49:07 +02:00
|
|
|
'$indent' => $indent,
|
2012-08-12 16:02:47 +02:00
|
|
|
'$sourceapp' => t($a->sourcename),
|
2012-11-02 00:14:42 +01:00
|
|
|
'$ww' => (($conv->get_mode() === 'network') ? $ww : ''),
|
|
|
|
'$rand_num' => random_digits(12)
|
2012-08-12 16:02:47 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $comment_box;
|
|
|
|
}
|
2012-08-12 16:18:53 +02:00
|
|
|
|
|
|
|
private function get_redirect_url() {
|
|
|
|
return $this->redirect_url;
|
|
|
|
}
|
2012-08-12 17:20:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if we are a wall to wall item and set the relevant properties
|
|
|
|
*/
|
|
|
|
protected function check_wall_to_wall() {
|
|
|
|
$a = $this->get_app();
|
|
|
|
$conv = $this->get_conversation();
|
|
|
|
$this->wall_to_wall = false;
|
2014-08-13 00:13:13 +02:00
|
|
|
|
2012-08-12 17:20:38 +02:00
|
|
|
if($this->is_toplevel()) {
|
2014-08-25 14:09:56 +02:00
|
|
|
if($conv->get_mode() !== 'profile') {
|
|
|
|
if($this->get_data_value('wall') AND !$this->get_data_value('self')) {
|
2012-08-12 17:20:38 +02:00
|
|
|
// On the network page, I am the owner. On the display page it will be the profile owner.
|
|
|
|
// This will have been stored in $a->page_contact by our calling page.
|
|
|
|
// Put this person as the wall owner of the wall-to-wall notice.
|
|
|
|
|
|
|
|
$this->owner_url = zrl($a->page_contact['url']);
|
|
|
|
$this->owner_photo = $a->page_contact['thumb'];
|
|
|
|
$this->owner_name = $a->page_contact['name'];
|
|
|
|
$this->wall_to_wall = true;
|
|
|
|
}
|
2012-08-18 17:36:38 +02:00
|
|
|
else if($this->get_data_value('owner-link')) {
|
|
|
|
|
|
|
|
$owner_linkmatch = (($this->get_data_value('owner-link')) && link_compare($this->get_data_value('owner-link'),$this->get_data_value('author-link')));
|
|
|
|
$alias_linkmatch = (($this->get_data_value('alias')) && link_compare($this->get_data_value('alias'),$this->get_data_value('author-link')));
|
|
|
|
$owner_namematch = (($this->get_data_value('owner-name')) && $this->get_data_value('owner-name') == $this->get_data_value('author-name'));
|
2014-08-25 14:09:56 +02:00
|
|
|
|
2012-08-18 17:36:38 +02:00
|
|
|
if((! $owner_linkmatch) && (! $alias_linkmatch) && (! $owner_namematch)) {
|
|
|
|
|
|
|
|
// The author url doesn't match the owner (typically the contact)
|
|
|
|
// and also doesn't match the contact alias.
|
|
|
|
// The name match is a hack to catch several weird cases where URLs are
|
|
|
|
// all over the park. It can be tricked, but this prevents you from
|
|
|
|
// seeing "Bob Smith to Bob Smith via Wall-to-wall" and you know darn
|
|
|
|
// well that it's the same Bob Smith.
|
|
|
|
|
|
|
|
// But it could be somebody else with the same name. It just isn't highly likely.
|
2014-08-25 14:09:56 +02:00
|
|
|
|
2012-08-18 17:36:38 +02:00
|
|
|
|
|
|
|
$this->owner_photo = $this->get_data_value('owner-avatar');
|
|
|
|
$this->owner_name = $this->get_data_value('owner-name');
|
|
|
|
$this->wall_to_wall = true;
|
|
|
|
// If it is our contact, use a friendly redirect link
|
|
|
|
if((link_compare($this->get_data_value('owner-link'),$this->get_data_value('url')))
|
|
|
|
&& ($this->get_data_value('network') === NETWORK_DFRN)) {
|
|
|
|
$this->owner_url = $this->get_redirect_url();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$this->owner_url = zrl($this->get_data_value('owner-link'));
|
2012-08-12 17:20:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-24 05:21:08 +02:00
|
|
|
if(!$this->wall_to_wall) {
|
2012-08-12 17:20:38 +02:00
|
|
|
$this->set_template('wall');
|
|
|
|
$this->owner_url = '';
|
|
|
|
$this->owner_photo = '';
|
|
|
|
$this->owner_name = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function is_wall_to_wall() {
|
|
|
|
return $this->wall_to_wall;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function get_owner_url() {
|
|
|
|
return $this->owner_url;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function get_owner_photo() {
|
|
|
|
return $this->owner_photo;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function get_owner_name() {
|
|
|
|
return $this->owner_name;
|
|
|
|
}
|
2012-09-10 10:14:30 +02:00
|
|
|
|
|
|
|
private function is_visiting() {
|
|
|
|
return $this->visiting;
|
|
|
|
}
|
2012-09-28 04:53:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-10 17:46:39 +02:00
|
|
|
}
|
|
|
|
?>
|