LLMS_REST_Students_Controller::get_item_schema()
Get the item schema.
Return Return
(array)
Source Source
File: libraries/lifterlms-rest/includes/server/class-llms-rest-students-controller.php
public function get_item_schema() { $schema = parent::get_item_schema(); $schema['properties']['roles']['default'] = array( 'student' ); /** * Filter item schema for the studend controller. * * @since 1.0.0-beta.12 * * @param array $schema Item schema data. */ return apply_filters( 'llms_rest_student_item_schema', $schema ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0-beta.12 | Added item schema filter. |
1.0.0-beta.1 | Introduced. |