-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.php
More file actions
47 lines (37 loc) · 1.26 KB
/
edit.php
File metadata and controls
47 lines (37 loc) · 1.26 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
<?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");
gatekeeper();
global $CONFIG;
set_context('plugin_name');
// Get the current page's owner
$page_owner = page_owner_entity();
if ($page_owner === false || is_null($page_owner)) {
$page_owner = $_SESSION['user'];
set_page_owner($_SESSION['guid']);
}
$title = elgg_echo('plugin_name:add');
// Get the entity, if it exists
$entity_guid = (int) get_input('guid', 0);
if ($entity_guid && ($entity = get_entity($entity_guid))) {
if (!$entity->canEdit())
$entity = 0;
else
$title = elgg_echo('plugin_name:edit');
}
$area2 = elgg_view_title($title);
$area2 .= elgg_view('input/form', array('action' => $CONFIG->wwwroot . "action/plugin_name/edit", 'body' => elgg_view("plugin_name/forms/edit", array('entity' => $entity))));
$body = elgg_view_layout("two_column_left_sidebar", $area1, $area2);
// Display page
page_draw($title, $body);
?>