%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Integration/
Upload File :
Create Path :
Current File : //var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Integration/NinjaForms.php

<?php

namespace AC\Integration;

use AC\Integration;
use AC\ListScreen;
use AC\ListScreenPost;
use AC\Screen;
use AC\Type\Url\Site;

final class NinjaForms extends Integration {

	public function __construct() {
		parent::__construct(
			'ac-addon-ninjaforms/ac-addon-ninjaforms.php',
			__( 'Ninja Forms', 'codepress-admin-columns' ),
			'assets/images/addons/ninja-forms.png',
			__( 'Add Ninja Forms columns that can be sorted, filtered and directly edited!', 'codepress-admin-columns' ),
			null,
			new Site( Site::PAGE_ADDON_NINJA_FORMS )
		);
	}

	public function is_plugin_active() {
		return class_exists( 'Ninja_Forms' );
	}

	private function get_post_types() {
		return [ 'nf_sub' ];
	}

	public function show_notice( Screen $screen ) {
		return 'edit' === $screen->get_base()
		       && in_array( $screen->get_post_type(), $this->get_post_types() );
	}

	public function show_placeholder( ListScreen $list_screen ) {
		return $list_screen instanceof ListScreenPost
		       && in_array( $list_screen->get_post_type(), $this->get_post_types() );
	}

}

Zerion Mini Shell 1.0