Sindbad~EG File Manager

Current Path : /home/frekansk/.trash/wp-content/themes/turitor/buddypress/activity/
Upload File :
Current File : //home/frekansk/.trash/wp-content/themes/turitor/buddypress/activity/index.php

<?php
/**
 * BuddyPress Activity templates
 *
 * @since 2.3.0
 *
 * @package BuddyPress
 * @subpackage bp-legacy
 * @version 3.0.0
 */

/**
 * Fires before the activity directory listing.
 *
 * @since 1.5.0
 */
do_action( 'bp_before_directory_activity' ); ?>

<div id="buddypress">
	<div class="bp-banner">
		<div class="container">
			<div class="row justify-content-center">
				<div class="col-lg-10 text-center">
					<div class="banner-content">
						<h2 class="p-0"><?php echo esc_html__('All Forums','turitor'); ?></h2>
					</div>
				</div>
			</div>
		</div>
	</div>
	<div class="container">
		<div class="row">
			<div class="col-lg-12">
				<?php

				/**
				 * Fires before the activity directory display content.
				 *
				 * @since 1.2.0
				 */
				do_action( 'bp_before_directory_activity_content' ); ?>

				<?php if ( is_user_logged_in() ) : ?>

					<?php bp_get_template_part( 'activity/post-form' ); ?>

				<?php endif; ?>

				<div id="template-notices" role="alert" aria-atomic="true">
					<?php

					/**
					 * Fires towards the top of template pages for notice display.
					 *
					 * @since 1.0.0
					 */
					do_action( 'template_notices' ); ?>

				</div>

				<div class="item-list-tabs activity-type-tabs" aria-label="<?php esc_attr_e( 'Sitewide activities navigation', 'turitor' ); ?>" role="navigation">
					<ul>
						<?php

						/**
						 * Fires before the listing of activity type tabs.
						 *
						 * @since 1.2.0
						 */
						do_action( 'bp_before_activity_type_tab_all' ); ?>

						<li class="selected" id="activity-all">
							<a href="<?php bp_activity_directory_permalink(); ?>">
								<?php
								/* translators: %s: number of members */
								printf( __( 'All Members %s', 'turitor' ), '<span>' . bp_get_total_member_count() . '</span>' );
								?>
							</a>
						</li>

						<?php if ( is_user_logged_in() ) : ?>

							<?php

							/**
							 * Fires before the listing of friends activity type tab.
							 *
							 * @since 1.2.0
							 */
							do_action( 'bp_before_activity_type_tab_friends' ); ?>

							<?php if ( bp_is_active( 'friends' ) ) : ?>

								<?php if ( bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?>

									<li id="activity-friends">
										<a href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() . '/' . bp_get_friends_slug() . '/'; ?>">
											<?php
											/* translators: %s: number of friends */
											printf( __( 'My Friends %s', 'turitor' ), '<span>' . bp_get_total_friend_count( bp_loggedin_user_id() ) . '</span>' );
											?>
										</a>
									</li>

								<?php endif; ?>

							<?php endif; ?>

							<?php

							/**
							 * Fires before the listing of groups activity type tab.
							 *
							 * @since 1.2.0
							 */
							do_action( 'bp_before_activity_type_tab_groups' ); ?>

							<?php if ( bp_is_active( 'groups' ) ) : ?>

								<?php if ( bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) : ?>

									<?php
									printf(
										'<li id="activity-groups"><a href="%1$s">%2$s</a></li>',
										esc_url( bp_loggedin_user_domain() . bp_get_activity_slug() . '/' . bp_get_groups_slug() . '/' ),
										sprintf(
											/* translators: %s: current user groups count */
											__( 'My Groups %s', 'turitor' ),
											'<span>' . bp_get_total_group_count_for_user( bp_loggedin_user_id() ) . '</span>'
										)
									);
									?>

								<?php endif; ?>

							<?php endif; ?>

							<?php

							/**
							 * Fires before the listing of favorites activity type tab.
							 *
							 * @since 1.2.0
							 */
							do_action( 'bp_before_activity_type_tab_favorites' ); ?>

							<?php if ( bp_get_total_favorite_count_for_user( bp_loggedin_user_id() ) ) : ?>

								<li id="activity-favorites">
									<a href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() . '/favorites/'; ?>">
										<?php
										/* translators: %s: number of favorites */
										printf( __( 'My Favorites %s', 'turitor' ), '<span>' . bp_get_total_favorite_count_for_user( bp_loggedin_user_id() ) . '</span>' );
										?>
									</a>
								</li>

							<?php endif; ?>

							<?php if ( bp_activity_do_mentions() ) : ?>

								<?php

								/**
								 * Fires before the listing of mentions activity type tab.
								 *
								 * @since 1.2.0
								 */
								do_action( 'bp_before_activity_type_tab_mentions' ); ?>

								<li id="activity-mentions">
									<a href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() . '/mentions/'; ?>">
										<?php _e( 'Mentions', 'turitor' ); ?>
										<?php if ( bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) ) : ?>
											&nbsp;
											<strong>
												<span>
													<?php
													/* translators: %s: new mentions count */
													printf( _nx( '%s new', '%s new', bp_get_total_mention_count_for_user( bp_loggedin_user_id() ), 'Number of new activity mentions', 'turitor' ), bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) );
													?>
												</span>
											</strong>
										<?php endif; ?>
									</a>
								</li>

							<?php endif; ?>

						<?php endif; ?>

						<?php

						/**
						 * Fires after the listing of activity type tabs.
						 *
						 * @since 1.2.0
						 */
						do_action( 'bp_activity_type_tabs' ); ?>
					</ul>
				</div><!-- .item-list-tabs -->

				<div class="item-list-tabs no-ajax" id="subnav" aria-label="<?php esc_attr_e( 'Activity secondary navigation', 'turitor' ); ?>" role="navigation">
					<ul>
						<li class="feed"><a href="<?php bp_sitewide_activity_feed_link(); ?>" class="bp-tooltip" data-bp-tooltip="<?php esc_attr_e( 'RSS Feed', 'turitor' ); ?>" aria-label="<?php esc_attr_e( 'RSS Feed', 'turitor' ); ?>"><?php _e( 'RSS', 'turitor' ); ?></a></li>

						<?php

						/**
						 * Fires before the display of the activity syndication options.
						 *
						 * @since 1.2.0
						 */
						do_action( 'bp_activity_syndication_options' ); ?>

						<li id="activity-filter-select" class="last">
							<label for="activity-filter-by"><?php _e( 'Show:', 'turitor' ); ?></label>
							<select id="activity-filter-by">
								<option value="-1"><?php _e( '&mdash; Everything &mdash;', 'turitor' ); ?></option>

								<?php bp_activity_show_filters(); ?>

								<?php

								/**
								 * Fires inside the select input for activity filter by options.
								 *
								 * @since 1.2.0
								 */
								do_action( 'bp_activity_filter_options' ); ?>

							</select>
						</li>
					</ul>
				</div><!-- .item-list-tabs -->

				<?php

				/**
				 * Fires before the display of the activity list.
				 *
				 * @since 1.5.0
				 */
				do_action( 'bp_before_directory_activity_list' ); ?>



				<div class="activity" aria-live="polite" aria-atomic="true" aria-relevant="all">

					<?php bp_get_template_part( 'activity/activity-loop' ); ?>

				</div><!-- .activity -->
					
				<?php

				/**
				 * Fires after the display of the activity list.
				 *
				 * @since 1.5.0
				 */
				do_action( 'bp_after_directory_activity_list' ); ?>

				<?php

				/**
				 * Fires inside and displays the activity directory display content.
				 */
				do_action( 'bp_directory_activity_content' ); ?>

				<?php

				/**
				 * Fires after the activity directory display content.
				 *
				 * @since 1.2.0
				 */
				do_action( 'bp_after_directory_activity_content' ); ?>

				<?php

				/**
				 * Fires after the activity directory listing.
				 *
				 * @since 1.5.0
				 */
				do_action( 'bp_after_directory_activity' ); ?>
			</div>
		</div>
	</div>
</div>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists