aboutsummaryrefslogtreecommitdiffstats
path: root/include/page_widgets.php
blob: 3270de4a30a0e37671d90988c9e9b432bd39d34f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php

// A basic toolbar for observers with write_pages permissions

function writepages_widget ($who,$which) {
	return replace_macros(get_markup_template('write_pages.tpl'), array(
		'$new' => t('New Page'),
		'$newurl' => "webpages/$who",
		'$edit' => t('Edit'),
		'$editurl' => "editwebpage/$who/$which"
	));
}



// Chan is channel_id, $which is channel_address - we'll need to pass observer later too.

function pagelist_widget ($owner,$which) {

	$r = q("select * from iconfig left join item on iconfig.iid = item.id where item_id.uid = %d 
		and iconfig.cat = 'system' and iconfig.k = 'WEBPAGE' order by item.created desc",
		intval($owner)
	);

	$pages = null;

	if($r) {
		$pages = array();
		foreach($r as $rr) {
			$pages[$rr['iid']][] = array('url' => $rr['iid'],'pagetitle' => $rr['v'],'title' => $rr['title'],'created' => datetime_convert('UTC',date_default_timezone_get(),$rr['created']),'edited' => datetime_convert('UTC',date_default_timezone_get(),$rr['edited']));
		}
	}

	//Build the base URL for edit links
	$url = z_root() . "/editwebpage/" . $which;
	// This isn't pretty, but it works.  Until I figure out what to do with the UI, it's Good Enough(TM).
	return $o . replace_macros(get_markup_template("webpagelist.tpl"), array(
		'$baseurl' => $url,
		'$edit' => t('Edit'),
		'$pages' => $pages,
		'$channel' => $which,
		'$view' => t('View'),
		'$preview' => t('Preview'),
		'$actions_txt' => t('Actions'),
		'$pagelink_txt' => t('Page Link'),
		'$title_txt' => t('Title'),
		'$created_txt' => t('Created'),
		'$edited_txt' => t('Edited')

	));

}