aboutsummaryrefslogtreecommitdiff
path: root/mod/sitepages/actions/addmeta.php
blob: 432152ef1b4a670cf3bad660b6ca8b71cd527e10 (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
<?php
/**
 * Elgg SEO: add/edit
 */

// Make sure we're logged as admin
admin_gatekeeper();

// Get input data
$description = get_input('description', '', false);
$metatags = get_input('metatags', '', false);
$previous_guid = get_input('seo_guid');
		
//remove the old front page
if(get_entity($previous_guid)){
	delete_entity($previous_guid);
}

// Cache to the session
$_SESSION['description'] = $description;
$_SESSION['metatags'] = $metatags;
			
// Initialise a new ElggObject
$seo = new ElggObject();
// Tell the system what type of external page it is
$seo->subtype = "sitemeta";
// Set its owner to the current user
$seo->owner_guid = $_SESSION['user']->getGUID();
// Set its access to public
$seo->access_id = 2;
// Set its title and description appropriately
$seo->title = $metatags;
$seo->description = $description;
			
// Before we can set metadata, save
if (!$seo->save()) {
	register_error(elgg_echo("sitepages:error"));
	forward("pg/sitepages/index.php?type=seo");
}

// Success message
system_message(elgg_echo("sitepages:seocreated"));

// Remove the cache
unset($_SESSION['description']); unset($_SESSION['metatags']);
	
	
// Forward back to the page
forward("pg/sitepages/index.php?type=seo");