WPCF7_Help_Tabs::set_help_tabs()publicCF7 1.0

Метод класса: WPCF7_Help_Tabs{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WPCF7_Help_Tabs = new WPCF7_Help_Tabs();
$WPCF7_Help_Tabs->set_help_tabs( $screen_type );
$screen_type (обязательный)
-

Код WPCF7_Help_Tabs::set_help_tabs() CF7 5.9.3

public function set_help_tabs( $screen_type ) {
	switch ( $screen_type ) {
		case 'list':
			$this->screen->add_help_tab( array(
				'id' => 'list_overview',
				'title' => __( 'Overview', 'contact-form-7' ),
				'content' => $this->content( 'list_overview' ),
			) );

			$this->screen->add_help_tab( array(
				'id' => 'list_available_actions',
				'title' => __( 'Available Actions', 'contact-form-7' ),
				'content' => $this->content( 'list_available_actions' ),
			) );

			$this->sidebar();

			return;
		case 'edit':
			$this->screen->add_help_tab( array(
				'id' => 'edit_overview',
				'title' => __( 'Overview', 'contact-form-7' ),
				'content' => $this->content( 'edit_overview' ),
			) );

			$this->screen->add_help_tab( array(
				'id' => 'edit_form_tags',
				'title' => __( 'Form-tags', 'contact-form-7' ),
				'content' => $this->content( 'edit_form_tags' ),
			) );

			$this->screen->add_help_tab( array(
				'id' => 'edit_mail_tags',
				'title' => __( 'Mail-tags', 'contact-form-7' ),
				'content' => $this->content( 'edit_mail_tags' ),
			) );

			$this->sidebar();

			return;
		case 'integration':
			$this->screen->add_help_tab( array(
				'id' => 'integration_overview',
				'title' => __( 'Overview', 'contact-form-7' ),
				'content' => $this->content( 'integration_overview' ),
			) );

			$this->sidebar();

			return;
	}
}