Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
PUM_Admin_Tools::tabs()

Tabs & labels


Description Description


Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808

Return Return

(array) $tabs


Top ↑

Source Source

File: classes/Admin/Tools.php

	public static function tabs() {
		static $tabs;

		if ( ! isset( $tabs ) ) {
			$tabs = apply_filters(
				'pum_tools_tabs',
				array(
					'betas'            => __( 'Beta Versions', 'popup-maker' ),
					'error_log'        => __( 'Error Log', 'popup-maker' ),
					'action_scheduler' => __( 'Scheduled Actions', 'popup-maker' ),
					'import'           => __( 'Import / Export', 'popup-maker' ),
				)
			);

			/** @deprecated 1.7.0 */
			$tabs = apply_filters( 'popmake_tools_tabs', $tabs );
		}

		return $tabs;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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