Elgg  Version master
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((string) $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_ok_response($content= '', string|array $message= '', string $forward_url=null, int $status_code=ELGG_HTTP_OK)
Prepares a successful response to be returned by a page or an action handler.
elgg_echo(string $message_key, array $args=[], string $language= '')
Elgg language module Functions to manage language and translations.
Definition: languages.php:17
elgg_can_edit_widget_layout(string $context, int $user_guid=0)
Can the user edit the widget layout.
Definition: widgets.php:50
elgg_set_page_owner_guid(int $guid)
Set the guid of the entity that owns this page.
Definition: pageowner.php:34
$position
Definition: move.php:7
get_input(string $variable, $default=null, bool $filter_result=true)
Parameter input functions.
Definition: input.php:20
elgg_error_response(string|array $message= '', string $forward_url=REFERRER, int $status_code=ELGG_HTTP_BAD_REQUEST)
Prepare an error response to be returned by a page or an action handler.
get_entity(int $guid)
Loads and returns an entity object from a guid.
Definition: entities.php:70
$widget_guid
Definition: move.php:8
$widget
Definition: move.php:10