aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/index.php
blob: 50d11af1d6d2286a273e1378bc05446536d99a6b (plain)
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
53
54
<?php
/**
 * Elgg Pages list
 *
 * @package ElggPages
 */

require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");

global $CONFIG;

// Add menus
$owner = elgg_get_page_owner();
if (!($owner instanceof ElggGroup)) {
		add_submenu_item(sprintf(elgg_echo("pages:user"), elgg_get_page_owner()->name), $CONFIG->url . "pg/pages/owned/" . elgg_get_page_owner()->username, 'pageslinksgeneral');
		add_submenu_item(elgg_echo('pages:all'),$CONFIG->wwwroot."mod/pages/world.php", 'pageslinksgeneral');
}
	if (($owner instanceof ElggEntity) && (can_write_to_container(0,$owner->guid))){
		add_submenu_item(elgg_echo('pages:new'), $CONFIG->url . "pg/pages/new/?container_guid=" . elgg_get_page_owner_guid(), 'pagesactions');
		add_submenu_item(elgg_echo('pages:welcome'), $CONFIG->url . "pg/pages/welcome/" . $owner->username, 'pagesactions');
	}

// access check for closed groups
group_gatekeeper();

$limit = get_input("limit", 10);
$offset = get_input("offset", 0);

if($owner instanceof ElggGroup){
	$title = sprintf(elgg_echo("pages:group"),$owner->name);
}else{
	$title = sprintf(elgg_echo("pages:user"),$owner->name);
}


// Get objects
$context = get_context();

set_context('search');

$objects = elgg_list_entities(array('types' => 'object', 'subtypes' => 'page_top', 'container_guid' => elgg_get_page_owner_guid(), 'limit' => $limit, 'offset' => $offset, 'full_view' => FALSE));

set_context($context);

//get the owners latest welcome message
$welcome_message = elgg_get_entities(array('types' => 'object', 'subtypes' => 'pages_welcome', 'container_guid' => $owner->guid, 'limit' => 1));

$body = elgg_view_title($title);
$body .= elgg_view("pages/welcome", array('entity' => $welcome_message));
$body .= $objects;
$body = elgg_view_layout('one_column_with_sidebar', $body);

// Finally draw the page
page_draw($title, $body);