2015-11-27 17:03:42 +01:00
|
|
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// Check role
|
|
|
|
// ============================================================================
|
|
|
|
|
2019-05-13 18:26:35 +02:00
|
|
|
checkRole(array('admin', 'editor', 'author'));
|
2018-05-20 21:48:43 +02:00
|
|
|
|
2015-11-27 17:03:42 +01:00
|
|
|
// ============================================================================
|
|
|
|
// Functions
|
|
|
|
// ============================================================================
|
|
|
|
|
2019-05-12 14:31:33 +02:00
|
|
|
// Returns the content belongs to the current user if the user has the role Editor
|
|
|
|
function filterContentOwner($list) {
|
|
|
|
global $login;
|
|
|
|
global $pages;
|
|
|
|
$tmp = array();
|
|
|
|
foreach ($list as $pageKey) {
|
|
|
|
if ($pages->db[$pageKey]['username']==$login->username()) {
|
|
|
|
array_push($tmp, $pageKey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $tmp;
|
|
|
|
}
|
|
|
|
|
2015-11-27 17:03:42 +01:00
|
|
|
// ============================================================================
|
|
|
|
// Main before POST
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// POST Method
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// Main after POST
|
2015-11-28 15:47:03 +01:00
|
|
|
// ============================================================================
|
2017-09-09 00:33:14 +02:00
|
|
|
|
2019-05-12 14:31:33 +02:00
|
|
|
$published = $pages->getList($url->pageNumber(), ITEMS_PER_PAGE_ADMIN);
|
|
|
|
$drafts = $pages->getDraftDB(true);
|
|
|
|
$scheduled = $pages->getScheduledDB(true);
|
|
|
|
$static = $pages->getStaticDB(true);
|
|
|
|
$sticky = $pages->getStickyDB(true);
|
2019-05-24 19:00:22 +02:00
|
|
|
$autosave = $pages->getAutosaveDB(true);
|
2019-05-12 14:31:33 +02:00
|
|
|
|
2019-05-13 18:26:35 +02:00
|
|
|
// If the user is an Author filter the content he/she can edit
|
|
|
|
if (checkRole(array('author'), false)) {
|
2019-05-12 14:31:33 +02:00
|
|
|
$published = filterContentOwner($published);
|
|
|
|
$drafts = filterContentOwner($drafts);
|
|
|
|
$scheduled = filterContentOwner($scheduled);
|
|
|
|
$static = filterContentOwner($static);
|
|
|
|
$sticky = filterContentOwner($sticky);
|
|
|
|
}
|
2017-09-10 23:09:44 +02:00
|
|
|
|
|
|
|
// Check if out of range the pageNumber
|
2018-07-17 19:13:01 +02:00
|
|
|
if (empty($published) && $url->pageNumber()>1) {
|
2017-10-02 22:42:18 +02:00
|
|
|
Redirect::page('content');
|
2017-09-10 23:09:44 +02:00
|
|
|
}
|
|
|
|
|
2017-09-09 00:33:14 +02:00
|
|
|
// Title of the page
|
2018-08-05 17:54:20 +02:00
|
|
|
$layout['title'] .= ' - '.$L->g('Manage content');
|