-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.php
More file actions
56 lines (42 loc) · 1.32 KB
/
view.php
File metadata and controls
56 lines (42 loc) · 1.32 KB
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
55
56
<?php
/**
* Elgg plugin_name Plugin
*
* @package plugin_name
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author plugin_autor
* copyright plugin_autor_company dev_yr
* @link plugin_autor_company_website
*
*/
// Load Elgg engine
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
global $CONFIG;
set_context('plugin_name');
// Get the specified entity
$entity_guid = (int) get_input('guid', 0);
// If we can get out the entity ...
if ($entity_guid && ($entity = get_entity($entity_guid))) {
// Set the page owner
if ($entity->container_guid) {
set_page_owner($entity->container_guid);
} else {
set_page_owner($entity->owner_guid);
}
$page_owner = page_owner_entity();
// Display it
$area2 = elgg_view_entity($entity, true);
// Set the title appropriately
$title = $entity->title;
// If we're not allowed to see the blog post
} else {
// Display the 'post not found' page instead
$title = elgg_echo("plugin_name:notfound");
$area2 = elgg_view_title($title);
$area2 .= elgg_view("plugin_name/notfound");
}
// Display through the correct canvas area
$body = elgg_view_layout("two_column_left_sidebar", $area1, $area2);
// Display page
page_draw($title,$body);
?>