diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 17:52:18 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 17:52:18 +0000 |
commit | e4158cbf4159183b7d9362cf30c7fd5dfb1d877a (patch) | |
tree | d4f33641da43b059e4921638907f212212b2be09 /mod/reportedcontent/views/default | |
parent | d7f37fc752418661e0dadae8dfc40f07e7603740 (diff) | |
download | elgg-e4158cbf4159183b7d9362cf30c7fd5dfb1d877a.tar.gz elgg-e4158cbf4159183b7d9362cf30c7fd5dfb1d877a.tar.bz2 |
updated reported content to use elgg_view_form
git-svn-id: http://code.elgg.org/elgg/trunk@8166 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/views/default')
-rw-r--r-- | mod/reportedcontent/views/default/forms/reportedcontent/add.php | 57 | ||||
-rw-r--r-- | mod/reportedcontent/views/default/reportedcontent/form.php | 66 |
2 files changed, 57 insertions, 66 deletions
diff --git a/mod/reportedcontent/views/default/forms/reportedcontent/add.php b/mod/reportedcontent/views/default/forms/reportedcontent/add.php new file mode 100644 index 000000000..abc53e750 --- /dev/null +++ b/mod/reportedcontent/views/default/forms/reportedcontent/add.php @@ -0,0 +1,57 @@ +<?php +/** + * Elgg report content plugin form + * + * @package ElggReportContent + */ + +$guid = 0; +$title = get_input('title', ""); +$address = get_input('address', ""); + +$description = ""; +$owner = elgg_get_logged_in_user_entity(); + +?> + +<div> + <label> + <?php + echo elgg_echo('reportedcontent:title'); + echo elgg_view('input/text', array( + 'internalname' => 'title', + 'value' => $title, + )); + ?> + </label> +</div> +<div> + <label> + <?php + echo elgg_echo('reportedcontent:address'); + echo elgg_view('input/url', array( + 'internalname' => 'address', + 'value' => $address, + )); + + ?> + </label> +</div> +<div> + <label> + <?php echo elgg_echo('reportedcontent:description'); ?> + </label> + <?php + echo elgg_view('input/longtext',array( + 'internalname' => 'description', + 'value' => $description, + )); + ?> +</div> +<div> + <?php + echo elgg_view('input/submit', array( + 'value' => elgg_echo('reportedcontent:report'), + )); + ?> +</div> diff --git a/mod/reportedcontent/views/default/reportedcontent/form.php b/mod/reportedcontent/views/default/reportedcontent/form.php deleted file mode 100644 index b520d4060..000000000 --- a/mod/reportedcontent/views/default/reportedcontent/form.php +++ /dev/null @@ -1,66 +0,0 @@ -<?php -/** - * Elgg report content plugin form - * - * @package ElggReportContent - */ - -$guid = 0; -$title = get_input('title', ""); -$description = ""; -$address = get_input('address', ""); -if ($address == "previous") { - $address = $_SERVER['HTTP_REFERER']; -} -$tags = array(); -$access_id = ACCESS_PRIVATE; -$shares = array(); -$owner = elgg_get_logged_in_user_entity(); - -?> -<form action="<?php echo elgg_get_site_url(); ?>action/reportedcontent/add" method="post" class="mtm"> -<?php echo elgg_view('input/securitytoken'); ?> - - <div> - <label> - <?php echo elgg_echo('reportedcontent:title'); ?> - <?php - - echo elgg_view('input/text',array( - 'internalname' => 'title', - 'value' => $title, - )); - - ?> - </label> - </div> - <div> - <label> - <?php echo elgg_echo('reportedcontent:address'); ?> - <?php - - echo elgg_view('input/url',array( - 'internalname' => 'address', - 'value' => $address, - )); - - ?> - </label> - </div> - <div> - <label> - <?php echo elgg_echo('reportedcontent:description'); ?> - </label> - <?php - - echo elgg_view('input/longtext',array( - 'internalname' => 'description', - 'value' => $description, - )); - - ?> - </div> - <div> - <input type="submit" value="<?php echo elgg_echo('reportedcontent:report'); ?>" /> - </div> -</form> |