MP_StyleSettings::filter_menu( string $list )

Filter Settings Menu.


Description Description

See also See also


Top ↑

Parameters Parameters

$list

(string) (Required) list of style settings menu


Top ↑

Return Return

(string) list of style settings menu


Top ↑

Source Source

File: mortgage-platform/Inc/Base/Settings/MP_StyleSettings.php

	public function filter_menu( $list ) {

		if ( isset( $_GET['tab'] ) && 'style' === $_GET['tab'] ) {
			$list .= '<li class="active"><a href="?page=' . esc_attr( MortgagePlatform::$domain ) . '&tab=style" >' . esc_html__( 'Style Settings', 'mortgage_platform' ) . '</a></li>';
		} else {
			$list .= '<li ><a href="?page=' . esc_attr( MortgagePlatform::$domain ) . '&tab=style" >' . esc_html__( 'Style Settings', 'mortgage_platform' ) . '</a></li>';
		}

		return $list;

	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.