HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpmuhibbah_err/wp-content/plugins/awsm-team/templates/table.php
<?php
/**
 * Table Preset Template.
 *
 * @package awsm-team
 */

?>
<div id="<?php echo esc_attr( $this->add_id( array( 'awsm-team', $id ) ) ); ?>" class="awsm-grid-wrapper">
	<?php if ( $team->have_posts() ) : ?>
	<div class="awsm-table <?php echo esc_attr( $this->item_style( $options ) ); ?>">
		<div class="awsm-table-row awsm-table-head">
			<div class="awsm-table-cell">
				<?php esc_html_e( 'Image', 'awsm-team' ); ?>
			</div><!-- .awsm-table-cell -->
			<div class="awsm-table-cell">
				<?php esc_html_e( 'Name', 'awsm-team' ); ?>
			</div><!-- .awsm-table-cell -->
			<div class="awsm-table-cell">
				<?php esc_html_e( 'Designation', 'awsm-team' ); ?>
			</div><!-- .awsm-table-cell -->
			<div class="awsm-table-cell">
				<?php esc_html_e( 'Short Description', 'awsm-team' ); ?>
			</div><!-- .awsm-table-cell -->
			<div class="awsm-table-cell">
				<?php esc_html_e( 'Social Links', 'awsm-team' ); ?>
			</div><!-- .awsm-table-cell -->
		</div>
		<?php
		while ( $team->have_posts() ) :
			$team->the_post();
			$teamdata = $this->get_options( 'awsm_team_member', $team->post->ID );
			?>
		<div id="<?php echo esc_attr( $this->add_id( array( 'awsm-member', $id, $team->post->ID ) ) ); ?>" class="awsm-table-row">
			<div class="awsm-table-cell awsm-table-image">
				<div class="awsm-table-img-holder">
					<?php echo $this->get_team_thumbnail( $team->post->ID ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
				</div><!-- .awsm-img-holder -->
			</div><!-- .awsm-table-cell -->
			<div class="awsm-table-cell awsm-table-name">
				<div class="awsm-table-cell-inner"><?php the_title(); ?></div>
			</div><!-- .awsm-table-cell -->
			<div class="awsm-table-cell awsm-table-designation">
				<div class="awsm-table-cell-inner"><?php $this->checkprint( '%s', $teamdata['awsm-team-designation'] ); ?></div>
			</div><!-- .awsm-table-cell -->
			<div class="awsm-table-cell awsm-table-description">
				<div class="awsm-table-cell-inner"><?php $this->checkprint( '<p>%s</p>', $teamdata['awsm-team-short-desc'] ); ?></div>
			</div><!-- .awsm-table-cell -->
			<div class="awsm-table-cell">
				<?php include $this->settings['plugin_path'] . 'templates/partials/social.php'; ?>
			</div><!-- .awsm-table-cell -->
		</div><!-- .awsm-table-row -->
			<?php
		endwhile;
		wp_reset_postdata();
		?>
	</div>
	<?php endif; ?>
</div>