Elgg  Version 4.3
move.php
Go to the documentation of this file.
1 <?php
6 $column = (int) get_input('column', 1);
7 $position = (int) get_input('position');
8 $widget_guid = (int) get_input('widget_guid');
9 
11 if (!$widget instanceof \ElggWidget) {
12  return elgg_error_response(elgg_echo('widgets:move:failure'));
13 }
14 
15 elgg_set_page_owner_guid($widget->getContainerGUID());
16 
17 if (!elgg_can_edit_widget_layout($widget->context)) {
18  return elgg_error_response(elgg_echo('widgets:move:failure'));
19 }
20 
21 $widget->move($column, $position);
22 return elgg_ok_response();
$column
Elgg widget move action.
Definition: move.php:6
elgg_echo($message_key, array $args=[], $language="")
Elgg language module Functions to manage language and translations.
Definition: languages.php:18
elgg_set_page_owner_guid($guid)
Set the guid of the entity that owns this page.
Definition: pageowner.php:34
$position
Definition: move.php:7
get_input($variable, $default=null, $filter_result=true)
Parameter input functions.
Definition: input.php:20
elgg_can_edit_widget_layout($context, $user_guid=0)
Can the user edit the widget layout.
Definition: widgets.php:50
$widget_guid
Definition: move.php:8
elgg_error_response($message= '', $forward_url=REFERRER, int $status_code=ELGG_HTTP_BAD_REQUEST)
Prepare an error response to be returned by a page or an action handler.
elgg_ok_response($content= '', $message= '', $forward_url=null, int $status_code=ELGG_HTTP_OK)
Prepares a successful response to be returned by a page or an action handler.
$widget
Definition: move.php:10
get_entity($guid)
Loads and returns an entity object from a guid.
Definition: entities.php:69