LLMS_Admin_Post_Tables::__construct()
Constructor
Contents
Source Source
File: includes/admin/post-types/class.llms.post.tables.php
public function __construct() { // Load all post table classes. foreach ( glob( LLMS_PLUGIN_DIR . '/includes/admin/post-types/post-tables/*.php' ) as $filename ) { include_once $filename; } add_filter( 'post_row_actions', array( $this, 'add_links' ), 777, 2 ); add_action( 'admin_init', array( $this, 'handle_link_actions' ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |