LLMS_Admin_Users_Table::__construct()

Constructor.


Return Return

(void)


Top ↑

Source Source

File: includes/admin/class-llms-admin-users-table.php

	public function __construct() {

		add_filter( 'manage_users_columns', array( $this, 'add_cols' ) );
		add_filter( 'manage_users_custom_column', array( $this, 'output_col' ), 10, 3 );

		add_filter( 'users_list_table_query_args', array( $this, 'modify_query_args' ) );
		add_filter( 'views_users', array( $this, 'modify_views' ) );

		add_filter( 'user_row_actions', array( $this, 'add_actions' ), 20, 2 );

	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Remove load_dependencies() method hook.
4.0.0 Add custom user table columns and action links.
3.34.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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