1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-07-31 18:30:20 +02:00

Pages Plugin: clone action improvements.

This commit is contained in:
Awilum
2012-11-11 22:37:09 +02:00
parent a6cd237525
commit 3fda57bbb4

View File

@@ -123,6 +123,9 @@
// Get original page
$orig_page = $pages->select('[slug="'.Request::get('name').'"]', null);
// Generate rand page title
$rand_page_title = $orig_page['title'].' [copy]';
// Clone page
if ($pages->insert(array('slug' => $rand_page_name,
'template' => $orig_page['template'],
@@ -130,8 +133,9 @@
'robots_index' => $orig_page['robots_index'],
'robots_follow'=> $orig_page['robots_follow'],
'status' => $orig_page['status'],
'access' => $orig_page['access'],
'title' => $rand_page_name,
'access' => (isset($orig_page['access'])) ? $orig_page['access'] : 'public',
'expand' => (isset($orig_page['expand'])) ? $orig_page['expand'] : '0',
'title' => $rand_page_title,
'description' => $orig_page['description'],
'keywords' => $orig_page['keywords'],
'date' => $orig_page['date'],