LLMS_Admin_Post_Table_Forms::__construct()
Constructor
Contents
Return Return
(void)
Source Source
File: includes/admin/post-types/post-tables/class-llms-admin-post-table-forms.php
public function __construct() { add_filter( 'manage_llms_form_posts_columns', array( $this, 'add_columns' ), 10, 1 ); add_filter( 'bulk_actions-edit-llms_form', array( $this, 'manage_bulk_actions' ), 10, 1 ); add_filter( 'post_row_actions', array( $this, 'manage_post_row_actions' ), 10, 2 ); add_action( 'manage_llms_form_posts_custom_column', array( $this, 'manage_columns' ), 10, 2 ); add_action( 'pre_get_posts', array( 'LLMS_Admin_Post_Table_Forms', 'pre_get_posts' ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |