LLMS_Table_StudentManagement::set_args()
Define the structure of arguments used to pass to the get_results method
Contents
Return Return
(array)
Source Source
File: includes/admin/post-types/tables/class.llms.table.student.management.php
public function set_args() { if ( ! $this->post_id ) { global $post; $this->post_id = ! empty( $post->ID ) ? $post->ID : null; } return array( 'post_id' => $this->post_id, ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |