blob: bd4d161f8af1f1c5b8e2a7c1c4abbed593db7ad4 (
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
50
51
52
53
54
55
56
57
58
59
|
<?php
/**
* @package liberty
* @subpackage functions
*/
namespace Bitweaver\Liberty;
require_once '../kernel/includes/setup_inc.php';
global $gBitSystem, $gBitSmarty, $gBitUser, $gContent;
if( empty( $_REQUEST['content_id'] ) || !is_numeric( $_REQUEST['content_id'] ) ) {
$gBitSystem->fatalError( 'No content ID specified.' );
}
$gContent = LibertyContent::getLibertyObject( (int)$_REQUEST['content_id'] );
if( !$gContent || !$gContent->isValid() ) {
$gBitSystem->fatalError( 'Content not found.' );
}
if( !empty( $_REQUEST['xref_id'] ) ) {
$gContent->loadXref( $_REQUEST['xref_id'] );
}
if( !empty( $_REQUEST['fCancel'] ) ) {
header( 'Location: '.$gContent->getEditUrl() );
die;
}
if( !empty( $_REQUEST['fSaveXref'] ) ) {
$gContent->verifyUpdatePermission();
if( $gContent->storeXref( $_REQUEST ) ) {
header( 'Location: '.$gContent->getEditUrl() );
die;
}
$xrefInfo = $_REQUEST;
$xrefInfo['data'] = $_REQUEST['edit'] ?? '';
} elseif( isset( $_REQUEST['expunge'] ) ) {
$gContent->verifyExpungePermission();
if( $gContent->stepXref( $_REQUEST ) ) {
header( 'Location: '.$gContent->getEditUrl() );
die;
}
$xrefInfo = $gContent->mInfo['xref_store']['data'] ?? [];
} else {
$gContent->verifyUpdatePermission();
$xrefInfo = $gContent->mInfo['xref_store']['data'] ?? [];
}
$gContent->enrichXrefDisplay( $xrefInfo );
$gBitSmarty->assign( 'gContent', $gContent );
$gBitSmarty->assign( 'xrefInfo', $xrefInfo );
$gBitSmarty->assign( 'errors', $gContent->mErrors );
$xrefTemplate = $gContent->mInfo['xref_store']['data']['template'] ?? 'text';
$gBitSystem->display( $gContent->getXrefEditTemplate( $xrefTemplate ), 'Edit Detail', [ 'display_mode' => 'edit' ] );
|