Sindbad~EG File Manager

Current Path : /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/templates/profile/
Upload File :
Current File : /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/templates/profile/focus.php

<?php
$PeepSoProfile=PeepSoProfile::get_instance();
$PeepSoUser = $PeepSoProfile->user;

$is_profile_segment = (isset($current) && strlen($current)) ? TRUE : FALSE;
$use_small_cover = $is_profile_segment && 0 == PeepSo::get_option('always_full_cover', 0);

$show_focus = "";
$focus_class = "";

if (class_exists('Gecko_Customizer')) {
  $settings = GeckoConfigSettings::get_instance();

	if (1 < $settings->get_option( 'opt_ps_profile_page_cover', 1 ) ) {
		$show_focus = 1;
	}

  if (1 == $settings->get_option( 'opt_ps_profile_page_cover_centered', 0 ) ) {
  	$focus_class = "ps-focus--gecko ps-focus--centered";
  }
}

if (!$show_focus) {
?>
<div class="ps-focus <?php echo $use_small_cover ? 'ps-focus--small' : ''; ?> <?php echo $focus_class; ?> ps-js-focus ps-js-focus--profile ps-js-focus--<?php echo $PeepSoUser->get_id() ?>">
	<div class="ps-focus__cover ps-js-cover">
		<div class="ps-focus__cover-image ps-js-cover-wrapper">
			<img class="ps-js-cover-image" src="<?php echo $PeepSoUser->get_cover(); ?>"
				alt="<?php printf( esc_attr__('%s cover photo', 'peepso-core'), $PeepSoUser->get_fullname()); ?>"
				style="<?php echo $PeepSoUser->get_cover_position(); ?>; opacity: 0;" />
			<div class="ps-focus__cover-loading ps-js-cover-loading">
				<i class="gcis gci-circle-notch gci-spin"></i>
			</div>
		</div>

		<?php
			$cover_box_attrs = '';
			if ($PeepSoUser->has_cover()) {
				$cover_box_attrs = ' style="cursor:pointer" data-cover-url="' . $PeepSoUser->get_cover() . '"';
			}
		?>

		<?php if ($PeepSoProfile->can_edit()) { ?>

		<!-- Cover options dropdown -->
		<div class="ps-focus__cover-inner ps-js-cover-button-popup"<?php echo $cover_box_attrs ?>>
      <div class="ps-avatar ps-avatar--focus ps-focus__avatar ps-js-avatar">
  			<img class="ps-js-avatar-image" src="<?php echo $PeepSoUser->get_avatar('full'); ?>"
  				alt="<?php printf( esc_attr__('%s avatar', 'peepso-core'), $PeepSoUser->get_fullname()); ?>" />

  			<?php
  				$avatar_box_attrs = ' style="cursor:default"';
  				if ($PeepSoUser->has_avatar()) {
  					$avatar_box_attrs = ' onclick="peepso.simple_lightbox(\'' . $PeepSoUser->get_avatar('orig') . '\'); return false"';
  				}
  			?>

  			<div class="ps-focus__avatar-change-wrapper ps-js-avatar-button-wrapper"<?php echo $avatar_box_attrs ?>>
  				<?php if ((1 != PeepSo::get_option('avatars_wordpress_only', 0)) && $PeepSoProfile->can_edit()) { ?>
  				<a href="#" class="ps-focus__avatar-change ps-js-avatar-button">
  					<i class="gcis gci-camera"></i><span><?php echo esc_attr__('Avatar', 'peepso-core'); ?></span>
  				</a>
  				<?php } ?>
  			</div>

  			<?php if($PeepSoUser->get_online_status()) { ?>
  			<div class="ps-online ps-online--focus ps-tip ps-tip--inline"
  				aria-label="<?php echo sprintf(__('%s is currently online','peepso-core'), $PeepSoUser->get_fullname()); ?>"><div class="ps-online__inner"></div></div>
  			<?php } ?>
  		</div>
			<div class="ps-focus__cover-actions ps-js-focus-actions">
				<?php $PeepSoProfile->profile_actions(); ?>
			</div>
		</div>
		<div class="ps-focus__options ps-js-dropdown ps-js-cover-dropdown">
			<a href="#" class="ps-focus__options-toggle ps-js-dropdown-toggle"><span><?php echo esc_attr__('Change cover', 'peepso-core'); ?></span><i class="gcis gci-image"></i></a>
			<div class="ps-focus__options-menu ps-js-dropdown-menu">
				<a href="#" class="ps-js-cover-upload">
					<i class="gcis gci-paint-brush"></i>
					<?php echo esc_attr__('Upload new', 'peepso-core'); ?>
				</a>
                <a href="#" class="ps-js-cover-reposition">
                    <i class="gcis gci-arrows-alt"></i>
                    <?php echo esc_attr__('Reposition', 'peepso-core'); ?>
                </a>
                <a href="#" class="ps-js-cover-rotate-left">
                    <i class="gcis gci-arrow-rotate-left"></i>
                    <?php echo esc_attr__('Rotate left', 'peepso-core'); ?>
                </a>
                <a href="#" class="ps-js-cover-rotate-right">
                    <i class="gcis gci-arrow-rotate-right"></i>
                    <?php echo esc_attr__('Rotate right', 'peepso-core'); ?>
                </a>
				<a href="#" class="ps-js-cover-remove">
					<i class="gcis gci-trash"></i>
					<?php echo esc_attr__('Delete', 'peepso-core'); ?>
				</a>
			</div>
		</div>
		<!-- Reposition cover - buttons -->
		<div class="ps-focus__reposition ps-js-cover-reposition-actions" style="display:none">
			<div class="ps-focus__reposition-actions reposition-cover-actions">
				<a href="#" class="ps-focus__reposition-action ps-js-cover-reposition-cancel"><?php echo esc_attr__('Cancel', 'peepso-core'); ?></a>
				<a href="#" class="ps-focus__reposition-action ps-js-cover-reposition-confirm"><i class="gcis gci-check"></i> <?php echo esc_attr__('Save', 'peepso-core'); ?></a>
			</div>
		</div>

		<?php } else { ?>

		<div class="ps-focus__cover-inner ps-js-cover-button-popup"<?php echo $cover_box_attrs ?>>
      <div class="ps-avatar ps-avatar--focus ps-focus__avatar ps-js-avatar">
  			<img class="ps-js-avatar-image" src="<?php echo $PeepSoUser->get_avatar('full'); ?>"
  				alt="<?php printf( esc_attr__('%s avatar', 'peepso-core'), $PeepSoUser->get_fullname()); ?>" />

  			<?php
  				$avatar_box_attrs = ' style="cursor:default"';
  				if ($PeepSoUser->has_avatar()) {
  					$avatar_box_attrs = ' onclick="peepso.simple_lightbox(\'' . $PeepSoUser->get_avatar('orig') . '\'); return false"';
  				}
  			?>

  			<div class="ps-focus__avatar-change-wrapper ps-js-avatar-button-wrapper"<?php echo $avatar_box_attrs ?>>
  				<?php if ((1 != PeepSo::get_option('avatars_wordpress_only', 0)) && $PeepSoProfile->can_edit()) { ?>
  				<a href="#" class="ps-focus__avatar-change ps-js-avatar-button">
  					<i class="gcis gci-camera"></i><span><?php echo esc_attr__('Avatar', 'peepso-core'); ?></span>
  				</a>
  				<?php } ?>
  			</div>

  			<?php if($PeepSoUser->get_online_status()) { ?>
  			<div class="ps-online ps-online--focus ps-tip ps-tip--inline"
  				aria-label="<?php echo sprintf(__('%s is currently online','peepso-core'), $PeepSoUser->get_fullname()); ?>"><div class="ps-online__inner"></div></div>
  			<?php } ?>
  		</div>
			<div class="ps-focus__cover-actions ps-js-focus-actions">
				<?php $PeepSoProfile->profile_actions(); ?>
			</div>
		</div>

		<?php }?>
	</div>

	<div class="ps-focus__footer">
		<div class="ps-focus__info">
			<div class="ps-focus__title">
				<?php
					if (!$is_profile_segment || 1 == PeepSo::get_option('always_full_cover', 0)) {
						echo '<div class="ps-focus__title-before">', do_action('peepso_profile_cover_full_before_name', $PeepSoUser->get_id()), '</div>';
					}
				?>
				<div class="ps-focus__name" data-hover-card="<?php echo $PeepSoUser->get_id() ?>">
				<?php
					//[peepso]_[action]_[WHICH_PLUGIN]_[WHERE]_[WHAT]_[BEFORE/AFTER]
					do_action('peepso_action_render_user_name_before', $PeepSoUser->get_id());

					echo $PeepSoUser->get_fullname();

					//[peepso]_[action]_[WHICH_PLUGIN]_[WHERE]_[WHAT]_[BEFORE/AFTER]
					do_action('peepso_action_render_user_name_after', $PeepSoUser->get_id());
				?>
				</div>
				<?php
					if (!$is_profile_segment || 1 == PeepSo::get_option('always_full_cover', 0)) {
						echo '<div class="ps-focus__title-after">', do_action('peepso_profile_cover_full_after_name', $PeepSoUser->get_id()), '</div>';
					}
				?>
			</div>
			<div class="ps-focus__details ps-js-focus-interactions">
				<?php $PeepSoProfile->interactions(); ?>
			</div>
			<div class="ps-focus__mobile-actions ps-js-focus-actions"><?php $PeepSoProfile->profile_actions(); ?></div>
			<div class="ps-focus__actions ps-js-profile-actions-extra"><?php $PeepSoProfile->profile_actions_extra(); ?></div>
		</div>

		<?php
			do_action('peepso_action_render_user_menu_before', $PeepSoUser->get_id());

            if(PeepSo::is_admin()) {

                $reports = (new PeepSoReport())->get_reports( $PeepSoUser->get_id(), 0, 0);
                if(is_array($reports) && count($reports)) {
                    $reported = count($reports);
                    update_user_meta($PeepSoUser->get_id(), 'peepso_reported',1);
                    PeepSoTemplate::exec_template('activity','post-reports', ['post_id'=>$PeepSoUser->get_id(), 'module_id'=>0, 'type'=>'profile', 'reported'=>$reports, 'reports'=>$reports,'unpublished'=>0]);
                }
            }
		?>
		<?php

			if (!$is_profile_segment) {
                $current = array_key_first(apply_filters('peepso_navigation_profile',['stream'=>'stream']));
			}

		?>
		<div class="ps-focus__menu ps-js-focus__menu">
			<div class="ps-focus__menu-inner ps-js-focus__menu-inner">
				<?php echo $PeepSoProfile->profile_navigation(array('current'=>$current)); ?>
			</div>
			<div class="ps-focus__menu-shadow ps-focus__menu-shadow--left ps-js-aid-left"></div>
			<div class="ps-focus__menu-shadow ps-focus__menu-shadow--right ps-js-aid-right"></div>
		</div>
	</div>
</div>
<?php } ?>

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