Sub_Nav

Summary

Class Sub_Nav


Description

Responsible for profile settings rendering and saving


Source

File: src/BigCommerce/Accounts/Sub_Nav.php

class Sub_Nav {
	/**
     * Handle subnav visibility above the content
     *
	 * @param string $content
	 *
	 * @return string
	 * @filter the_content
	 */
	public function add_subnav_above_content( $content ) {
		if ( ! is_singular() || ! is_user_logged_in() ) {
			return $content;
		}
		$post_id = get_queried_object_id();
		if ( $post_id !== get_the_ID() ) {
			return $content; // don't filter if we're not on the main post
		}
		/**
		 * Filter whether to display the account subnav before the post content
		 * on account pages.
		 *
		 * @param bool $display True to display the subnav, false to skip it
		 * @param int  $post_id The ID of the current page
		 */
		if ( ! apply_filters( 'bigcommerce/account/do_subnav', true, $post_id ) ) {
			return $content;
		}
		switch ( $post_id ) {
			case get_option( Account_Page::NAME, 0 ):
			case get_option( Orders_Page::NAME, 0 ):
			case get_option( Address_Page::NAME, 0 ):
			case get_option( Wishlist_Page::NAME, 0 ):
				return $this->get_subnav() . $content;
			default:
				return $content;
		}
	}

    /**
     * Get and render sub nav
     *
     * @return string
     */
	private function get_subnav() {
		$component = Sub_Nav_Links::factory( [
			Sub_Nav_Links::LINKS => $this->get_links(),
		] );

		return $component->render();
	}

    /**
     * Get sub nav links
     *
     * @return mixed|void
     */
	private function get_links() {
		$links = [];
		foreach ( [ Account_Page::NAME, Orders_Page::NAME, Address_Page::NAME, Wishlist_Page::NAME ] as $option ) {
			$post_id = get_option( $option, 0 );
			if ( $post_id ) {
				$links[] = [
					'url'     => get_permalink( $post_id ),
					'label'   => get_the_title( $post_id ),
					'current' => ( $post_id == get_queried_object_id() ),
				];
			}
		}

		/**
		 * Filter the links that show in the account subnav.
		 *
		 * @param array[] $links Each link will have the properties:
		 *                       `url` - The URL of the link
		 *                       `label` - The label of the link
		 *                       `current` - Whether the link is to the current page
		 */
		return apply_filters( 'bigcommerce/account/subnav/links', $links );
	}
}

Methods


User Contributed Notes

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