PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/qpfajntr/ekhaya.265thami.com/y77.php on line 8
$#$#$#

Dir : /home/qpfajntr/NBM Site Backup/wp-content/plugins/link-library/
Server: Linux premium288.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
IP: 162.254.39.137
Choose File :

Url:
Dir : /home/qpfajntr/NBM Site Backup/wp-content/plugins/link-library/render-link-library-cats-sc.php

<?php
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

require_once plugin_dir_path( __FILE__ ) . 'link-library-defaults.php';

/**
 *
 * Render the output of the link-library-cats shortcode
 *
 * @param $LLPluginClass    Link Library main plugin class
 * @param $generaloptions   General Plugin Settings
 * @param $libraryoptions   Selected library settings array
 * @param $settings         Settings ID
 * @return                  List of categories output for browser
 */

function RenderLinkLibraryCategories( $LLPluginClass, $generaloptions, $libraryoptions, $settings, $targetlibrary, $parent_cat_id, $level = 0, $parent_id_array ) {
    $generaloptions = wp_parse_args( $generaloptions, ll_reset_gen_settings( 'return' ) );
    extract( $generaloptions );

    $libraryoptions = wp_parse_args( $libraryoptions, ll_reset_options( 1, 'list', 'return' ) );
    extract( $libraryoptions );

	$linkeditoruser = current_user_can( 'manage_links' );

    /* This case will only happen if the user entered bad data in the admin page or if someone is trying to inject bad data in SQL query */
    if ( !empty( $categorylist ) ) {
        $categorylistarray = explode( ',', $categorylist );

        if ( true === array_filter( $categorylistarray, 'is_int' ) ) {
            return 'List of requested categories is invalid. Please go back to Link Library admin panel to correct.';
        }
    }

    if ( !empty( $excludecategorylist ) ) {
        $excludecategorylistarray = explode( ',', $excludecategorylist );

        if ( true === array_filter( $excludecategorylistarray, 'is_int' ) ) {
            return 'List of requested excluded categories is invalid. Please go back to Link Library admin panel to correct.';
        }
    }

    $output = '';

    $categoryid = '';

    if ( isset($_GET['cat_id'] ) ) {
        $categoryid = intval( $_GET['cat_id'] );
    } elseif ( isset( $_GET['catname'] ) ) {
        $categoryterm = get_term_by( 'name', sanitize_text_field( urldecode( $_GET['catname'] ) ), $generaloptions['cattaxonomy'] );
		if ( false !== $categoryterm ) {
			$categoryid = $categoryterm->term_id;
		}	    
    } elseif ( $showonecatonly ) {
	    $categoryid = $defaultsinglecat_cpt;
    }

    if ( !isset( $_GET['searchll'] ) || true == $showcatonsearchresults ) {
        $countcat = 0;

        $order = strtolower( $order );

        if ( 0 == $level ) {
	        $output .= "<!-- Link Library Categories Output -->\n\n";
        }

        if ( $showonecatonly && ( 'AJAX' == $showonecatmode || empty( $showonecatmode ) ) && empty( $targetlibrary ) ) {
            $nonce = wp_create_nonce( 'link_library_ajax_refresh' );

            $output .= "<script type=\"text/javascript\">\n";
	        $output .= "if(typeof showLinkCat" . $settings . " !== 'function'){\n";
	        $output .= "window.showLinkCat" . $settings . " = function ( _incomingID, _settingsID, _pagenumber, _searchll ) {\n";

            $output .= "\tjQuery('#contentLoading" . $settings . "').toggle();" .
                "jQuery.ajax( {" .
                "    type: 'POST', " .
                "    url: '" . admin_url( 'admin-ajax.php' ) . "', " .
                "    data: { action: 'link_library_ajax_update', " .
                "            _ajax_nonce: '" . $nonce . "', " .
                "            id : _incomingID, " .
                "            settings : _settingsID, " .
                "            ajaxupdate : true, " .
                "            searchll : _searchll, " .
                "            linkresultpage: _pagenumber }, " .
                "    success: function( data ){ " .
                "            jQuery('#linklist' + _settingsID ).html( data ); " .
                "            jQuery('#contentLoading" . $settings . "').toggle();\n" .
                "            } } ); ";
	        $output .= "}\n";
            $output .= "}\n";

            $output .= "</script>\n\n";
        }

	    $currentcatletter = '';

	    if ( $cat_letter_filter != 'no' ) {
		    require_once plugin_dir_path( __FILE__ ) . 'render-link-library-alpha-filter.php';
		    $result = RenderLinkLibraryAlphaFilter( $LLPluginClass, $generaloptions, $libraryoptions, $settings, 'normal' );

		    $currentcatletter = $result['currentcatletter'];

		    if ( 'beforecats' == $cat_letter_filter || 'beforecatsandlinks' == $cat_letter_filter ) {
			    $output .= $result['output'];
		    }
	    }

		$link_categories_query_args = array( );

		if ( isset( $parent_cat_id ) ) {
			$link_categories_query_args['parent'] = $parent_cat_id;
		}

        if ( $hide_if_empty ) {
            $link_categories_query_args['hide_empty'] = true;
            global $hide_if_empty_filter;
            $hide_if_empty_filter = $hide_if_empty_filter;
        } else {
            $link_categories_query_args['hide_empty'] = false;
        }

        if ( !$showuserlinks && !$showinvisible && !$showinvisibleadmin ) {
            add_filter( 'get_terms', 'link_library_get_terms_filter_only_publish', 10, 3 );
        } elseif ( $showuserlinks && !$showinvisible && !$showinvisibleadmin ) {
            add_filter( 'get_terms', 'link_library_get_terms_filter_publish_pending', 10, 3 );
        } elseif ( !$showuserlinks && ( $showinvisible || ( $showinvisibleadmin && $linkeditoruser ) ) ) {
            add_filter( 'get_terms', 'link_library_get_terms_filter_publish_draft', 10, 3 );
        } elseif ( $showuserlinks && ( $showinvisible || ( $showinvisibleadmin && $linkeditoruser ) ) ) {
            add_filter( 'get_terms', 'link_library_get_terms_filter_publish_draft_pending', 10, 3 );
        }

		// Could build an array of parents that gets passed down each level and then cycle through to remove all parents

        if ( !empty( $categorylist_cpt ) && empty( $singlelinkid ) ) {
			$link_categories_query_args['include'] = explode( ',', $categorylist_cpt );

			if ( $level != 0 ) {
				foreach ( $parent_id_array as $parent_id_search ) {
					$pos = array_search( $parent_id_search, $link_categories_query_args['include'] );
					if ($pos !== false) {
						unset( $link_categories_query_args['include'][$pos] );
					}	
				}
			}            
        }

        if ( !empty( $excludecategorylist_cpt ) && empty( $singlelinkid ) ) {
            $link_categories_query_args['exclude'] = explode( ',', $excludecategorylist_cpt );

			/* if ( $level != 0 ) {
				$pos = array_search( $parent_cat_id, $link_categories_query_args['exclude'] );
				if ($pos !== false) {
					unset( $link_categories_query_args['exclude'][$pos] );
				}
			} */
        }

        /* if ( isset( $categoryname ) && !empty( $categoryname ) && 'HTMLGETPERM' == $showonecatmode && empty( $singlelinkid ) && $level == 0 ) {
            $link_categories_query_args['slug'] = $categoryname;
        }

        if ( ( !empty( $categorynamelist ) || isset( $_GET['catname'] ) ) && empty( $singlelinkid ) && $level == 0 ) {
            $link_categories_query_args['name'] = explode( ',', urldecode( $categorynamelist ) );
        } */

        $validdirections = array( 'ASC', 'DESC' );

        if ( 'name' == $order ) {
            $link_categories_query_args['orderby'] = 'name';
            $link_categories_query_args['order'] = in_array( $direction, $validdirections ) ? $direction : 'ASC';
        } elseif ( 'id' == $order ) {
            $link_categories_query_args['orderby'] = 'id';
            $link_categories_query_args['order'] = in_array( $direction, $validdirections ) ? $direction : 'ASC';
        } elseif ( 'slug' == $order ) {
	        $link_categories_query_args['orderby'] = 'slug';
	        $link_categories_query_args['order'] = in_array( $direction, $validdirections ) ? $direction : 'ASC';
        }

        $link_categories = get_terms( $generaloptions['cattaxonomy'], $link_categories_query_args );

	    remove_filter( 'get_terms', 'link_library_get_terms_filter_only_publish' );
	    remove_filter( 'get_terms', 'link_library_get_terms_filter_publish_pending' );
	    remove_filter( 'get_terms', 'link_library_get_terms_filter_publish_draft' );
	    remove_filter( 'get_terms', 'link_library_get_terms_filter_publish_draft_pending' );

	    if ( !empty( $link_categories_query_args['include'] ) && !empty( $link_categories_query_args['exclude'] ) ) {
		    foreach( $link_categories as $link_key => $linkcat ) {
			    foreach( $link_categories_query_args['exclude'] as $excludedcat ) {
				    if ( $linkcat->term_id == $excludedcat ) {
					    unset( $link_categories[$link_key] );
				    }
			    }
		    }
	    }

        if ( 'catlist' == $order && $level == 0 ) {
            $temp_link_categories = $link_categories;
            $link_categories = array();
            foreach ( $link_categories_query_args['include'] as $sort_link_category_id ) {
                foreach ( $temp_link_categories as $temp_link_cat ) {
                    if ( $sort_link_category_id == $temp_link_cat->term_id ) {
                        $link_categories[] = $temp_link_cat;
                        continue;
                    }
                }
            }
        }

        if ( $debugmode ) {
			$output .= "\n<!-- Category taxonomy: " . print_r( $generaloptions['cattaxonomy'], TRUE ) . " -->\n\n";
			$output .= "\n<!-- Parent Cat ID: " . print_r( $parent_id_array, TRUE ) . " -->\n\n";
            $output .= "\n<!-- Category Query: " . print_r( $link_categories_query_args, TRUE ) . " -->\n\n";
            $output .= "\n<!-- Category Results: " . print_r( $link_categories, TRUE ) . " -->\n\n";
        }

        // Display each category
        if ( $link_categories ) {

            if ( $level == 0 ) {
	            $output .=  '<div id="linktable" class="linktable">';

	            if ( 'table' == $flatlist ) {
		            $output .= "<table width=\"" . $table_width . "%\">\n";
	            } elseif ( 'unordered' == $flatlist ) {
		            $output .= "<ul class='menu'>\n";
	            } elseif ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) {
		            $output .= "<form name='catselect'><select ";
		            if ( 'dropdowndirect' == $flatlist ) {
			            $output .= "onchange='showcategory( jQuery(\".catdropdown" . $settings . "\").val() )' ";
		            }
		            $output .= "name='catdropdown" . $settings . "' class='catdropdown catdropdown" . $settings . "' ";
					
					if ( !empty( $targetlibrary ) ) {
						$output .= "data-linklist-id='" . $targetlibrary . "'>";
					} else {
						$output .= "data-linklist-id='" . $settings . "'>";
					}

		            if ( $dropdownselectionprompt && !empty( $dropdownselectionprompttext ) ) {
		            	$output .= '<option value="">' . $dropdownselectionprompttext . '</option>';
		            }
	            } 
            } else {
	            if ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) {

	            } else {
		            $output .= "<ul class='linksubcatlist' style='padding-left: " . $level * 30 . "px;'>\n";
	            }
            }

            $totallinkcount = 0;
            $searchstring = '';

            foreach ( $link_categories as $catname ) {
	            $linkcount = 0;

	            $childcatparams =  array( 'taxonomy' => $generaloptions['cattaxonomy'], 'child_of' => $catname->term_id );

	            if ( $hide_if_empty ) {
		            $childcatparams['hide_empty'] = true;
	            } else {
		            $childcatparams['hide_empty'] = false;
	            }

	            $childcategories = get_terms( $childcatparams );

	            $cat_has_children = false;
	            if ( !is_wp_error( $childcategories ) && !empty( $childcategories ) ) {
		            $cat_has_children = true;
	            }

                if ( !empty( $currentcatletter ) && $cat_letter_filter != 'no' ) {
                    if ( substr( $catname->name, 0, 1) != $currentcatletter ) {
                        continue;
                    }
                }

                $catfront = '';
                $cattext = '';
                $catitem = '';
				$tag_type = '';

				if ( !empty( $taglist_cpt ) || ( isset( $_GET['link_tags'] ) && !empty( $_GET['link_tags'] ) ) ) {
					$tag_array = array();
	
					if ( ( isset( $_GET['link_tags'] ) && !empty( $_GET['link_tags'] ) ) ) {
						$tag_array = explode( '.', $_GET['link_tags'] );
						$tag_type = 'slug';
					} elseif( !empty( $taglist_cpt ) ) {
						$tag_array = explode( ',', $taglist_cpt );
						$tag_type = 'term_id';
					}				
				}

	            $link_query_args = array( 'post_type' => 'link_library_links', 'posts_per_page' => -1 );
	            $link_query_args['post_status'] = array( 'publish' );

	            $link_query_args['tax_query'][] =
		            array(
			            'taxonomy' => $generaloptions['cattaxonomy'],
			            'field'    => 'term_id',
			            'terms'    => $catname->term_id,
			            'include_children' => false
		            );

				if ( !empty( $tag_array ) ) {
					$link_query_args['tax_query'][] = array( 
						array(
							'taxonomy'  => $generaloptions['tagtaxonomy'],
							'field'     => $tag_type,
							'terms'     => $tag_array
						)
					);
				}

				if ( isset( $link_query_args['tax_query'] ) && is_array( $link_query_args['tax_query'] ) && sizeof( $link_query_args['tax_query'] ) > 1 ) {
					$link_query_args['tax_query']['relation'] = 'AND';
				}

	            if ( $showuserlinks ) {
		            $link_query_args['post_status'][] = 'pending';
	            }

	            if ( $showinvisible || ( $showinvisibleadmin && $linkeditoruser ) ) {
		            $link_query_args['post_status'][] = 'draft';
	            }

	            if ( isset( $_GET['searchll'] ) ) {
		            $searchstring = sanitize_text_field( $_GET['searchll'] );
		            if ( !empty( $searchstring ) ) {
						add_filter( 'posts_search', 'll_expand_posts_search', 10, 2 );
			            $link_query_args['s'] = $searchstring;
		            }
	            }

	            if ( $current_user_links ) {
		            $user_data = wp_get_current_user();
		            $name_field_value = $user_data->display_name;

		            $link_query_args['meta_query'][] =
			            array(
				            'key'     => 'link_submitter',
				            'value'   => $name_field_value,
				            'compare' => '=',
			            );
		            if ( sizeof( $link_query_args['meta_query'] > 1 ) ) {
			            $link_query_args['meta_query']['relation'] = 'AND';
		            }
	            }

	            $the_link_query = new WP_Query( $link_query_args );
	            $linkcount = $the_link_query->post_count;
	            
				remove_filter( 'posts_search', 'll_expand_posts_search', 10 );
				wp_reset_postdata();

				if ( $hideemptycats && !$cat_has_children && $linkcount == 0 ) {
					continue;
				}

                // Display the category name
                $countcat += 1;
                if ( $level == 0 ) {
	                if ( $num_columns > 0 && 'table' == $flatlist && ( ( 1 == $countcat % $num_columns ) || ( 1 == $num_columns ) ) ) {
		                $output .= "<tr>\n";
	                }

	                if ( 'table' == $flatlist ) {
		                $catfront = "\t<td>";
	                } elseif ( 'unordered' == $flatlist ) {
		                $catfront = "\t<li>";
	                } elseif ( 'simpledivs' == $flatlist ) {
						$output .= "<div class='catlistdiv'>\n";
					} elseif ( ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) && ( $linkcount > 0 || !$hide_if_empty )) {
		                $catfront = "\t<option ";
		                if ( !empty( $categoryid ) && $categoryid == $catname->term_id ) {
			                $catfront .= 'selected="selected" ';
		                }
		                $catfront .= 'value="';
	                }
                } else {
	                if ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) {
		                $catfront = "\t<option ";
		                if ( !empty( $categoryid ) && $categoryid == $catname->term_id ) {
			                $catfront .= 'selected="selected" ';
		                }
		                $catfront .= 'value="';
	                } else {
		                $catfront = "\t<li>";
	                }
                }

                if ( $linkcount > 0 ) {
	                if ( $showonecatonly ) {
		                if ( 'AJAX' == $showonecatmode || empty( $showonecatmode ) ) {
			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext = "<a href='#' onClick=\"showLinkCat";
								
								if ( !empty( $targetlibrary ) ) {
									$cattext .= $targetlibrary;
								} else {
									$cattext .= $settings;
								}

								$cattext .= "('" . $catname->term_id. "', '";

								if ( !empty( $targetlibrary ) ) {
									$cattext .= $targetlibrary;
								} else {
									$cattext .= $settings;
								}

								$cattext .= "', 1, '" . $searchstring . "');return false;\" >";
			                } elseif ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) {
				                $cattext = $catname->term_id;
			                }
		                } elseif ( 'HTMLGET' == $showonecatmode ) {
			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext = "<a href='";
			                }

			                $cattargetaddress = add_query_arg( 'cat_id', $catname->term_id, '');
			                if ( $searchfiltercats && isset( $_GET['searchll'] ) && !empty( $_GET['searchll'] ) ) {
				                $cattargetaddress = add_query_arg( 'searchll', sanitize_text_field( $_GET['searchll'] ), $cattargetaddress );
			                }

			                $cattext .= $cattargetaddress;

			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext .= "'>";
			                }
		                } elseif ( 'HTMLGETSLUG' == $showonecatmode ) {
			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext = "<a href='";
			                }

			                $cattargetaddress = add_query_arg( 'catslug', $catname->slug, '');
			                if ( $searchfiltercats && isset( $_GET['searchll'] ) && !empty( $_GET['searchll'] ) ) {
				                $cattargetaddress = add_query_arg( 'searchll', sanitize_text_field( $_GET['searchll'] ), $cattargetaddress );
			                }

			                $cattext .= $cattargetaddress;

			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext .= "'>";
			                }
		                }  elseif ( 'HTMLGETCATNAME' == $showonecatmode ) {
			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext = "<a href='";
			                }

			                if ( !empty( $_GET ) ) {
				                $get_array = $_GET;
			                } else {
				                $get_array = array();
			                }

			                $get_array['catname'] = urlencode( $catname->name );
			                $get_query = add_query_arg( $get_array, $cattargetaddress );

			                $cattext .= $get_query;

			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext .= "'>";
			                }
		                } elseif ( 'HTMLGETPERM' == $showonecatmode ) {
			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext = "<a href='";
			                }

			                $cattargetaddress = esc_url( site_url() . '/' . $rewritepage . '/' . $catname->slug . '/' );
			                if ( $searchfiltercats && isset( $_GET['searchll'] ) && !empty( $_GET['searchll'] ) ) {
				                $cattargetaddress = add_query_arg( 'searchll', sanitize_text_field( $_GET['searchll'] ), $cattargetaddress );
			                }

			                $cattext .= $cattargetaddress;

			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
				                $cattext .= "'>";
			                }
		                }
	                } else if ( $catanchor ) {
		                if ( !$pagination || ( !$pagination && $searchfiltercats && isset( $_GET['searchll'] ) && !empty( $_GET['searchll'] ) ) ) {
			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist && 'toggles' != $flatlist && 'togglesshowhideall' != $flatlist ) {
				                $cattext = '<a href="';
			                }

			                if ( $searchfiltercats && isset( $_GET['searchll'] ) && !empty( $_GET['searchll'] ) ) {
				                $cattext .= '?searchll=' . sanitize_text_field( $_GET['searchll'] ) . '&cat_id=' . $catname->term_id;
			                } elseif ( 'toggles' != $flatlist && 'togglesshowhideall' != $flatlist ) {
				                $cattext .= '#' . $catname->slug;
			                }

			                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist && 'toggles' != $flatlist && 'togglesshowhideall' != $flatlist) {
				                $cattext .= '">';
			                }
		                } elseif ( $pagination ) {
			                if ( 0 == $linksperpage || empty( $linksperpage ) ) {
				                $linksperpage = 5;
			                }

			                $pageposition = ( $totallinkcount + 1 ) / $linksperpage;
			                $ceilpageposition = ceil( $pageposition );

			                if ( 0 == $ceilpageposition && !isset( $_GET['linkresultpage'] ) ) {
				                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist && 'toggles' != $flatlist && 'togglesshowhideall' != $flatlist ) {
					                $cattext = '<a href="';
				                }

				                $cattext .= get_permalink() . '#' . $catname->slug;

				                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist && 'toggles' != $flatlist && 'togglesshowhideall' != $flatlist ) {
					                $cattext .= '">';
				                }
			                } else {
				                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist && 'toggles' != $flatlist && 'togglesshowhideall' != $flatlist ) {
					                $cattext = '<a href="';
				                }

				                $cattext .= '?linkresultpage=' . ( $ceilpageposition == 0 ? 1 : $ceilpageposition ) . '#' . $catname->slug;

				                if ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist && 'toggles' != $flatlist && 'togglesshowhideall' != $flatlist ) {
					                $cattext .= '">';
				                }
			                }
		                }
	                } else {
		                $cattext = '';
	                }

	                if ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) {
		                $cattext .= '">';
	                }
                } else {
	                $cattext .= '<span class="emptycat">';
                }

                if ( !$showcategorydescheaders || ( $showcategorydescheaders && ( 'right' == $catlistdescpos || empty( $catlistdescpos ) ) ) ) {
	                if ( 'toggles' == $flatlist || 'togglesshowhideall' == $flatlist ) {
						$catitem .= '<div class="linkcatname cattoggle catactive" data-cat="' . $catname->term_id . '">';
					} elseif ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
		                $catitem .= '<span class="linkcatname">';
	                } elseif ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) {
		                $space_str = "&nbsp;&nbsp;&nbsp;";
		                $catitem .= str_repeat( $space_str, $level );
	                }
	                $catitem .= $catname->name;
	                if ( $showcatlinkcount && ( $linkcount != 0 || ( $linkcount == 0 && !$cat_has_children ) ) ) {
		                $catitem .= '<span class="linkcatcount"> (' . $linkcount . ')</span>';
	                }
	                if ( 'toggles' == $flatlist || 'togglesshowhideall' == $flatlist ) {
						$catitem .= '</div>';
					} elseif ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
		                $catitem .= '</span>';
	                }
                }

                if ( $showcategorydescheaders ) {
                    $catname->description = esc_html( $catname->description );
                    $catname->description = str_replace( '[', '<', $catname->description );
                    $catname->description = str_replace( ']', '>', $catname->description );
                    $catname->description = str_replace( "&quot;", '"', $catname->description );
                    $catitem .= '<span class="linkcatdesc">' . $catname->description . '</span>';
                }

                if ( $showcategorydescheaders && 'left' == $catlistdescpos ) {
	                if ( 'toggles' == $flatlist ) {
						$catitem .= '<div class="linkcatname cattoggle active" data-cat="' . $catname->term_id . '">';
					} elseif ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
		                $catitem .= '<span class="linkcatname">';
	                } elseif ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) {
	                	$space_str = "&nbsp;&nbsp;&nbsp;";
	                	$catitem .= str_repeat( $space_str, $level );
	                } 

	                $catitem .= $catname->name;
	                if ( $showcatlinkcount && ( $linkcount != 0 || ( $linkcount == 0 && !$cat_has_children ) ) ) {
		                $catitem .= '<span class="linkcatcount"> (' . $linkcount . ')</span>';
	                }
					
					if ( 'toggles' == $flatlist || 'togglesshowhideall' == $flatlist ) {
						$catitem .= '</div>';
					} else {
						$catitem .= '</span>';
					}	                
                }

                if ( $linkcount > 0 ) {
	                if ( ( $catanchor || $showonecatonly ) && 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist ) {
		                $catitem .= '</a>';
	                } /* else {
		                $catitem .= '</span>';
	                } */
                } else {
					$catitem .= '</span>';
				}

                $output .= ( $catfront . $cattext . $catitem );

	            if ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist && ( $linkcount > 0 || !$hide_if_empty )) {
		            $output .= "</option>\n";
	            }

                if ( $cat_has_children && ( empty( $catlistchildcatdepthlimit ) || ( !empty( $catlistchildcatdepthlimit ) && intval( $catlistchildcatdepthlimit ) - 1 > $level ) ) ) {
					array_push( $parent_id_array, $catname->term_id );
	                $output .= RenderLinkLibraryCategories( $LLPluginClass, $generaloptions, $libraryoptions, $settings, $targetlibrary, $catname->term_id, $level + 1, $parent_id_array );
                }

	            $catterminator = '';
                if ( $level == 0 ) {
	                if ( 'table' == $flatlist ) {
		                $catterminator = "</td>\n";
	                } elseif ( 'unordered' == $flatlist ) {
		                $catterminator = "</li>\n";
	                } elseif ( 'simpledivs' == $flatlist ) {
		                $catterminator = "</div>\n";
	                } 
                } elseif ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist && 'simpledivs' != $flatlist ) {
	                $catterminator = "</li>\n";
                }

                $output .= ( $catterminator );

                if ( $num_columns > 0 && 'table' == $flatlist && ( 0 == $countcat % $num_columns ) && $level == 0 ) {
                    $output .= "</tr>\n";
                }

                $totallinkcount += $the_link_query->post_count;
            }

            if ( $num_columns > 0 && 'table' == $flatlist && ( 3 == $countcat % $num_columns ) && $level == 0) {
                $output .= "</tr>\n";
            }

            if ( $level == 0 ) {
	            if ( 'table' == $flatlist && $link_categories ) {
		            $output .= "</table>\n";
	            } elseif ( 'unordered' == $flatlist && $link_categories ) {
		            $output .= "</ul>\n";
	            } elseif ( ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) && $link_categories ) {
		            $output .= "</select>\n";
		            if ( 'dropdown' == $flatlist ) {
			            $output .= "<button type='button' data-linklist-id='";
						if ( !empty( $targetlibrary ) ) {
							$output .= $targetlibrary;
						} else {
							$output .= $settings;
						}
						$output .= "' onclick='showcategory( jQuery(\".catdropdown" . $settings . "\").val() )'>" . __('Go!', 'link-library') . "</button>";
		            }
		            $output .= '</form>';
	            }

				if ( 'togglesshowhideall' == $flatlist ) {
					$output .= '<div class="linkcatname cattogglehideall">' . __( 'Hide all', 'link-library' ) . '</div>';
					$output .= '<div class="linkcatname cattoggleshowall">' . __( 'Show all', 'link-library' ) . '</div>';
				}

	            $output .= "</div>\n";
            } elseif ( 'dropdown' != $flatlist && 'dropdowndirect' != $flatlist && 'simpledivs' != $flatlist && $link_categories ) {
            	$output .= '</ul>';
            }

            if ( $showonecatonly && ( 'AJAX' == $showonecatmode || empty( $showonecatmode ) ) ) {
                if ( empty( $loadingicon ) ) {
                    $loadingicon = '/icons/Ajax-loader.gif';
                }

                $output .= "<div class='contentLoading' id='contentLoading" . $settings . "' style='display: none;'><img src='" . plugins_url( $loadingicon, __FILE__ ) . "' alt='Loading data, please wait...'></div>\n";
            }

            if ( 0 == $level && ( 'dropdown' == $flatlist || 'dropdowndirect' == $flatlist ) ) {
                $output .= "<script TYPE='text/javascript'>\n";
                $output .= "\tfunction showcategory( catidvar ){\n";

                if ( $showonecatonly && ( 'AJAX' == $showonecatmode || empty( $showonecatmode ) ) ) {
					$output .= "linklistID = event.target.dataset.linklistId;\n";
                    $output .= "showLinkCat";
					
					if ( !empty( $targetlibrary ) ) {
						$output .= $targetlibrary;
					} else {
						$output .= $settings;
					}
					
					$output .= "(catidvar, linklistID, 1, '" . $searchstring  . "');return false; }";
                } else {
                    $output .= "\t\tlocation=\n";
                    $output .= "document.catselect.catdropdown" . $settings . ".options[document.catselect.catdropdown" . $settings . ".selectedIndex].value }\n";
                }
                $output .= "</script>\n";
            }
        } else {
            $output .= '<div>' . __('No categories found', 'link-library') . '.</div>';
        }

        if ( 0 == $level && defined( 'REST_REQUEST' ) && REST_REQUEST ) {
	        $output .= "\n<div style='clear:both' />\n\n";
        }

		$output .= '<!-- End of Link Library Categories Output -->';
    }

	if ( 'toggles' == $flatlist || 'togglesshowhideall' == $flatlist) {
		$output .= '<script type="text/javascript">';
		$output .= "jQuery(document).ready(function() {\n";
		$output .= "\tjQuery( '.cattoggle' ).click( function() {\n";
		$output .= "\t\tif ( jQuery( this ).hasClass( 'catactive' ) ) {\n";
		$output .= "\t\t\tjQuery(this).removeClass( 'catactive' );";
		$output .= "\t\t\tjQuery(this).addClass( 'catinactive' );";
		$output .= "\t\t} else {";
		$output .= "\t\t\tjQuery(this).removeClass( 'catinactive' );";
		$output .= "\t\t\tjQuery(this).addClass( 'catactive' );";
		$output .= "\t\t}";
		$output .= "\t\tvar targetLibrary = '.LinkLibraryCat' + jQuery( this ).data( 'cat' );\n";
		$output .= "\t\tif ( jQuery( targetLibrary ).hasClass( 'grid-item' ) ) {\n";
		$output .= "\t\t\tjQuery( targetLibrary ).removeClass( 'grid-item' );\n";
		$output .= "\t\t\tjQuery( targetLibrary ).removeClass( 'masonry-brick' );\n";
		$output .= "\t\t} else {\n";
		$output .= "\t\t\tjQuery( targetLibrary ).addClass( 'grid-item' );\n";
		$output .= "\t\t\tjQuery( targetLibrary ).addClass( 'masonry-brick' );\n";
		$output .= "\t\t}\n";
		$output .= "\t\tjQuery( targetLibrary ).toggle();\n";
		$output .= "\t\tjQuery('.grid').masonry('reloadItems');";
		$output .= "\t\tjQuery('.grid').masonry('layout');";
		$output .= "\t});\n";

		if ( 'togglesshowhideall' == $flatlist ) {
			$output .= "\tjQuery( '.cattogglehideall' ).click( function() {\n";
			$output .= "\t\tjQuery( '.catactive' ).each( function() {\n";
			$output .= "\t\t\tjQuery(this).removeClass( 'catactive' );";
			$output .= "\t\t\tjQuery(this).addClass( 'catinactive' );";
			$output .= "\t\t\tvar targetLibrary = '.LinkLibraryCat' + jQuery( this ).data( 'cat' );\n";
			$output .= "\t\t\tif ( jQuery( targetLibrary ).hasClass( 'grid-item' ) ) {\n";
			$output .= "\t\t\t\tjQuery( targetLibrary ).removeClass( 'grid-item' );\n";
			$output .= "\t\t\t\tjQuery( targetLibrary ).removeClass( 'masonry-brick' );\n";
			$output .= "\t\t\t}\n";		
			$output .= "\t\t\t\tjQuery( targetLibrary ).toggle();\n";
			$output .= "\t\t\tjQuery('.grid').masonry('reloadItems');";
			$output .= "\t\t\tjQuery('.grid').masonry('layout');";
			$output .= "\t\t});\n";
			$output .= "\t});\n";

			$output .= "\tjQuery( '.cattoggleshowall' ).click( function() {\n";
			$output .= "\t\tjQuery( '.catinactive' ).each( function() {\n";
			$output .= "\t\t\tjQuery(this).removeClass( 'catinactive' );";
			$output .= "\t\t\tjQuery(this).addClass( 'catactive' );";
			$output .= "\t\t\tvar targetLibrary = '.LinkLibraryCat' + jQuery( this ).data( 'cat' );\n";
			$output .= "\t\t\tjQuery( targetLibrary ).addClass( 'grid-item' );\n";
			$output .= "\t\t\tjQuery( targetLibrary ).addClass( 'masonry-brick' );\n";
			$output .= "\t\t\tjQuery( targetLibrary ).toggle();\n";
			$output .= "\t\t\tjQuery('.grid').masonry('reloadItems');";
			$output .= "\t\t\tjQuery('.grid').masonry('layout');";
			$output .= "\t\t});\n";
			$output .= "\t});\n";
		}

		$output .= "});\n";
		$output .= '</script>';
	}
	
    return $output;
}