Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Commit

Permalink
Fixed navigation.php code sniff build error
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-marshall committed Jan 27, 2016
1 parent 71e2220 commit a880a96
Showing 1 changed file with 136 additions and 133 deletions.
269 changes: 136 additions & 133 deletions library/navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,27 @@
*/

register_nav_menus(array(
'top-bar-r' => 'Right Top Bar',
'top-bar-r' => 'Right Top Bar',
'mobile-nav' => 'Mobile',
));


/**
* Desktop navigation - right top bar
* http://codex.wordpress.org/Function_Reference/wp_nav_menu
*
* @link http://codex.wordpress.org/Function_Reference/wp_nav_menu
*/
if ( ! function_exists( 'foundationpress_top_bar_r' ) ) {
function foundationpress_top_bar_r() {
wp_nav_menu(array(
'container' => false, // Remove nav container
'menu_class' => 'dropdown menu', // Adding custom nav class
'items_wrap' => '<ul id="%1$s" class="%2$s show-for-medium" data-dropdown-menu>%3$s</ul>',
'theme_location' => 'top-bar-r', // Where it's located in the theme
'depth' => 3, // Limit the depth of the nav
'fallback_cb' => false, // Fallback function (see below)
'walker' => new Foundationpress_Top_Bar_Walker(),
));
wp_nav_menu(array(
'container' => false, // Remove nav container
'menu_class' => 'dropdown menu', // Adding custom nav class
'items_wrap' => '<ul id="%1$s" class="%2$s show-for-medium" data-dropdown-menu>%3$s</ul>',
'theme_location' => 'top-bar-r', // Where it's located in the theme
'depth' => 3, // Limit the depth of the nav
'fallback_cb' => false, // Fallback function (see below)
'walker' => new Foundationpress_Top_Bar_Walker(),
));
}
}

