Admin_UI::list_table_manage_link( array $views = array() )

Summary

Add a link to manage products in BigCommerce to the top of the products list table


Parameters

$views

(array) (Optional)

Default value: array()


Return

(array)


Source

File: src/BigCommerce/Post_Types/Product/Admin_UI.php

	public function list_table_manage_link( $views = [] ) {
		$views[ 'bc-manage-products' ] = sprintf(
			'<a href="%s" target="_blank" rel="noopener">%s</a>',
			esc_url( $this->get_manage_products_url() ),
			__( 'Manage on BigCommerce', 'bigcommerce' )
		);

		return $views;
	}

User Contributed Notes

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