91 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @file mod/notes.php
 | 
						|
 */
 | 
						|
use Friendica\App;
 | 
						|
use Friendica\Content\Nav;
 | 
						|
use Friendica\Core\L10n;
 | 
						|
use Friendica\Database\DBM;
 | 
						|
use Friendica\Model\Profile;
 | 
						|
use Friendica\Model\Item;
 | 
						|
 | 
						|
function notes_init(App $a)
 | 
						|
{
 | 
						|
	if (! local_user()) {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
 | 
						|
	$profile = 0;
 | 
						|
 | 
						|
	$which = $a->user['nickname'];
 | 
						|
 | 
						|
	Nav::setSelected('home');
 | 
						|
 | 
						|
	//Profile::load($a, $which, $profile);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
function notes_content(App $a, $update = false)
 | 
						|
{
 | 
						|
	if (!local_user()) {
 | 
						|
		notice(L10n::t('Permission denied.') . EOL);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
 | 
						|
	require_once 'include/security.php';
 | 
						|
	require_once 'include/conversation.php';
 | 
						|
 | 
						|
	$o = Profile::getTabs($a, true);
 | 
						|
 | 
						|
	if (!$update) {
 | 
						|
		$o .= '<h3>' . L10n::t('Personal Notes') . '</h3>';
 | 
						|
 | 
						|
		$x = [
 | 
						|
			'is_owner' => true,
 | 
						|
			'allow_location' => (($a->user['allow_location']) ? true : false),
 | 
						|
			'default_location' => $a->user['default-location'],
 | 
						|
			'nickname' => $a->user['nickname'],
 | 
						|
			'lockstate' => 'lock',
 | 
						|
			'acl' => '',
 | 
						|
			'bang' => '',
 | 
						|
			'visitor' => 'block',
 | 
						|
			'profile_uid' => local_user(),
 | 
						|
			'button' => L10n::t('Save'),
 | 
						|
			'acl_data' => '',
 | 
						|
		];
 | 
						|
 | 
						|
		$o .= status_editor($a, $x, $a->contact['id']);
 | 
						|
	}
 | 
						|
 | 
						|
	$condition = ["`uid` = ? AND `type` = 'note' AND `id` = `parent` AND NOT `wall`
 | 
						|
		AND `allow_cid` = ? AND `contact-id` = ?",
 | 
						|
		local_user(), '<' . $a->contact['id'] . '>', $a->contact['id']];
 | 
						|
 | 
						|
	$notes = dba::count('item', $condition);
 | 
						|
 | 
						|
	$a->set_pager_total($notes);
 | 
						|
	$a->set_pager_itemspage(40);
 | 
						|
 | 
						|
	$params = ['order' => ['created' => true],
 | 
						|
		'limit' => [$a->pager['start'], $a->pager['itemspage']]];
 | 
						|
	$r = Item::selectForUser(local_user(), ['item_id'], $condition, $params);
 | 
						|
 | 
						|
	if (DBM::is_result($r)) {
 | 
						|
		$parents_arr = [];
 | 
						|
 | 
						|
		while ($rr = dba::fetch($r)) {
 | 
						|
			$parents_arr[] = $rr['item_id'];
 | 
						|
		}
 | 
						|
		dba::close($r);
 | 
						|
 | 
						|
		$condition = ['uid' => local_user(), 'parent' => $parents_arr];
 | 
						|
		$result = Item::selectForUser(local_user(), [], $condition);
 | 
						|
		if (DBM::is_result($result)) {
 | 
						|
			$items = conv_sort(dba::inArray($result), 'commented');
 | 
						|
			$o .= conversation($a, $items, 'notes', $update);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	$o .= paginate($a);
 | 
						|
	return $o;
 | 
						|
}
 |