LLMS_AJAX_Handler::update_lesson_order( array $request )

Update section’s lessons order


Parameters Parameters

$request

(array) (Required) $_POST data.


Top ↑

Return Return

((array|null))


Top ↑

Source Source

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

			$lesson               = new LLMS_Lesson( $key );
			$updated_data[ $key ] = $lesson->update(
				array(
					'parent_section' => $value['parent_section'],
					'order'          => $value['order'],
				)
			);

		}

		return $updated_data;

	}

	/**
	 * "API" for the Admin Builder.
	 *
	 * @since 3.13.0


Top ↑

User Contributed Notes User Contributed Notes

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