aboutsummaryrefslogtreecommitdiff
path: root/mod/file/edit.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/file/edit.php')
-rw-r--r--mod/file/edit.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/mod/file/edit.php b/mod/file/edit.php
deleted file mode 100644
index aa4b60a83..000000000
--- a/mod/file/edit.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-/**
- * Edit a file
- *
- * @package ElggFile
- */
-
-elgg_load_library('elgg:file');
-
-gatekeeper();
-
-$file_guid = (int) get_input('guid');
-$file = new FilePluginFile($file_guid);
-if (!$file) {
- forward();
-}
-if (!$file->canEdit()) {
- forward();
-}
-
-$title = elgg_echo('file:edit');
-
-elgg_push_breadcrumb(elgg_echo('file'), "pg/file/all/");
-elgg_push_breadcrumb($file->title, $file->getURL());
-elgg_push_breadcrumb($title);
-
-elgg_set_page_owner_guid($file->getContainerGUID());
-
-$form_vars = array('enctype' => 'multipart/form-data');
-$body_vars = file_prepare_form_vars($file);
-var_dump($body_vars);
-$content = elgg_view_form('file/upload', $form_vars, $body_vars);
-
-$body = elgg_view_layout('content', array(
- 'content' => $content,
- 'title' => $title,
- 'filter' => '',
- 'buttons' => '',
-));
-
-echo elgg_view_page($title, $body);