LLMS_Admin_Post_Table_Courses::__construct()

Constructor.


Return Return

(void)


Top ↑

Source Source

File: includes/admin/post-types/post-tables/class.llms.admin.post.table.courses.php

	public function __construct() {

		add_filter( 'post_row_actions', array( $this, 'add_links' ), 1, 2 );

		add_filter( 'manage_course_posts_columns', array( $this, 'add_columns' ), 10, 1 );
		add_action( 'manage_course_posts_custom_column', array( $this, 'manage_columns' ), 10, 2 );

		add_filter( 'bulk_actions-edit-course', array( $this, 'register_bulk_actions' ) );
		add_filter( 'handle_bulk_actions-edit-course', array( $this, 'handle_bulk_actions' ), 10, 3 );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
7.1.0 Added new custom columns.
3.3.0
3.13.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.