LLMS_AJAX_Handler::update_section_order( array $request )

Update course’s sections order


Parameters Parameters

$request

(array) (Required) $_POST data.


Top ↑

Return Return

((array|null))


Top ↑

Source Source

File: includes/class.llms.ajax.handler.php

1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
        $section              = new LLMS_Section( $key );
        $updated_data[ $key ] = $section->update(
            array(
                'order' => $value,
            )
        );
 
    }
 
    return $updated_data;
 
}
 
/**
 * Update section's lessons order
 *
 * @since Unknown

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.