Expand All @@ -38,18 +39,19 @@ function foundationpress_top_bar_r() {
*/
if ( ! function_exists( 'foundationpress_mobile_nav' ) ) {
function foundationpress_mobile_nav() {
wp_nav_menu(array(
'container' => false, // Remove nav container
'menu' => __( 'mobile-nav', 'foundationpress' ),
'menu_class' => 'vertical menu',
'theme_location' => 'mobile-nav',
'items_wrap' => '<ul id="%1$s" class="%2$s show-for-small-only" data-accordion-menu>%3$s</ul>',
'fallback_cb' => false,
'walker' => new Foundationpress_Mobile_Walker(),
));
wp_nav_menu(array(
'container' => false, // Remove nav container
'menu' => __( 'mobile-nav', 'foundationpress' ),
'menu_class' => 'vertical menu',
'theme_location' => 'mobile-nav',
'items_wrap' => '<ul id="%1$s" class="%2$s show-for-small-only" data-accordion-menu>%3$s</ul>',
'fallback_cb' => false,
'walker' => new Foundationpress_Mobile_Walker(),
));
}
}


/**
* Add support for buttons in the top-bar menu:
* 1) In WordPress admin, go to Apperance -> Menus.
Expand All @@ -59,170 +61,171 @@ function foundationpress_mobile_nav() {
*/
if ( ! function_exists( 'foundationpress_add_menuclass' ) ) {
function foundationpress_add_menuclass( $ulclass ) {
$find = array('/<a rel="button"/', '/<a title=".*?" rel="button"/');
$replace = array('<a rel="button" class="button"', '<a rel="button" class="button"');
$find = array('/<a rel="button"/', '/<a title=".*?" rel="button"/');
$replace = array('<a rel="button" class="button"', '<a rel="button" class="button"');

return preg_replace( $find, $replace, $ulclass, 1 );
return preg_replace( $find, $replace, $ulclass, 1 );
}
add_filter( 'wp_nav_menu','foundationpress_add_menuclass' );
}


/**
* Adapted for Foundation from http://thewebtaylor.com/articles/wordpress-creating-breadcrumbs-without-a-plugin
*
* @param bool $showhome should the breadcrumb be shown when on homepage (only one deactivated entry for home).
* @param bool $separatorclass should a separator class be added (in case :before is not an option).
*/

if ( ! function_exists( 'foundationpress_breadcrumb' ) ) {
function foundationpress_breadcrumb( $showhome = true, $separatorclass = false ) {
function foundationpress_breadcrumb( $showhome = true, $separatorclass = false ) {

// Settings
$separator = '&gt;';
$id = 'breadcrumbs';
$class = 'breadcrumbs';
$home_title = 'Homepage';
// Settings
$separator = '&gt;';
$id = 'breadcrumbs';
$class = 'breadcrumbs';
$home_title = 'Homepage';

// Get the query & post information
global $post,$wp_query;
$category = get_the_category();
// Get the query & post information
global $post,$wp_query;
$category = get_the_category();

// Build the breadcrums
echo '<ul id="' . $id . '" class="' . $class . '">';
// Build the breadcrums
echo '<ul id="' . $id . '" class="' . $class . '">';

// Do not display on the homepage
if ( ! is_front_page() ) {
// Do not display on the homepage
if ( ! is_front_page() ) {

// Home page
echo '<li class="item-home"><a class="bread-link bread-home" href="' . get_home_url() . '" title="' . $home_title . '">' . $home_title . '</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-home"> ' . $separator . ' </li>';
}
// Home page
echo '<li class="item-home"><a class="bread-link bread-home" href="' . get_home_url() . '" title="' . $home_title . '">' . $home_title . '</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-home"> ' . $separator . ' </li>';
}

if ( is_single() ) {
if ( is_single() ) {

// Single post (Only display the first category)
echo '<li class="item-cat item-cat-' . $category[0]->term_id . ' item-cat-' . $category[0]->category_nicename . '"><a class="bread-cat bread-cat-' . $category[0]->term_id . ' bread-cat-' . $category[0]->category_nicename . '" href="' . get_category_link($category[0]->term_id) . '" title="' . $category[0]->cat_name . '">' . $category[0]->cat_name . '</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-' . $category[0]->term_id . '"> ' . $separator . ' </li>';
}
echo '<li class="item-current item-' . $post->ID . '"><strong class="bread-current bread-' . $post->ID . '" title="' . get_the_title() . '">' . get_the_title() . '</strong></li>';
// Single post (Only display the first category)
echo '<li class="item-cat item-cat-' . $category[0]->term_id . ' item-cat-' . $category[0]->category_nicename . '"><a class="bread-cat bread-cat-' . $category[0]->term_id . ' bread-cat-' . $category[0]->category_nicename . '" href="' . get_category_link($category[0]->term_id) . '" title="' . $category[0]->cat_name . '">' . $category[0]->cat_name . '</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-' . $category[0]->term_id . '"> ' . $separator . ' </li>';
}
echo '<li class="item-current item-' . $post->ID . '"><strong class="bread-current bread-' . $post->ID . '" title="' . get_the_title() . '">' . get_the_title() . '</strong></li>';

} else if ( is_category() ) {
} else if ( is_category() ) {

// Category page
echo '<li class="item-current item-cat-' . $category[0]->term_id . ' item-cat-' . $category[0]->category_nicename . '"><strong class="bread-current bread-cat-' . $category[0]->term_id . ' bread-cat-' . $category[0]->category_nicename . '">' . $category[0]->cat_name . '</strong></li>';
// Category page
echo '<li class="item-current item-cat-' . $category[0]->term_id . ' item-cat-' . $category[0]->category_nicename . '"><strong class="bread-current bread-cat-' . $category[0]->term_id . ' bread-cat-' . $category[0]->category_nicename . '">' . $category[0]->cat_name . '</strong></li>';

} else if ( is_page() ) {
} else if ( is_page() ) {

// Standard page
if ( $post->post_parent ) {
// Standard page
if ( $post->post_parent ) {

// If child page, get parents
$anc = get_post_ancestors( $post->ID );
// If child page, get parents
$anc = get_post_ancestors( $post->ID );

// Get parents in the right order
$anc = array_reverse( $anc );
// Get parents in the right order
$anc = array_reverse( $anc );

// Parent page loop
$parents = '';
foreach ( $anc as $ancestor ) {
$parents .= '<li class="item-parent item-parent-' . $ancestor . '"><a class="bread-parent bread-parent-' . $ancestor . '" href="' . get_permalink($ancestor) . '" title="' . get_the_title($ancestor) . '">' . get_the_title($ancestor) . '</a></li>';
if ( $separatorclass ) {
$parents .= '<li class="separator separator-' . $ancestor . '"> ' . $separator . ' </li>';
}
}
// Parent page loop
$parents = '';
foreach ( $anc as $ancestor ) {
$parents .= '<li class="item-parent item-parent-' . $ancestor . '"><a class="bread-parent bread-parent-' . $ancestor . '" href="' . get_permalink($ancestor) . '" title="' . get_the_title($ancestor) . '">' . get_the_title($ancestor) . '</a></li>';
if ( $separatorclass ) {
$parents .= '<li class="separator separator-' . $ancestor . '"> ' . $separator . ' </li>';
}
}

// Display parent pages
echo $parents;
// Display parent pages
echo $parents;

// Current page
echo '<li class="current item-' . $post->ID . '">' . get_the_title() . '</li>';
// Current page
echo '<li class="current item-' . $post->ID . '">' . get_the_title() . '</li>';

} else {
} else {

// Just display current page if not parents
echo '<li class="current item-' . $post->ID . '"> ' . get_the_title() . '</li>';
// Just display current page if not parents
echo '<li class="current item-' . $post->ID . '"> ' . get_the_title() . '</li>';

}
} else if ( is_tag() ) {
}
} else if ( is_tag() ) {

// Tag page
// Get tag information
$term_id = get_query_var('tag_id');
$taxonomy = 'post_tag';
$args = 'include=' . $term_id;
$terms = get_terms($taxonomy, $args);
// Tag page
// Get tag information
$term_id = get_query_var('tag_id');
$taxonomy = 'post_tag';
$args = 'include=' . $term_id;
$terms = get_terms($taxonomy, $args);

// Display the tag name
echo '<li class="current item-tag-' . $terms[0]->term_id . ' item-tag-' . $terms[0]->slug . '">' . $terms[0]->name . '</li>';
// Display the tag name
echo '<li class="current item-tag-' . $terms[0]->term_id . ' item-tag-' . $terms[0]->slug . '">' . $terms[0]->name . '</li>';

} elseif ( is_day() ) {
} elseif ( is_day() ) {

// Day archive
// Year link
echo '<li class="item-year item-year-' . get_the_time('Y') . '"><a class="bread-year bread-year-' . get_the_time('Y') . '" href="' . get_year_link(get_the_time('Y')) . '" title="' . get_the_time('Y') . '">' . get_the_time('Y') . ' Archives</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-' . get_the_time('Y') . '"> ' . $separator . ' </li>';
}
// Day archive
// Year link
echo '<li class="item-year item-year-' . get_the_time('Y') . '"><a class="bread-year bread-year-' . get_the_time('Y') . '" href="' . get_year_link(get_the_time('Y')) . '" title="' . get_the_time('Y') . '">' . get_the_time('Y') . ' Archives</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-' . get_the_time('Y') . '"> ' . $separator . ' </li>';
}

// Month link
echo '<li class="item-month item-month-' . get_the_time('m') . '"><a class="bread-month bread-month-' . get_the_time('m') . '" href="' . get_month_link(get_the_time('Y'), get_the_time('m')) . '" title="' . get_the_time('M') . '">' . get_the_time('M') . ' Archives</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-' . get_the_time('m') . '"> ' . $separator . ' </li>';
}
// Month link
echo '<li class="item-month item-month-' . get_the_time('m') . '"><a class="bread-month bread-month-' . get_the_time('m') . '" href="' . get_month_link(get_the_time('Y'), get_the_time('m')) . '" title="' . get_the_time('M') . '">' . get_the_time('M') . ' Archives</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-' . get_the_time('m') . '"> ' . $separator . ' </li>';
}

