WPFront User Role Editor - Version 2.14.1

Version Description

  • Logout redirect added.
  • Secondary roles on Add New User added.
  • Secondary role filters added. Documentation.
Download this release

Release Info

Developer syammohanm
Plugin Icon 128x128 WPFront User Role Editor
Version 2.14.1
Comparing to
See all releases

Code changes from version 2.13.1 to 2.14.1

classes/class-wpfront-user-role-editor-assign-roles.php CHANGED
@@ -58,8 +58,10 @@ if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
58
  add_filter('user_row_actions', array($this, 'user_row_actions'), 10, 2);
59
 
60
  add_action('edit_user_profile', array($this, 'edit_user_profile'), 10, 1);
 
61
  //add_action('edit_user_profile_update', array($this, 'edit_user_profile_update'), 1000, 1);
62
  add_action('profile_update', array($this, 'edit_user_profile_update'), 1000, 1);
 
63
  }
64
 
65
  public function manage_users_columns($columns) {
@@ -91,6 +93,7 @@ if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
91
  if (!$this->can_assign_roles())
92
  return;
93
 
 
94
  if ($user->ID === wp_get_current_user()->ID)
95
  return;
96
 
@@ -101,16 +104,54 @@ if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
101
  $roles = array_values($user->roles);
102
  array_shift($roles);
103
 
 
 
104
  //echo "<h3>{$this->__('Secondary Roles')}</h3>";
105
  echo '<table class="form-table">';
106
  echo '<tbody>';
107
  echo '<tr>';
108
- echo "<th>{$this->__('Secondary Roles')}</th>";
109
  echo '<td>';
110
- foreach ($this->secondary_roles as $key => $value) {
111
- echo '<div style="min-width:200px;width:25%;float:left;">';
112
- printf('<label><input type="checkbox" name="wpfront-secondary-roles[%s]" %s />%s</label>', $key, in_array($key, $roles) ? 'checked' : '', $value);
113
- echo '</div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  }
115
  echo '</td>';
116
  echo '</tr>';
@@ -142,6 +183,24 @@ if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
142
  $user->add_role($key);
143
  }
144
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
145
 
146
  private function get_assign_role_url($user_object = NULL) {
147
  if ($user_object == NULL) {
@@ -428,4 +487,4 @@ if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
428
 
429
  }
430
 
431
- }
58
  add_filter('user_row_actions', array($this, 'user_row_actions'), 10, 2);
59
 
60
  add_action('edit_user_profile', array($this, 'edit_user_profile'), 10, 1);
61
+ add_action('user_new_form', array($this, 'user_new_form'), 10, 1);
62
  //add_action('edit_user_profile_update', array($this, 'edit_user_profile_update'), 1000, 1);
63
  add_action('profile_update', array($this, 'edit_user_profile_update'), 1000, 1);
64
+ add_action('edit_user_created_user', array($this, 'edit_user_created_user'), 1000, 1);
65
  }
66
 
67
  public function manage_users_columns($columns) {
93
  if (!$this->can_assign_roles())
94
  return;
95
 
96
+ //TODO: remove for Administrator.
97
  if ($user->ID === wp_get_current_user()->ID)
98
  return;
99
 
104
  $roles = array_values($user->roles);
105
  array_shift($roles);
106
 
107
+ $this->secondary_roles = apply_filters('wpfront_ure_edit_user_profile_secondary_roles', $this->secondary_roles, $user);
108
+
109
  //echo "<h3>{$this->__('Secondary Roles')}</h3>";
110
  echo '<table class="form-table">';
111
  echo '<tbody>';
112
  echo '<tr>';
113
+ echo "<th scope='row'>{$this->__('Secondary Roles')}</th>";
114
  echo '<td>';
115
+ if(empty($this->secondary_roles)) {
116
+ echo $this->__('No roles for this site.');
117
+ } else {
118
+ foreach ($this->secondary_roles as $key => $value) {
119
+ echo '<div style="min-width:200px;width:25%;float:left;">';
120
+ printf('<label><input type="checkbox" name="wpfront-secondary-roles[%s]" %s />%s</label>', $key, in_array($key, $roles) ? 'checked' : '', $value);
121
+ echo '</div>';
122
+ }
123
+ }
124
+ echo '</td>';
125
+ echo '</tr>';
126
+ echo '</tbody>';
127
+ echo '</table>';
128
+ }
129
+
130
+ public function user_new_form() {
131
+ if (is_multisite() && is_network_admin())
132
+ return;
133
+
134
+ if (!$this->can_assign_roles())
135
+ return;
136
+
137
+ $this->populate_roles_array();
138
+
139
+ $this->secondary_roles = apply_filters('wpfront_ure_add_user_profile_secondary_roles', $this->secondary_roles);
140
+
141
+ //echo "<h3>{$this->__('Secondary Roles')}</h3>";
142
+ echo '<table class="form-table">';
143
+ echo '<tbody>';
144
+ echo '<tr>';
145
+ echo "<th scope='row'>{$this->__('Secondary Roles')}</th>";
146
+ echo '<td>';
147
+ if(empty($this->secondary_roles)) {
148
+ echo $this->__('No roles for this site.');
149
+ } else {
150
+ foreach ($this->secondary_roles as $key => $value) {
151
+ echo '<div style="min-width:200px;width:25%;float:left;">';
152
+ printf('<label><input type="checkbox" name="wpfront-secondary-roles[%s]" />%s</label>', $key, $value);
153
+ echo '</div>';
154
+ }
155
  }
156
  echo '</td>';
157
  echo '</tr>';
183
  $user->add_role($key);
184
  }
185
  }
186
+
187
+ public function edit_user_created_user($user_id) {
188
+ if (is_multisite() && is_network_admin())
189
+ return;
190
+
191
+ if (!$this->can_assign_roles())
192
+ return;
193
+
194
+ $user = get_userdata($user_id);
195
+ if (empty($user))
196
+ return;
197
+
198
+ $this->populate_roles_array();
199
+ foreach ($this->secondary_roles as $key => $value) {
200
+ if (!empty($_POST["wpfront-secondary-roles"][$key]))
201
+ $user->add_role($key);
202
+ }
203
+ }
204
 
205
  private function get_assign_role_url($user_object = NULL) {
206
  if ($user_object == NULL) {
487
 
488
  }
489
 
490
+ }
classes/class-wpfront-user-role-editor-login-redirect-list-table.php CHANGED
@@ -83,7 +83,8 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect_List_Table')) {
83
  'cb' => '<input type="checkbox" />',
84
  'role' => $this->main->__('Role'),
85
  'priority' => $this->main->__('Priority'),
86
- 'url' => $this->main->__('URL'),
 
87
  'deny_wpadmin' => $this->main->__('WP-ADMIN'),
88
  'disable_toolbar' => $this->main->__('Toolbar')
89
  );
@@ -163,6 +164,10 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect_List_Table')) {
163
  case 'url':
164
  echo "<td $attributes>" . $this->main->format_url($entity->get_url()) . "</td>";
165
  break;
 
 
 
 
166
 
167
  case 'deny_wpadmin':
168
  echo "<td $attributes>" . ($entity->get_deny_wpadmin() ? '<i class="fa fa-times"></i>' : '<i class="fa fa-check"></i>') . "</td>";
83
  'cb' => '<input type="checkbox" />',
84
  'role' => $this->main->__('Role'),
85
  'priority' => $this->main->__('Priority'),
86
+ 'url' => $this->main->__('Login Redirect URL'),
87
+ 'logout_url' => $this->main->__('Logout Redirect URL'),
88
  'deny_wpadmin' => $this->main->__('WP-ADMIN'),
89
  'disable_toolbar' => $this->main->__('Toolbar')
90
  );
164
  case 'url':
165
  echo "<td $attributes>" . $this->main->format_url($entity->get_url()) . "</td>";
166
  break;
167
+
168
+ case 'logout_url':
169
+ echo "<td $attributes>" . $this->main->format_url($entity->get_logout_url()) . "</td>";
170
+ break;
171
 
172
  case 'deny_wpadmin':
173
  echo "<td $attributes>" . ($entity->get_deny_wpadmin() ? '<i class="fa fa-times"></i>' : '<i class="fa fa-check"></i>') . "</td>";
classes/class-wpfront-user-role-editor-login-redirect.php CHANGED
@@ -44,6 +44,7 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
44
  private $role = '';
45
  private $priority = '';
46
  private $url = '';
 
47
  private $deny_wpadmin = FALSE;
48
  private $disable_toolbar = FALSE;
49
  private $valid_role = TRUE;
@@ -55,7 +56,8 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
55
  public function __construct($main) {
56
  parent::__construct($main);
57
 
58
- add_filter('login_redirect', array($this, 'login_redirect_callback'), 10, 3);
 
59
  add_action('admin_init', array($this, 'admin_init'));
60
  add_filter('show_admin_bar', array($this, 'show_toolbar'), 10, 1);
61
  }
@@ -90,6 +92,40 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
90
 
91
  return $redirect_to;
92
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
94
  public function admin_init() {
95
  if (defined('DOING_AJAX') && DOING_AJAX) {
@@ -208,6 +244,7 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
208
  }
209
  $entity->set_priority($this->priority);
210
  $entity->set_url($this->url);
 
211
  $entity->set_deny_wpadmin($this->deny_wpadmin);
212
  $entity->set_disable_toolbar($this->disable_toolbar);
213
  $entity->save();
@@ -234,6 +271,7 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
234
 
235
  $this->priority = $entity->get_priority();
236
  $this->url = $entity->get_url();
 
237
  $this->deny_wpadmin = $entity->get_deny_wpadmin();
238
  $this->disable_toolbar = $entity->get_disable_toolbar();
239
  }
@@ -272,6 +310,9 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
272
  } else {
273
  $this->url = $_POST['url'];
274
  }
 
 
 
275
 
276
  if (!empty($_POST['deny_wpadmin']))
277
  $this->deny_wpadmin = TRUE;
@@ -386,6 +427,9 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
386
  }
387
 
388
  public function format_url($url) {
 
 
 
389
  $url = strtolower($url);
390
 
391
  if (strpos($url, '://') > -1)
@@ -422,7 +466,10 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
422
  . $this->__('<b>Priority</b>: When a user has multiple roles, the role configuration with the highest priority will be selected.')
423
  . '</p>'
424
  . '<p>'
425
- . $this->__('<b>URL</b>: The URL where the user will be redirected after login or on WP-ADMIN access if denied.')
 
 
 
426
  . '</p>'
427
  . '<p>'
428
  . $this->__('<b>WP-ADMIN</b>: Displays whether user has access to WP-ADMIN.')
@@ -453,7 +500,10 @@ if (!class_exists('WPFront_User_Role_Editor_Login_Redirect')) {
453
  . $this->__('<b>Priority</b>: When a user has multiple roles, the role configuration with the highest priority will be selected.')
454
  . '</p>'
455
  . '<p>'
456
- . $this->__('<b>URL</b>: The URL where the user will be redirected after login or on WP-ADMIN access if denied.')
 
 
 
457
  . '</p>'
458
  . '<p>'
459
  . $this->__('<b>Deny WP-ADMIN</b>: If enabled user will be redirected to URL on WP-ADMIN access.')
44
  private $role = '';
45
  private $priority = '';
46
  private $url = '';
47
+ private $logout_url = '';
48
  private $deny_wpadmin = FALSE;
49
  private $disable_toolbar = FALSE;
50
  private $valid_role = TRUE;
56
  public function __construct($main) {
57
  parent::__construct($main);
58
 
59
+ add_filter('login_redirect', array($this, 'login_redirect_callback'), 99999, 3);
60
+ add_filter('logout_redirect', array($this, 'logout_redirect_callback'), 99999, 3);
61
  add_action('admin_init', array($this, 'admin_init'));
62
  add_filter('show_admin_bar', array($this, 'show_toolbar'), 10, 1);
63
  }
92
 
93
  return $redirect_to;
94
  }
95
+
96
+ public function logout_redirect_callback($redirect_to, $request_from = '', $obj_user = NULL) {
97
+ if (empty($obj_user) || is_wp_error($obj_user)) {
98
+ $obj_user = wp_get_current_user();
99
+ }
100
+
101
+ if (empty($obj_user) || is_wp_error($obj_user)) {
102
+ return $redirect_to;
103
+ }
104
+
105
+ if (empty($obj_user->roles) || !is_array($obj_user->roles))
106
+ return $redirect_to;
107
+
108
+ $roles = $obj_user->roles;
109
+ if (in_array(self::ADMINISTRATOR_ROLE_KEY, $roles))
110
+ return $redirect_to;
111
+
112
+ $entity = new WPFront_User_Role_Editor_Entity_Login_Redirect();
113
+ $data = $entity->get_all_login_redirect();
114
+
115
+ foreach ($data as $value) {
116
+ $role = $value->get_role();
117
+ if (!$this->role_supported($role))
118
+ continue;
119
+
120
+ if (in_array($role, $roles)) {
121
+ $url = $this->format_url($value->get_logout_url());
122
+ if(!empty($url))
123
+ return $url;
124
+ }
125
+ }
126
+
127
+ return $redirect_to;
128
+ }
129
 
130
  public function admin_init() {
131
  if (defined('DOING_AJAX') && DOING_AJAX) {
244
  }
245
  $entity->set_priority($this->priority);
246
  $entity->set_url($this->url);
247
+ $entity->set_logout_url($this->logout_url);
248
  $entity->set_deny_wpadmin($this->deny_wpadmin);
249
  $entity->set_disable_toolbar($this->disable_toolbar);
250
  $entity->save();
271
 
272
  $this->priority = $entity->get_priority();
273
  $this->url = $entity->get_url();
274
+ $this->logout_url = $entity->get_logout_url();
275
  $this->deny_wpadmin = $entity->get_deny_wpadmin();
276
  $this->disable_toolbar = $entity->get_disable_toolbar();
277
  }
310
  } else {
311
  $this->url = $_POST['url'];
312
  }
313
+
314
+ if (!empty($_POST['logout_url']))
315
+ $this->logout_url = $_POST['logout_url'];
316
 
317
  if (!empty($_POST['deny_wpadmin']))
318
  $this->deny_wpadmin = TRUE;
427
  }
428
 
429
  public function format_url($url) {
430
+ if(empty($url))
431
+ return '';
432
+
433
  $url = strtolower($url);
434
 
435
  if (strpos($url, '://') > -1)
466
  . $this->__('<b>Priority</b>: When a user has multiple roles, the role configuration with the highest priority will be selected.')
467
  . '</p>'
468
  . '<p>'
469
+ . $this->__('<b>Login Redirect URL</b>: The URL where the user will be redirected after login or on WP-ADMIN access if denied.')
470
+ . '</p>'
471
+ . '<p>'
472
+ . $this->__('<b>Logout Redirect URL</b>: The URL where the user will be redirected after logout.')
473
  . '</p>'
474
  . '<p>'
475
  . $this->__('<b>WP-ADMIN</b>: Displays whether user has access to WP-ADMIN.')
500
  . $this->__('<b>Priority</b>: When a user has multiple roles, the role configuration with the highest priority will be selected.')
501
  . '</p>'
502
  . '<p>'
503
+ . $this->__('<b>Login Redirect URL</b>: The URL where the user will be redirected after login or on WP-ADMIN access if denied.')
504
+ . '</p>'
505
+ . '<p>'
506
+ . $this->__('<b>Logout Redirect URL</b>: The URL where the user will be redirected after logout.')
507
  . '</p>'
508
  . '<p>'
509
  . $this->__('<b>Deny WP-ADMIN</b>: If enabled user will be redirected to URL on WP-ADMIN access.')
classes/class-wpfront-user-role-editor.php CHANGED
@@ -38,7 +38,7 @@ if (!class_exists('WPFront_User_Role_Editor')) {
38
  class WPFront_User_Role_Editor extends WPFront_Base_URE {
39
 
40
  //Constants
41
- const VERSION = '2.13.1';
42
  const OPTIONS_GROUP_NAME = 'wpfront-user-role-editor-options-group';
43
  const OPTION_NAME = 'wpfront-user-role-editor-options';
44
  const PLUGIN_SLUG = 'wpfront-user-role-editor';
38
  class WPFront_User_Role_Editor extends WPFront_Base_URE {
39
 
40
  //Constants
41
+ const VERSION = '2.14.1';
42
  const OPTIONS_GROUP_NAME = 'wpfront-user-role-editor-options-group';
43
  const OPTION_NAME = 'wpfront-user-role-editor-options';
44
  const PLUGIN_SLUG = 'wpfront-user-role-editor';
classes/entities/class-wpfront-user-role-editor-entity-login-redirect.php CHANGED
@@ -21,12 +21,16 @@ if (!class_exists('WPFront_User_Role_Editor_Entity_Login_Redirect')) {
21
  }
22
 
23
  protected function _db_data() {
 
 
 
24
  return array(
25
  $this->db_data_field('role', 'varchar(250)'),
26
  $this->db_data_field('priority', 'int'),
27
  $this->db_data_field('url', 'varchar(2000)'),
28
  $this->db_data_field('deny_wpadmin', 'bit'),
29
- $this->db_data_field('disable_toolbar', 'bit')
 
30
  );
31
  }
32
 
21
  }
22
 
23
  protected function _db_data() {
24
+ $logout_url = $this->db_data_field('logout_url', 'varchar(2000)');
25
+ $logout_url->default = "''";
26
+
27
  return array(
28
  $this->db_data_field('role', 'varchar(250)'),
29
  $this->db_data_field('priority', 'int'),
30
  $this->db_data_field('url', 'varchar(2000)'),
31
  $this->db_data_field('deny_wpadmin', 'bit'),
32
+ $this->db_data_field('disable_toolbar', 'bit'),
33
+ $logout_url
34
  );
35
  }
36
 
css/style.css CHANGED
@@ -157,7 +157,6 @@ div.wrap.go-pro div.license-container table.form-table td.expired {
157
  color: red;
158
  }
159
 
160
-
161
  div.wrap.login-redirect table.wp-list-table .column-priority,
162
  div.wrap.login-redirect table.wp-list-table .column-deny_wpadmin,
163
  div.wrap.login-redirect table.wp-list-table .column-disable_toolbar {
@@ -165,6 +164,7 @@ div.wrap.login-redirect table.wp-list-table .column-disable_toolbar {
165
  text-align: center;
166
  }
167
 
168
- div.wrap.login-redirect table.wp-list-table .column-url {
 
169
  width: 50%;
170
  }
157
  color: red;
158
  }
159
 
 
160
  div.wrap.login-redirect table.wp-list-table .column-priority,
161
  div.wrap.login-redirect table.wp-list-table .column-deny_wpadmin,
162
  div.wrap.login-redirect table.wp-list-table .column-disable_toolbar {
164
  text-align: center;
165
  }
166
 
167
+ div.wrap.login-redirect table.wp-list-table .column-url,
168
+ div.wrap.login-redirect table.wp-list-table .column-logout_url{
169
  width: 50%;
170
  }
languages/wpfront-user-role-editor.mo CHANGED
Binary file
languages/wpfront-user-role-editor.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WPFront Notification Bar\n"
4
- "POT-Creation-Date: 2017-04-16 14:44+0530\n"
5
- "PO-Revision-Date: 2017-04-16 14:45+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WPFront <contact@wpfront.com>\n"
8
  "Language: en\n"
@@ -63,7 +63,7 @@ msgid "More information about %s"
63
  msgstr "More information about %s"
64
 
65
  #: ../classes/base/class-wpfront-base-menu.php:158
66
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:295
67
  msgid "Details"
68
  msgstr "Details"
69
 
@@ -217,13 +217,13 @@ msgstr ""
217
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:227
218
  #: ../classes/class-wpfront-user-role-editor-add-edit.php:324
219
  #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:128
220
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:395
221
  #: ../classes/class-wpfront-user-role-editor-list.php:361
222
  #: ../classes/class-wpfront-user-role-editor-list.php:395
223
  #: ../classes/class-wpfront-user-role-editor-list.php:412
224
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:407
225
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:441
226
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:472
227
  #: ../classes/class-wpfront-user-role-editor-options.php:324
228
  #: ../classes/class-wpfront-user-role-editor-options.php:376
229
  #: ../classes/class-wpfront-user-role-editor-restore.php:168
@@ -406,7 +406,7 @@ msgstr ""
406
 
407
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:178
408
  #: ../classes/class-wpfront-user-role-editor-list.php:422
409
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:417
410
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:414
411
  msgid "Columns"
412
  msgstr "Columns"
@@ -486,7 +486,7 @@ msgstr ""
486
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:228
487
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:269
488
  #: ../classes/class-wpfront-user-role-editor-list.php:471
489
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:148
490
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:146
491
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:443
492
  #: ../templates/list-roles.php:109
@@ -512,7 +512,7 @@ msgstr ""
512
  #: ../classes/class-wpfront-user-role-editor-list.php:260
513
  #: ../classes/class-wpfront-user-role-editor-list.php:476
514
  #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:62
515
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:151
516
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:62
517
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:149
518
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:448
@@ -540,11 +540,11 @@ msgstr "Documentation on Multisite Roles"
540
 
541
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
542
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:77
543
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:232
544
  #: ../classes/class-wpfront-user-role-editor-go-pro.php:234
545
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:263
546
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:293
547
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:302
 
548
  #: ../classes/class-wpfront-user-role-editor-restore.php:87
549
  #: ../templates/add-edit-role.php:51 ../templates/add-edit-role.php:59
550
  #: ../templates/business-pro/sync-roles.php:21
@@ -553,7 +553,7 @@ msgid "ERROR"
553
  msgstr "ERROR"
554
 
555
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
556
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:218
557
  msgid "Permission denied."
558
  msgstr "Permission denied."
559
 
@@ -599,7 +599,7 @@ msgid "Custom <span class=\"count\">(%s)</span>"
599
  msgstr "Custom <span class=\"count\">(%s)</span>"
600
 
601
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:207
602
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:122
603
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:121
604
  #: ../templates/personal-pro/menu-editor.php:161
605
  #: ../templates/personal-pro/menu-editor.php:197
@@ -840,48 +840,53 @@ msgstr ""
840
  msgid "Documentation on Add/Remove Capability"
841
  msgstr "Documentation on Add/Remove Capability"
842
 
843
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:67
844
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:369
845
  msgid "Secondary Roles"
846
  msgstr "Secondary Roles"
847
 
848
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:83
849
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:402
850
  #: ../templates/assign-roles.php:42 ../templates/assign-roles.php:94
851
  msgid "Assign Roles"
852
  msgstr "Assign Roles"
853
 
854
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:185
 
 
 
 
 
855
  msgid "No role for this site"
856
  msgstr "No role for this site"
857
 
858
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:212
859
  msgid "Invalid user."
860
  msgstr "Invalid user."
861
 
862
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:247
863
  msgid "Roles updated successfully."
864
  msgstr "Roles updated successfully."
865
 
866
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:249
867
  msgid "Invalid primary role specified."
868
  msgstr "Invalid primary role specified."
869
 
870
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:267
871
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:277
872
  msgid "Invalid primary role."
873
  msgstr "Invalid primary role."
874
 
875
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:299
876
  #, php-format
877
  msgid "%d user(s) migrated."
878
  msgstr "%d user(s) migrated."
879
 
880
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:351
881
  msgid "Primary Role"
882
  msgstr "Primary Role"
883
 
884
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:397
885
  msgid ""
886
  "This screen allows you to assign multiple roles to a user and also allows "
887
  "you to migrate users from a role to another role."
@@ -889,7 +894,7 @@ msgstr ""
889
  "This screen allows you to assign multiple roles to a user and also allows "
890
  "you to migrate users from a role to another role."
891
 
892
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:404
893
  msgid ""
894
  "To assign multiple roles to a user, select that user within the User drop "
895
  "down list and select the primary role you want for that user using the "
@@ -901,12 +906,12 @@ msgstr ""
901
  "Primary Role drop down list. Select the secondary roles using the check "
902
  "boxes below, then click Assign Roles."
903
 
904
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:409
905
  #: ../templates/assign-roles.php:99 ../templates/assign-roles.php:132
906
  msgid "Migrate Users"
907
  msgstr "Migrate Users"
908
 
909
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:411
910
  msgid ""
911
  "To migrate users from one role to another role or to add secondary roles to "
912
  "users belonging to a particular primary role, use the migrate users "
@@ -916,7 +921,7 @@ msgstr ""
916
  "users belonging to a particular primary role, use the migrate users "
917
  "functionality."
918
 
919
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:414
920
  msgid ""
921
  "Select the users using the From Primary Role drop down, to primary role "
922
  "using the Primary Role drop down and secondary roles using the check boxes "
@@ -926,7 +931,7 @@ msgstr ""
926
  "using the Primary Role drop down and secondary roles using the check boxes "
927
  "then click Migrate Users."
928
 
929
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:423
930
  msgid "Documentation on Assign / Migrate Users"
931
  msgstr "Documentation on Assign / Migrate Users"
932
 
@@ -950,40 +955,40 @@ msgstr "Review"
950
  msgid "Contact"
951
  msgstr "Contact"
952
 
953
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:232
954
  msgid "License key activation limit reached."
955
  msgstr "License key activation limit reached."
956
 
957
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:232
958
  #: ../classes/class-wpfront-user-role-editor-nav-menu.php:93
959
  msgid "More information"
960
  msgstr "More information"
961
 
962
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:234
963
  msgid "Invalid license key"
964
  msgstr "Invalid license key"
965
 
966
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:263
967
  msgid "Unable to deactivate"
968
  msgstr "Unable to deactivate"
969
 
970
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:293
971
  msgid "Unable to contact wpfront.com"
972
  msgstr "Unable to contact wpfront.com"
973
 
974
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:302
975
  msgid "Unable to parse response"
976
  msgstr "Unable to parse response"
977
 
978
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:373
979
  msgid "Site"
980
  msgstr "Site"
981
 
982
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:374
983
  msgid "Product"
984
  msgstr "Product"
985
 
986
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:378
987
  msgid ""
988
  "Your WPFront User Role Editor Pro license was activated on the following "
989
  "site."
@@ -991,19 +996,19 @@ msgstr ""
991
  "Your WPFront User Role Editor Pro license was activated on the following "
992
  "site."
993
 
994
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:379
995
  msgid "WPFront User Role Editor Pro License Activated"
996
  msgstr "WPFront User Role Editor Pro License Activated"
997
 
998
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:381
999
  msgid "Activated By"
1000
  msgstr "Activated By"
1001
 
1002
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:382
1003
  msgid "Activated On"
1004
  msgstr "Activated On"
1005
 
1006
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:386
1007
  msgid ""
1008
  "Your WPFront User Role Editor Pro license was deactivated on the following "
1009
  "site."
@@ -1011,21 +1016,21 @@ msgstr ""
1011
  "Your WPFront User Role Editor Pro license was deactivated on the following "
1012
  "site."
1013
 
1014
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:387
1015
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:400
1016
  msgid "WPFront User Role Editor Pro License Deactivated"
1017
  msgstr "WPFront User Role Editor Pro License Deactivated"
1018
 
1019
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:389
1020
  msgid "Deactivated By"
1021
  msgstr "Deactivated By"
1022
 
1023
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:390
1024
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:401
1025
  msgid "Deactivated On"
1026
  msgstr "Deactivated On"
1027
 
1028
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:394
1029
  msgid ""
1030
  "Your WPFront User Role Editor Pro license is invalid on the following site. "
1031
  "Please activate a valid license immediately for the plugin to continue "
@@ -1035,15 +1040,15 @@ msgstr ""
1035
  "Please activate a valid license immediately for the plugin to continue "
1036
  "working."
1037
 
1038
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:395
1039
  msgid "WPFront User Role Editor Pro Invalid License"
1040
  msgstr "WPFront User Role Editor Pro Invalid License"
1041
 
1042
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:396
1043
  msgid "Invalid URL"
1044
  msgstr "Invalid URL"
1045
 
1046
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:399
1047
  msgid ""
1048
  "Your invalid WPFront User Role Editor Pro license was deactivated on the "
1049
  "following site. Please activate a valid license immediately for the plugin "
@@ -1053,6 +1058,20 @@ msgstr ""
1053
  "following site. Please activate a valid license immediately for the plugin "
1054
  "to continue working."
1055
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1056
  #: ../classes/class-wpfront-user-role-editor-list.php:221
1057
  #: ../templates/add-edit-role.php:117
1058
  #: ../templates/personal-pro/menu-editor.php:132
@@ -1227,32 +1246,36 @@ msgid "Priority"
1227
  msgstr "Priority"
1228
 
1229
  #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:86
1230
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:148
1231
  #: ../templates/login-redirect.php:133
1232
- msgid "URL"
1233
- msgstr "URL"
1234
 
1235
  #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:87
 
 
 
 
 
1236
  msgid "WP-ADMIN"
1237
  msgstr "WP-ADMIN"
1238
 
1239
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:88
1240
  msgid "Toolbar"
1241
  msgstr "Toolbar"
1242
 
1243
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:216
1244
  msgid "Login redirect added."
1245
  msgstr "Login redirect added."
1246
 
1247
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:219
1248
  msgid "Login redirect updated."
1249
  msgstr "Login redirect updated."
1250
 
1251
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:222
1252
  msgid "This role is not supported."
1253
  msgstr "This role is not supported."
1254
 
1255
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:409
1256
  msgid ""
1257
  "Use this functionality to redirect a user to a specific page after they "
1258
  "login based on their role."
@@ -1260,7 +1283,7 @@ msgstr ""
1260
  "Use this functionality to redirect a user to a specific page after they "
1261
  "login based on their role."
1262
 
1263
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:412
1264
  msgid ""
1265
  "In addition, you can also deny the user access to WP-ADMIN and remove the "
1266
  "toolbar (admin bar) from the front end."
@@ -1268,13 +1291,13 @@ msgstr ""
1268
  "In addition, you can also deny the user access to WP-ADMIN and remove the "
1269
  "toolbar (admin bar) from the front end."
1270
 
1271
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:419
1272
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:450
1273
  msgid "<b>Role</b>: The role of the user to qualify for this redirect."
1274
  msgstr "<b>Role</b>: The role of the user to qualify for this redirect."
1275
 
1276
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:422
1277
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:453
1278
  msgid ""
1279
  "<b>Priority</b>: When a user has multiple roles, the role configuration with "
1280
  "the highest priority will be selected."
@@ -1282,33 +1305,42 @@ msgstr ""
1282
  "<b>Priority</b>: When a user has multiple roles, the role configuration with "
1283
  "the highest priority will be selected."
1284
 
1285
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:425
1286
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:456
1287
  msgid ""
1288
- "<b>URL</b>: The URL where the user will be redirected after login or on WP-"
1289
- "ADMIN access if denied."
1290
  msgstr ""
1291
- "<b>URL</b>: The URL where the user will be redirected after login or on WP-"
1292
- "ADMIN access if denied."
1293
 
1294
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:428
 
 
 
 
 
 
 
 
 
1295
  msgid "<b>WP-ADMIN</b>: Displays whether user has access to WP-ADMIN."
1296
  msgstr "<b>WP-ADMIN</b>: Displays whether user has access to WP-ADMIN."
1297
 
1298
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:431
1299
  msgid "<b>Toolbar</b>: Displays whether user will see toolbar on front end."
1300
  msgstr "<b>Toolbar</b>: Displays whether user will see toolbar on front end."
1301
 
1302
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:443
1303
  msgid "Add/Edit a new login redirect."
1304
  msgstr "Add/Edit a new login redirect."
1305
 
1306
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:448
1307
  #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:625
1308
  msgid "Fields"
1309
  msgstr "Fields"
1310
 
1311
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:459
1312
  msgid ""
1313
  "<b>Deny WP-ADMIN</b>: If enabled user will be redirected to URL on WP-ADMIN "
1314
  "access."
@@ -1316,17 +1348,17 @@ msgstr ""
1316
  "<b>Deny WP-ADMIN</b>: If enabled user will be redirected to URL on WP-ADMIN "
1317
  "access."
1318
 
1319
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:462
1320
  msgid ""
1321
  "<b>Disable Toolbar</b>: If enabled user will not see toolbar on front end."
1322
  msgstr ""
1323
  "<b>Disable Toolbar</b>: If enabled user will not see toolbar on front end."
1324
 
1325
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:474
1326
  msgid "Click \"Confirm Delete\" to delete displayed configurations."
1327
  msgstr "Click \"Confirm Delete\" to delete displayed configurations."
1328
 
1329
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:484
1330
  msgid "Documentation on Login Redirect"
1331
  msgstr "Documentation on Login Redirect"
1332
 
@@ -1348,6 +1380,10 @@ msgstr "sub item"
1348
  msgid "Edit Menu Item"
1349
  msgstr "Edit Menu Item"
1350
 
 
 
 
 
1351
  #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:155
1352
  msgid "Navigation Label"
1353
  msgstr "Navigation Label"
@@ -1719,7 +1755,7 @@ msgstr "Shortcode(s) deleted."
1719
 
1720
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:235
1721
  #: ../classes/personal-pro/class-wpfront-user-role-editor-nav-menu-pro.php:23
1722
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:122
1723
  #: ../classes/personal-pro/class-wpfront-user-role-editor-widget-permissions-pro.php:35
1724
  msgid "[Guest]"
1725
  msgstr "[Guest]"
@@ -2052,7 +2088,7 @@ msgid "%s license not activated."
2052
  msgstr "%s license not activated."
2053
 
2054
  #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:83
2055
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:377
2056
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:221
2057
  msgid "Role Permissions"
2058
  msgstr "Role Permissions"
@@ -2300,29 +2336,29 @@ msgstr ""
2300
  "Enter the URL where the user will be redirected after login or on wp-admin "
2301
  "access."
2302
 
2303
- #: ../templates/login-redirect.php:138
2304
  msgid "[Relative to home URL (recommended) or absolute URL.]"
2305
  msgstr "[Relative to home URL (recommended) or absolute URL.]"
2306
 
2307
- #: ../templates/login-redirect.php:143
2308
  msgid "Deny WP-ADMIN"
2309
  msgstr "Deny WP-ADMIN"
2310
 
2311
- #: ../templates/login-redirect.php:151
2312
  msgid "Disable Toolbar"
2313
  msgstr "Disable Toolbar"
2314
 
2315
- #: ../templates/login-redirect.php:160
2316
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:298
2317
  #: ../templates/personal-pro/content-shortcodes-add-edit.php:67
2318
  msgid "Submit"
2319
  msgstr "Submit"
2320
 
2321
- #: ../templates/login-redirect.php:168
2322
  msgid "The following role configurations will be deleted."
2323
  msgstr "The following role configurations will be deleted."
2324
 
2325
- #: ../templates/login-redirect.php:186
2326
  msgid "Confirm Delete"
2327
  msgstr "Confirm Delete"
2328
 
@@ -2509,6 +2545,13 @@ msgstr "Restored"
2509
  msgid "Unexpected error / Timed out"
2510
  msgstr "Unexpected error / Timed out"
2511
 
 
 
 
 
 
 
 
2512
  #~ msgid ""
2513
  #~ "This screen allow you to restore WordPress built-in roles to its standard "
2514
  #~ "capability settings."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WPFront Notification Bar\n"
4
+ "POT-Creation-Date: 2017-11-27 20:45+0530\n"
5
+ "PO-Revision-Date: 2017-11-27 20:45+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WPFront <contact@wpfront.com>\n"
8
  "Language: en\n"
63
  msgstr "More information about %s"
64
 
65
  #: ../classes/base/class-wpfront-base-menu.php:158
66
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:297
67
  msgid "Details"
68
  msgstr "Details"
69
 
217
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:227
218
  #: ../classes/class-wpfront-user-role-editor-add-edit.php:324
219
  #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:128
220
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:454
221
  #: ../classes/class-wpfront-user-role-editor-list.php:361
222
  #: ../classes/class-wpfront-user-role-editor-list.php:395
223
  #: ../classes/class-wpfront-user-role-editor-list.php:412
224
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:451
225
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:488
226
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:522
227
  #: ../classes/class-wpfront-user-role-editor-options.php:324
228
  #: ../classes/class-wpfront-user-role-editor-options.php:376
229
  #: ../classes/class-wpfront-user-role-editor-restore.php:168
406
 
407
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:178
408
  #: ../classes/class-wpfront-user-role-editor-list.php:422
409
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:461
410
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:414
411
  msgid "Columns"
412
  msgstr "Columns"
486
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:228
487
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:269
488
  #: ../classes/class-wpfront-user-role-editor-list.php:471
489
+ #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:149
490
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:146
491
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:443
492
  #: ../templates/list-roles.php:109
512
  #: ../classes/class-wpfront-user-role-editor-list.php:260
513
  #: ../classes/class-wpfront-user-role-editor-list.php:476
514
  #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:62
515
+ #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:152
516
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:62
517
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:149
518
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:448
540
 
541
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
542
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:77
 
543
  #: ../classes/class-wpfront-user-role-editor-go-pro.php:234
544
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:236
545
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:265
546
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:295
547
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:304
548
  #: ../classes/class-wpfront-user-role-editor-restore.php:87
549
  #: ../templates/add-edit-role.php:51 ../templates/add-edit-role.php:59
550
  #: ../templates/business-pro/sync-roles.php:21
553
  msgstr "ERROR"
554
 
555
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
556
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:277
557
  msgid "Permission denied."
558
  msgstr "Permission denied."
559
 
599
  msgstr "Custom <span class=\"count\">(%s)</span>"
600
 
601
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:207
602
+ #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:123
603
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:121
604
  #: ../templates/personal-pro/menu-editor.php:161
605
  #: ../templates/personal-pro/menu-editor.php:197
840
  msgid "Documentation on Add/Remove Capability"
841
  msgstr "Documentation on Add/Remove Capability"
842
 
843
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:69
844
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:428
845
  msgid "Secondary Roles"
846
  msgstr "Secondary Roles"
847
 
848
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:85
849
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:461
850
  #: ../templates/assign-roles.php:42 ../templates/assign-roles.php:94
851
  msgid "Assign Roles"
852
  msgstr "Assign Roles"
853
 
854
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:116
855
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:148
856
+ msgid "No roles for this site."
857
+ msgstr "No roles for this site."
858
+
859
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:244
860
  msgid "No role for this site"
861
  msgstr "No role for this site"
862
 
863
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:271
864
  msgid "Invalid user."
865
  msgstr "Invalid user."
866
 
867
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:306
868
  msgid "Roles updated successfully."
869
  msgstr "Roles updated successfully."
870
 
871
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:308
872
  msgid "Invalid primary role specified."
873
  msgstr "Invalid primary role specified."
874
 
875
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:326
876
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:336
877
  msgid "Invalid primary role."
878
  msgstr "Invalid primary role."
879
 
880
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:358
881
  #, php-format
882
  msgid "%d user(s) migrated."
883
  msgstr "%d user(s) migrated."
884
 
885
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:410
886
  msgid "Primary Role"
887
  msgstr "Primary Role"
888
 
889
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:456
890
  msgid ""
891
  "This screen allows you to assign multiple roles to a user and also allows "
892
  "you to migrate users from a role to another role."
894
  "This screen allows you to assign multiple roles to a user and also allows "
895
  "you to migrate users from a role to another role."
896
 
897
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:463
898
  msgid ""
899
  "To assign multiple roles to a user, select that user within the User drop "
900
  "down list and select the primary role you want for that user using the "
906
  "Primary Role drop down list. Select the secondary roles using the check "
907
  "boxes below, then click Assign Roles."
908
 
909
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:468
910
  #: ../templates/assign-roles.php:99 ../templates/assign-roles.php:132
911
  msgid "Migrate Users"
912
  msgstr "Migrate Users"
913
 
914
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:470
915
  msgid ""
916
  "To migrate users from one role to another role or to add secondary roles to "
917
  "users belonging to a particular primary role, use the migrate users "
921
  "users belonging to a particular primary role, use the migrate users "
922
  "functionality."
923
 
924
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:473
925
  msgid ""
926
  "Select the users using the From Primary Role drop down, to primary role "
927
  "using the Primary Role drop down and secondary roles using the check boxes "
931
  "using the Primary Role drop down and secondary roles using the check boxes "
932
  "then click Migrate Users."
933
 
934
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:482
935
  msgid "Documentation on Assign / Migrate Users"
936
  msgstr "Documentation on Assign / Migrate Users"
937
 
955
  msgid "Contact"
956
  msgstr "Contact"
957
 
958
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:234
959
  msgid "License key activation limit reached."
960
  msgstr "License key activation limit reached."
961
 
962
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:234
963
  #: ../classes/class-wpfront-user-role-editor-nav-menu.php:93
964
  msgid "More information"
965
  msgstr "More information"
966
 
967
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:236
968
  msgid "Invalid license key"
969
  msgstr "Invalid license key"
970
 
971
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:265
972
  msgid "Unable to deactivate"
973
  msgstr "Unable to deactivate"
974
 
975
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:295
976
  msgid "Unable to contact wpfront.com"
977
  msgstr "Unable to contact wpfront.com"
978
 
979
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:304
980
  msgid "Unable to parse response"
981
  msgstr "Unable to parse response"
982
 
983
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:375
984
  msgid "Site"
985
  msgstr "Site"
986
 
987
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:376
988
  msgid "Product"
989
  msgstr "Product"
990
 
991
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:380
992
  msgid ""
993
  "Your WPFront User Role Editor Pro license was activated on the following "
994
  "site."
996
  "Your WPFront User Role Editor Pro license was activated on the following "
997
  "site."
998
 
999
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:381
1000
  msgid "WPFront User Role Editor Pro License Activated"
1001
  msgstr "WPFront User Role Editor Pro License Activated"
1002
 
1003
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:383
1004
  msgid "Activated By"
1005
  msgstr "Activated By"
1006
 
1007
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:384
1008
  msgid "Activated On"
1009
  msgstr "Activated On"
1010
 
1011
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:388
1012
  msgid ""
1013
  "Your WPFront User Role Editor Pro license was deactivated on the following "
1014
  "site."
1016
  "Your WPFront User Role Editor Pro license was deactivated on the following "
1017
  "site."
1018
 
1019
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:389
1020
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:402
1021
  msgid "WPFront User Role Editor Pro License Deactivated"
1022
  msgstr "WPFront User Role Editor Pro License Deactivated"
1023
 
1024
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:391
1025
  msgid "Deactivated By"
1026
  msgstr "Deactivated By"
1027
 
1028
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:392
1029
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:403
1030
  msgid "Deactivated On"
1031
  msgstr "Deactivated On"
1032
 
1033
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:396
1034
  msgid ""
1035
  "Your WPFront User Role Editor Pro license is invalid on the following site. "
1036
  "Please activate a valid license immediately for the plugin to continue "
1040
  "Please activate a valid license immediately for the plugin to continue "
1041
  "working."
1042
 
1043
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:397
1044
  msgid "WPFront User Role Editor Pro Invalid License"
1045
  msgstr "WPFront User Role Editor Pro Invalid License"
1046
 
1047
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:398
1048
  msgid "Invalid URL"
1049
  msgstr "Invalid URL"
1050
 
1051
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:401
1052
  msgid ""
1053
  "Your invalid WPFront User Role Editor Pro license was deactivated on the "
1054
  "following site. Please activate a valid license immediately for the plugin "
1058
  "following site. Please activate a valid license immediately for the plugin "
1059
  "to continue working."
1060
 
1061
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:434
1062
+ #, php-format
1063
+ msgid "Your %s license is invalid."
1064
+ msgstr "Your %s license is invalid."
1065
+
1066
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:438
1067
+ msgid "Renew now"
1068
+ msgstr "Renew now"
1069
+
1070
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:442
1071
+ #, php-format
1072
+ msgid "Your %s license is expired. %s to receive automatic updates."
1073
+ msgstr "Your %s license is expired. %s to receive automatic updates."
1074
+
1075
  #: ../classes/class-wpfront-user-role-editor-list.php:221
1076
  #: ../templates/add-edit-role.php:117
1077
  #: ../templates/personal-pro/menu-editor.php:132
1246
  msgstr "Priority"
1247
 
1248
  #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:86
 
1249
  #: ../templates/login-redirect.php:133
1250
+ msgid "Login Redirect URL"
1251
+ msgstr "Login Redirect URL"
1252
 
1253
  #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:87
1254
+ #: ../templates/login-redirect.php:143
1255
+ msgid "Logout Redirect URL"
1256
+ msgstr "Logout Redirect URL"
1257
+
1258
+ #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:88
1259
  msgid "WP-ADMIN"
1260
  msgstr "WP-ADMIN"
1261
 
1262
+ #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:89
1263
  msgid "Toolbar"
1264
  msgstr "Toolbar"
1265
 
1266
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:253
1267
  msgid "Login redirect added."
1268
  msgstr "Login redirect added."
1269
 
1270
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:256
1271
  msgid "Login redirect updated."
1272
  msgstr "Login redirect updated."
1273
 
1274
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:259
1275
  msgid "This role is not supported."
1276
  msgstr "This role is not supported."
1277
 
1278
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:453
1279
  msgid ""
1280
  "Use this functionality to redirect a user to a specific page after they "
1281
  "login based on their role."
1283
  "Use this functionality to redirect a user to a specific page after they "
1284
  "login based on their role."
1285
 
1286
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:456
1287
  msgid ""
1288
  "In addition, you can also deny the user access to WP-ADMIN and remove the "
1289
  "toolbar (admin bar) from the front end."
1291
  "In addition, you can also deny the user access to WP-ADMIN and remove the "
1292
  "toolbar (admin bar) from the front end."
1293
 
1294
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:463
1295
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:497
1296
  msgid "<b>Role</b>: The role of the user to qualify for this redirect."
1297
  msgstr "<b>Role</b>: The role of the user to qualify for this redirect."
1298
 
1299
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:466
1300
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:500
1301
  msgid ""
1302
  "<b>Priority</b>: When a user has multiple roles, the role configuration with "
1303
  "the highest priority will be selected."
1305
  "<b>Priority</b>: When a user has multiple roles, the role configuration with "
1306
  "the highest priority will be selected."
1307
 
1308
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:469
1309
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:503
1310
  msgid ""
1311
+ "<b>Login Redirect URL</b>: The URL where the user will be redirected after "
1312
+ "login or on WP-ADMIN access if denied."
1313
  msgstr ""
1314
+ "<b>Login Redirect URL</b>: The URL where the user will be redirected after "
1315
+ "login or on WP-ADMIN access if denied."
1316
 
1317
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:472
1318
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:506
1319
+ msgid ""
1320
+ "<b>Logout Redirect URL</b>: The URL where the user will be redirected after "
1321
+ "logout."
1322
+ msgstr ""
1323
+ "<b>Logout Redirect URL</b>: The URL where the user will be redirected after "
1324
+ "logout."
1325
+
1326
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:475
1327
  msgid "<b>WP-ADMIN</b>: Displays whether user has access to WP-ADMIN."
1328
  msgstr "<b>WP-ADMIN</b>: Displays whether user has access to WP-ADMIN."
1329
 
1330
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:478
1331
  msgid "<b>Toolbar</b>: Displays whether user will see toolbar on front end."
1332
  msgstr "<b>Toolbar</b>: Displays whether user will see toolbar on front end."
1333
 
1334
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:490
1335
  msgid "Add/Edit a new login redirect."
1336
  msgstr "Add/Edit a new login redirect."
1337
 
1338
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:495
1339
  #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:625
1340
  msgid "Fields"
1341
  msgstr "Fields"
1342
 
1343
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:509
1344
  msgid ""
1345
  "<b>Deny WP-ADMIN</b>: If enabled user will be redirected to URL on WP-ADMIN "
1346
  "access."
1348
  "<b>Deny WP-ADMIN</b>: If enabled user will be redirected to URL on WP-ADMIN "
1349
  "access."
1350
 
1351
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:512
1352
  msgid ""
1353
  "<b>Disable Toolbar</b>: If enabled user will not see toolbar on front end."
1354
  msgstr ""
1355
  "<b>Disable Toolbar</b>: If enabled user will not see toolbar on front end."
1356
 
1357
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:524
1358
  msgid "Click \"Confirm Delete\" to delete displayed configurations."
1359
  msgstr "Click \"Confirm Delete\" to delete displayed configurations."
1360
 
1361
+ #: ../classes/class-wpfront-user-role-editor-login-redirect.php:534
1362
  msgid "Documentation on Login Redirect"
1363
  msgstr "Documentation on Login Redirect"
1364
 
1380
  msgid "Edit Menu Item"
1381
  msgstr "Edit Menu Item"
1382
 
1383
+ #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:148
1384
+ msgid "URL"
1385
+ msgstr "URL"
1386
+
1387
  #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:155
1388
  msgid "Navigation Label"
1389
  msgstr "Navigation Label"
1755
 
1756
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:235
1757
  #: ../classes/personal-pro/class-wpfront-user-role-editor-nav-menu-pro.php:23
1758
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:131
1759
  #: ../classes/personal-pro/class-wpfront-user-role-editor-widget-permissions-pro.php:35
1760
  msgid "[Guest]"
1761
  msgstr "[Guest]"
2088
  msgstr "%s license not activated."
2089
 
2090
  #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:83
2091
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:386
2092
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:221
2093
  msgid "Role Permissions"
2094
  msgstr "Role Permissions"
2336
  "Enter the URL where the user will be redirected after login or on wp-admin "
2337
  "access."
2338
 
2339
+ #: ../templates/login-redirect.php:138 ../templates/login-redirect.php:148
2340
  msgid "[Relative to home URL (recommended) or absolute URL.]"
2341
  msgstr "[Relative to home URL (recommended) or absolute URL.]"
2342
 
2343
+ #: ../templates/login-redirect.php:153
2344
  msgid "Deny WP-ADMIN"
2345
  msgstr "Deny WP-ADMIN"
2346
 
2347
+ #: ../templates/login-redirect.php:161
2348
  msgid "Disable Toolbar"
2349
  msgstr "Disable Toolbar"
2350
 
2351
+ #: ../templates/login-redirect.php:170
2352
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:298
2353
  #: ../templates/personal-pro/content-shortcodes-add-edit.php:67
2354
  msgid "Submit"
2355
  msgstr "Submit"
2356
 
2357
+ #: ../templates/login-redirect.php:178
2358
  msgid "The following role configurations will be deleted."
2359
  msgstr "The following role configurations will be deleted."
2360
 
2361
+ #: ../templates/login-redirect.php:196
2362
  msgid "Confirm Delete"
2363
  msgstr "Confirm Delete"
2364
 
2545
  msgid "Unexpected error / Timed out"
2546
  msgstr "Unexpected error / Timed out"
2547
 
2548
+ #~ msgid ""
2549
+ #~ "<b>URL</b>: The URL where the user will be redirected after login or on "
2550
+ #~ "WP-ADMIN access if denied."
2551
+ #~ msgstr ""
2552
+ #~ "<b>URL</b>: The URL where the user will be redirected after login or on "
2553
+ #~ "WP-ADMIN access if denied."
2554
+
2555
  #~ msgid ""
2556
  #~ "This screen allow you to restore WordPress built-in roles to its standard "
2557
  #~ "capability settings."
readme.txt CHANGED
@@ -2,9 +2,10 @@
2
  Contributors: syammohanm
3
  Donate link: https://wpfront.com/donate/
4
  Tags: WordPress user role editor, user role editor, role editor, user role, role, WordPress user roles, user roles, roles, user roles editor, roles editor, role manager, roles manager, manage roles, manage role, access, capability, editor, permission, role, security, user, capability editor, capability manager, custom post types, custom post type permissions, custom post type capabilities, post type permissions, post type capabilities, menu editor, role menu, role menu editor, multisite roles, multisite role editor, multisite user roles, import roles, export roles
5
- Requires at least: 4.3
6
  Tested up to: 4.9
7
- Stable tag: 2.13.1
 
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -61,6 +62,10 @@ Spanish tutorial
61
 
62
  Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor-pro/faq/).
63
 
 
 
 
 
64
  == Screenshots ==
65
 
66
  01. Roles list
@@ -85,6 +90,11 @@ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor
85
 
86
  == Changelog ==
87
 
 
 
 
 
 
88
  = 2.13.1 =
89
  * [Important]XSS fixes. Thanks to Burak @ security.nl & DefenseCode WebScanner.
90
  * Spelling corrections. Thanks to [Eclipse Creative](http://eclipsecreative.ca/).
@@ -233,6 +243,9 @@ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor
233
 
234
  == Upgrade Notice ==
235
 
 
 
 
236
  = 2.13.1 =
237
  * This update is highly recommended because of security fixes.
238
 
2
  Contributors: syammohanm
3
  Donate link: https://wpfront.com/donate/
4
  Tags: WordPress user role editor, user role editor, role editor, user role, role, WordPress user roles, user roles, roles, user roles editor, roles editor, role manager, roles manager, manage roles, manage role, access, capability, editor, permission, role, security, user, capability editor, capability manager, custom post types, custom post type permissions, custom post type capabilities, post type permissions, post type capabilities, menu editor, role menu, role menu editor, multisite roles, multisite role editor, multisite user roles, import roles, export roles
5
+ Requires at least: 4.4
6
  Tested up to: 4.9
7
+ Requires PHP: 5.2.4
8
+ Stable tag: 2.14.1
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
62
 
63
  Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor-pro/faq/).
64
 
65
+ = WPFront User Role Editor and GDPR compliance? =
66
+
67
+ This plugin doesn’t collect any personal information. For more information please visit [GDPR compliance](https://wpfront.com/wpfront-and-gdpr-compliance/).
68
+
69
  == Screenshots ==
70
 
71
  01. Roles list
90
 
91
  == Changelog ==
92
 
93
+ = 2.14.1 =
94
+ * Logout redirect added.
95
+ * Secondary roles on Add New User added.
96
+ * Secondary role filters added. [Documentation](https://wpfront.com/user-role-editor-pro/actions-and-filters/).
97
+
98
  = 2.13.1 =
99
  * [Important]XSS fixes. Thanks to Burak @ security.nl & DefenseCode WebScanner.
100
  * Spelling corrections. Thanks to [Eclipse Creative](http://eclipsecreative.ca/).
243
 
244
  == Upgrade Notice ==
245
 
246
+ = 2.14.1 =
247
+ * New features added.
248
+
249
  = 2.13.1 =
250
  * This update is highly recommended because of security fixes.
251
 
templates/login-redirect.php CHANGED
@@ -130,7 +130,7 @@ if (!defined('ABSPATH')) {
130
  </tr>
131
  <tr class="form-required <?php echo $this->valid_url ? '' : 'form-invalid' ?>">
132
  <th scope="row">
133
- <?php echo $this->__('URL'); ?><span class="description"> (<?php echo $this->__('required'); ?>)</span>
134
  </th>
135
  <td>
136
  <input class="regular-text" name="url" type="text" value="<?php echo $this->url; ?>" aria-required="true" />
@@ -138,6 +138,16 @@ if (!defined('ABSPATH')) {
138
  <span class="description"><?php echo $this->__('[Relative to home URL (recommended) or absolute URL.]'); ?></span>
139
  </td>
140
  </tr>
 
 
 
 
 
 
 
 
 
 
141
  <tr>
142
  <th scope="row">
143
  <?php echo $this->__('Deny WP-ADMIN'); ?>
130
  </tr>
131
  <tr class="form-required <?php echo $this->valid_url ? '' : 'form-invalid' ?>">
132
  <th scope="row">
133
+ <?php echo $this->__('Login Redirect URL'); ?><span class="description"> (<?php echo $this->__('required'); ?>)</span>
134
  </th>
135
  <td>
136
  <input class="regular-text" name="url" type="text" value="<?php echo $this->url; ?>" aria-required="true" />
138
  <span class="description"><?php echo $this->__('[Relative to home URL (recommended) or absolute URL.]'); ?></span>
139
  </td>
140
  </tr>
141
+ <tr>
142
+ <th scope="row">
143
+ <?php echo $this->__('Logout Redirect URL'); ?>
144
+ </th>
145
+ <td>
146
+ <input class="regular-text" name="logout_url" type="text" value="<?php echo $this->logout_url; ?>" aria-required="true" />
147
+ <br />
148
+ <span class="description"><?php echo $this->__('[Relative to home URL (recommended) or absolute URL.]'); ?></span>
149
+ </td>
150
+ </tr>
151
  <tr>
152
  <th scope="row">
153
  <?php echo $this->__('Deny WP-ADMIN'); ?>
wpfront-user-role-editor.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: WPFront User Role Editor
5
  * Plugin URI: http://wpfront.com/user-role-editor-pro/
6
  * Description: Allows you to manage user roles.
7
- * Version: 2.13.1
8
  * Author: Syam Mohan
9
  * Author URI: http://wpfront.com
10
  * License: GPL v3
4
  * Plugin Name: WPFront User Role Editor
5
  * Plugin URI: http://wpfront.com/user-role-editor-pro/
6
  * Description: Allows you to manage user roles.
7
+ * Version: 2.14.1
8
  * Author: Syam Mohan
9
  * Author URI: http://wpfront.com
10
  * License: GPL v3