|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /html/wordpress-old/wp-content/plugins/redirection/view/admin/ |
Upload File : |
<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?>
<div class="date" id="info_<?php echo $redirect->id ?>" style="width:8em">
<?php if ($redirect->last_access == 0) : ?>
—
<?php else : ?>
<?php echo date (str_replace ('F', 'M', get_option ('date_format')), $redirect->last_access) ?>
<?php endif; ?>
</div>
<div class="count">
<a href="<?php echo admin_url( 'tools.php?page=redirection.php' ); ?>&sub=log&redirect=<?php echo $redirect->id ?>"><?php echo $redirect->last_count ?></a>
</div>
<div class="type">
<?php echo $redirect->type () ?>
</div>
<div class="item<?php if ($redirect->regex) echo ' item-regex' ?>">
<input type="checkbox" class="check" name="checkall[]" value="<?php echo esc_attr( $redirect->id ) ?>"/>
<a href="<?php echo esc_attr( $this->url( $redirect->url ) ) ?>" class="redirection-edit">
<?php if ($redirect->title) echo esc_html( $redirect->title ); else echo esc_html( RE_Log::show_url( $redirect->url ) ); ?>
</a>
<?php if ($redirect->match_type != 'url') echo '('.esc_html( $redirect->match_name() ).')' ?>
<?php if ($redirect->status == 'disabled') : ?>
— <?php _e ('disabled', 'redirection'); ?>
<?php endif; ?>
</div>