forked from projectsend/projectsend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-assets-edit.php
78 lines (62 loc) · 1.9 KB
/
custom-assets-edit.php
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* Show the form to add a new asset.
*
*/
$allowed_levels = array(9);
require_once 'bootstrap.php';
$asset_id = (int)$_GET['id'];
if (!is_integer($asset_id)) {
exit_with_error_code(403);
}
$asset = new \ProjectSend\Classes\CustomAsset();
$load_asset = $asset->get($asset_id);
if (!$load_asset) {
exit_with_error_code(403);
}
$asset_arguments = $asset->getProperties();
$language = $asset_arguments['language'];
$active_nav = 'tools';
$page_title = sprintf(__('Edit %s asset', 'cftp_admin'), format_asset_language_name($language));
$page_id = 'asset_editor';
add_codemirror_assets();
include_once ADMIN_VIEWS_DIR . DS . 'header.php';
if ($_POST) {
/**
* Clean the posted form values to be used on the actions,
* and again on the form if validation failed.
*/
$asset_arguments = [
'title' => $_POST['title'],
'content' => $_POST['content'],
'language' => $language,
'location' => $_POST['location'],
'position' => $_POST['position'],
'enabled' => (isset($_POST["enabled"])) ? 1 : 0,
];
$asset->set($asset_arguments);
$edit_response = $asset->edit();
if ($edit_response['query'] == 1) {
$flash->success(__('Asset edited successfully'));
} else {
$flash->error(__('There was an error saving to the database'));
}
ps_redirect(BASE_URI . 'custom-assets-edit.php?id=' . $asset_id);
}
?>
<div class="row">
<div class="col-12 col-sm-12 col-lg-6">
<div class="white-box">
<div class="white-box-interior">
<?php
// If the form was submitted with errors, show them here.
echo $asset->getValidationErrors();
$asset_form_type = 'edit';
include_once FORMS_DIR . DS . 'assets.php';
?>
</div>
</div>
</div>
</div>
<?php
include_once ADMIN_VIEWS_DIR . DS . 'footer.php';