LLMS_Admin_Post_Table_Achievements
Customize display of the achievement post table.
Contents
Source Source
File: includes/admin/post-types/post-tables/class-llms-admin-post-table-achievements.php
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | class LLMS_Admin_Post_Table_Achievements { use LLMS_Trait_Award_Templates_Post_List_Table; use LLMS_Trait_User_Engagement_Type; /** * Constructor * * @since 6.0.0 * * @return void */ public function __construct() { $this ->engagement_type = 'achievement' ; $this ->award_template_row_actions(); // defined in LLMS_Trait_Award_Templates_Post_List_Table. } } |
Expand full source code Collapse full source code View on GitHub
Methods Methods
- __construct — Constructor
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |