PluginProbe
Redirection / 2.2.9
Redirection v2.2.9
5.10.0 5.9.0 5.8.1 5.8.0 3.7.2 3.7.3 4.0 4.0.1 4.1 4.1.1 4.2 4.2.1 4.2.2 4.2.3 4.3 4.3.1 4.3.2 4.3.3 4.4 4.4.1 4.4.2 4.5 4.5.1 4.6.2 4.7.1 All 130 releases
redirection / view / admin / group_item.php

group_item.php in Redirection 2.2.9, at view/admin/group_item.php

26 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?>
2 <div class="date">
3 <a href="<?php echo admin_url( 'admin-ajax.php' ); ?>?action=red_group_edit&amp;id=<?php echo $group->id; ?>&amp;_ajax_nonce=<?php echo wp_create_nonce( 'redirection-group_'.$group->id ); ?>" class="redirection-edit"><?php _e ('edit group', 'redirection'); ?></a>
4 </div>
5
6 <div class="count">
7 <?php if ($group->tracking) : ?>
8 <a href="<?php echo $this->base (); ?>?page=redirection.php&amp;sub=log&amp;group=<?php echo $group->id ?>"><?php echo $group->hits (); ?></a>
9 <?php else : ?>
10 &mdash;
11 <?php endif; ?>
12 </div>
13
14 <div class="item">
15 <input class="check" type="checkbox" name="checkall[]" value="<?php echo $group->id ?>"/>
16 <a href="<?php echo $this->base (); ?>?page=redirection.php&amp;sub=redirects&amp;id=<?php echo $group->id ?>">
17 <?php echo esc_html( $group->name ); ?>
18 </a>
19
20 <?php echo $group->items () ?>
21
22 <?php if ($group->status == 'disabled') : ?>
23 &mdash; <?php _e ('disabled', 'redirection'); ?>
24 <?php endif; ?>
25 </div>
26