Coder Social home page Coder Social logo

Comments (4)

TobiasBg avatar TobiasBg commented on July 20, 2024

Hi @maurocolella,

thanks for this suggestion! For consistency, this would indeed make sense.

Out of interest: What kind of meta data are you adding to the columns?

Regards,
Tobias

from tablepress.

maurocolella avatar maurocolella commented on July 20, 2024

from tablepress.

maurocolella avatar maurocolella commented on July 20, 2024

Might I suggest also adding this filter to the thickbox?

$data = apply_filters('tablepress_view_data', $view_data);

As:

public function handle_get_action_editor_button_thickbox() {
	TablePress::check_nonce( 'editor_button_thickbox' );

	if ( ! current_user_can( 'tablepress_list_tables' ) ) {
		wp_die( __( 'Sorry, you are not allowed to access this page.', 'default' ), 403 );
	}

	$view_data = array(
		// Load all table IDs without priming the post meta cache, as table options/visibility are not needed.
		'table_ids' => TablePress::$model_table->load_all( false ),
	);

	set_current_screen( 'tablepress_editor_button_thickbox' );

	/**
	 * Filter the data that is passed to the current TablePress View.
	 *
	 * @since 1.0.0
	 *
	 * @param array  $data   Data for the view.
	 * @param string $action The current action for the view.
	 */
	$view_data = apply_filters('tablepress_view_data', $view_data);

	// Prepare, initialize, and render the view.
	$this->view = TablePress::load_view( 'editor_button_thickbox', $view_data );
	$this->view->render();
}

from tablepress.

TobiasBg avatar TobiasBg commented on July 20, 2024

Hi,

sorry for the long delay on this!
A lot has happened around TablePress, and that Editor Button Thickbox will actually go away -- making this change obsolete. Please see https://tablepress.org/8-million-downloads-tablepress-2-0/ for the latest news :-)

Best wishes,
Tobias

from tablepress.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.