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_Settings::tabs()

List of tabs & labels for the settings panel.


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)


Top ↑

Source Source

File: classes/Admin/Settings.php

	public static function tabs() {
		static $tabs;

		if ( ! isset( $tabs ) ) {
			$tabs = apply_filters( 'pum_settings_tabs', array(
				'general'       => __( 'General', 'popup-maker' ),
				'subscriptions' => __( 'Subscriptions', 'popup-maker' ),
				'extensions'    => __( 'Extensions', 'popup-maker' ),
				'licenses'      => __( 'Licenses', 'popup-maker' ),
				'privacy'       => __( 'Privacy', 'popup-maker' ),
				'misc'          => __( 'Misc', 'popup-maker' ),
			) );

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


		return $tabs;
	}


Top ↑

User Contributed Notes User Contributed Notes

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