';
$this->logo();
$this->navigation( $page );
$this->working_spinner(); // Hidden container for the working spinner.
echo '';
$this->alert_fields(); // Hidden container for the alert fields.
$this->progress_bar();
$this->message_fields(); // Hidden container for the message fields.
}
/**
* Generates the logo part of the header. The logo also contains a link to the main page of the plugin.
*
* @since 3.2.0.
* @return void
*/
private function logo() {
echo
'
';
}
/**
* Generates the navigation part of the header. The navigation contains links to the different pages of the plugin.
*
* @param string $page the page that is currently active.
*
* @since 3.2.0.
* @return void
* @noinspection HtmlUnknownTarget
*/
private function navigation( $page ) {
echo '';
}
/**
* Generates the spinner part of the header. The working spinner is used to indicate that a specific action is in progress.
*
* @since 3.2.0.
* @return void
*/
private function working_spinner() {
echo
'';
}
/**
* Generates the alert fields part of the header. The alert fields are used to display error, success and warning messages.
*
* @since 3.2.0.
* @return void
*/
private function alert_fields() {
echo
'
';
}
/**
* Generates a progress bar element.
*
* @since 3.7.0.
* @return void
*/
private function progress_bar() {
echo
'';
}
/**
* Can be used to display a notice message like a promotion message.
*
* @since 3.5.0.
* @return void
*/
private function message_fields() {
echo '';
//'This is an eastern promotion message!
';
}
}
// end of WPPFM_Main_Header class
endif;