LLMS_Table_Student_Memberships::set_columns()
Define the structure of the table
Contents
Return Return
(array)
Source Source
File: includes/admin/reporting/tables/llms.table.student.memberships.php
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | public function set_columns() { return array ( 'id' => array ( 'title' => __( 'ID' , 'lifterlms' ), ), 'name' => array ( 'title' => __( 'Name' , 'lifterlms' ), ), 'status' => array ( 'title' => __( 'Status' , 'lifterlms' ), ), 'enrolled' => array ( 'title' => __( 'Enrolled' , 'lifterlms' ), ), ); } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.2.0 | Introduced. |