// Day display
echo '<li class="current item-' . get_the_time('j') . '">' . get_the_time('jS') . ' ' . get_the_time('M') . ' Archives</li>';
// Day display
echo '<li class="current item-' . get_the_time('j') . '">' . get_the_time('jS') . ' ' . get_the_time('M') . ' Archives</li>';

} else if ( is_month() ) {
} else if ( is_month() ) {

// Month Archive
// Year link
echo '<li class="item-year item-year-' . get_the_time('Y') . '"><a class="bread-year bread-year-' . get_the_time('Y') . '" href="' . get_year_link(get_the_time('Y')) . '" title="' . get_the_time('Y') . '">' . get_the_time('Y') . ' Archives</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-' . get_the_time('Y') . '"> ' . $separator . ' </li>';
}
// Month Archive
// Year link
echo '<li class="item-year item-year-' . get_the_time('Y') . '"><a class="bread-year bread-year-' . get_the_time('Y') . '" href="' . get_year_link(get_the_time('Y')) . '" title="' . get_the_time('Y') . '">' . get_the_time('Y') . ' Archives</a></li>';
if ( $separatorclass ) {
echo '<li class="separator separator-' . get_the_time('Y') . '"> ' . $separator . ' </li>';
}

// Month display
echo '<li class="item-month item-month-' . get_the_time('m') . '">' . get_the_time('M') . ' Archives</li>';
// Month display
echo '<li class="item-month item-month-' . get_the_time('m') . '">' . get_the_time('M') . ' Archives</li>';

} else if ( is_year() ) {
} else if ( is_year() ) {

// Display year archive
echo '<li class="current item-current-' . get_the_time('Y') . '">' . get_the_time('Y') . ' Archives</li>';
// Display year archive
echo '<li class="current item-current-' . get_the_time('Y') . '">' . get_the_time('Y') . ' Archives</li>';

} else if ( is_author() ) {
} else if ( is_author() ) {

// Auhor archive
// Get the author information
global $author;
$userdata = get_userdata($author);
// Auhor archive
// Get the author information
global $author;
$userdata = get_userdata($author);

// Display author name
echo '<li class="current item-current-' . $userdata->user_nicename . '">Author: ' . $userdata->display_name . '</li>';
// Display author name
echo '<li class="current item-current-' . $userdata->user_nicename . '">Author: ' . $userdata->display_name . '</li>';

} else if ( get_query_var('paged') ) {
} else if ( get_query_var('paged') ) {

// Paginated archives
echo '<li class="current item-current-' . get_query_var('paged') . '">'.__('Page') . ' ' . get_query_var('paged') . '</li>';
// Paginated archives
echo '<li class="current item-current-' . get_query_var('paged') . '">'.__('Page') . ' ' . get_query_var('paged') . '</li>';

} else if ( is_search() ) {
} else if ( is_search() ) {

// Search results page
echo '<li class="current item-current-' . get_search_query() . '">Search results for: ' . get_search_query() . '</li>';
// Search results page
echo '<li class="current item-current-' . get_search_query() . '">Search results for: ' . get_search_query() . '</li>';

} elseif ( is_404() ) {
} elseif ( is_404() ) {

// 404 page
echo '<li>Error 404</li>';
}
} else {
if ( $showhome ) {
echo '<li class="item-home current">' . $home_title . '</li>';
}
}
echo '</ul>';
}
// 404 page
echo '<li>Error 404</li>';
}
} else {
if ( $showhome ) {
echo '<li class="item-home current">' . $home_title . '</li>';
}
}
echo '</ul>';
}
}
?>

0 comments on commit a880a96

Please sign in to comment.