Version Description
- Fixed potential bug with check user capability functionality
- Added social links to the AAM page
Download this release
Release Info
Developer | vasyl_m |
Plugin | Advanced Access Manager |
Version | 3.1.1 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.1.1
- Application/Backend/Filter.php +16 -14
- Application/Backend/view/index.phtml +23 -7
- aam.php +1 -1
- media/css/aam.css +33 -30
- media/font/fontello.eot +0 -0
- media/font/fontello.svg +64 -31
- media/font/fontello.ttf +0 -0
- media/font/fontello.woff +0 -0
- media/font/fontello.woff2 +0 -0
- readme.txt +5 -1
Application/Backend/Filter.php
CHANGED
@@ -264,20 +264,22 @@ class AAM_Backend_Filter {
|
|
264 |
* @access public
|
265 |
*/
|
266 |
public function checkUserCap($allCaps, $metaCaps, $args) {
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
|
|
|
|
281 |
}
|
282 |
|
283 |
return $allCaps;
|
264 |
* @access public
|
265 |
*/
|
266 |
public function checkUserCap($allCaps, $metaCaps, $args) {
|
267 |
+
if (is_scalar($args[2])) { //make sure that $args[2] is actually post ID
|
268 |
+
switch($args[0]) {
|
269 |
+
case 'edit_post':
|
270 |
+
$object = AAM::getUser()->getObject('post', $args[2]);
|
271 |
+
if ($object->has('backend.edit')) {
|
272 |
+
$allCaps = $this->restrictPostActions($allCaps, $metaCaps);
|
273 |
+
}
|
274 |
+
break;
|
275 |
+
|
276 |
+
case 'delete_post' :
|
277 |
+
$object = AAM::getUser()->getObject('post', $args[2]);
|
278 |
+
if ($object->has('backend.delete')) {
|
279 |
+
$allCaps = $this->restrictPostActions($allCaps, $metaCaps);
|
280 |
+
}
|
281 |
+
break;
|
282 |
+
}
|
283 |
}
|
284 |
|
285 |
return $allCaps;
|
Application/Backend/view/index.phtml
CHANGED
@@ -89,9 +89,11 @@
|
|
89 |
</p>
|
90 |
|
91 |
<div class="aam-info aam-social">
|
92 |
-
<a href="http://
|
93 |
-
<a href="http://twitter.com/vasyltech"
|
94 |
-
<a href="https://github.com/VasylTech/advanced-access-manager"
|
|
|
|
|
95 |
</div>
|
96 |
</div>
|
97 |
</div>
|
@@ -285,7 +287,21 @@
|
|
285 |
</div>
|
286 |
</div>
|
287 |
<?php do_action('aam-sidebar-ui-action', 'bottom'); ?>
|
288 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
<!-- Error Fix Promotion: begin -->
|
290 |
<div class="postbox hidden" id="errorfix-promotion">
|
291 |
<h3 class="hndle">
|
@@ -293,8 +309,8 @@
|
|
293 |
<a href="http://phperrorfix.com" target="_blank" class="aam-help-menu"><i class="icon-help-circled"></i></a>
|
294 |
</h3>
|
295 |
<div class="inside">
|
296 |
-
<p class="aam-info">Keep your website error free with our patent pending <b>WP Error Fix</b>.</p>
|
297 |
-
<a href="#" class="btn btn-
|
298 |
</div>
|
299 |
</div>
|
300 |
<!-- Error Fix Promotion: end -->
|
@@ -302,5 +318,5 @@
|
|
302 |
</div>
|
303 |
</div>
|
304 |
</div>
|
305 |
-
<?php
|
306 |
}
|
89 |
</p>
|
90 |
|
91 |
<div class="aam-info aam-social">
|
92 |
+
<a target="_blank" href="http://wpaam.com"><i class="icon-home"></i></a>
|
93 |
+
<a target="_blank" href="http://twitter.com/vasyltech"><i class="icon-twitter"></i></a>
|
94 |
+
<a target="_blank" href="https://github.com/VasylTech/advanced-access-manager"><i class="icon-github"></i></a>
|
95 |
+
<a target="_blank" href="https://www.facebook.com/vasyltech"><i class="icon-facebook"></i></a>
|
96 |
+
<a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/advanced-access-manager"><i class="icon-star"></i></a>
|
97 |
</div>
|
98 |
</div>
|
99 |
</div>
|
287 |
</div>
|
288 |
</div>
|
289 |
<?php do_action('aam-sidebar-ui-action', 'bottom'); ?>
|
290 |
+
|
291 |
+
<!-- Social Links: begin -->
|
292 |
+
<div class="postbox">
|
293 |
+
<div class="inside">
|
294 |
+
<div class="aam-social">
|
295 |
+
<a target="_blank" href="http://wpaam.com"><i class="icon-home"></i></a>
|
296 |
+
<a target="_blank" href="http://twitter.com/vasyltech"><i class="icon-twitter"></i></a>
|
297 |
+
<a target="_blank" href="https://github.com/VasylTech/advanced-access-manager"><i class="icon-github"></i></a>
|
298 |
+
<a target="_blank" href="https://www.facebook.com/vasyltech"><i class="icon-facebook"></i></a>
|
299 |
+
<a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/advanced-access-manager"><i class="icon-star"></i></a>
|
300 |
+
</div>
|
301 |
+
</div>
|
302 |
+
</div>
|
303 |
+
<!-- Social Links: end -->
|
304 |
+
|
305 |
<!-- Error Fix Promotion: begin -->
|
306 |
<div class="postbox hidden" id="errorfix-promotion">
|
307 |
<h3 class="hndle">
|
309 |
<a href="http://phperrorfix.com" target="_blank" class="aam-help-menu"><i class="icon-help-circled"></i></a>
|
310 |
</h3>
|
311 |
<div class="inside">
|
312 |
+
<p class="aam-info">Keep your website secure & error free with our patent pending <b>WP Error Fix</b>.</p>
|
313 |
+
<a href="#" class="btn btn-success btn-lg btn-block" id="errorfix-install-btn">Install WP Error Fix</a>
|
314 |
</div>
|
315 |
</div>
|
316 |
<!-- Error Fix Promotion: end -->
|
318 |
</div>
|
319 |
</div>
|
320 |
</div>
|
321 |
+
<?php
|
322 |
}
|
aam.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
Plugin Name: Advanced Access Manager
|
5 |
Description: Manage User and Role Access to WordPress Backend and Frontend.
|
6 |
-
Version: 3.1
|
7 |
Author: Vasyl Martyniuk <vasyl@vasyltech.com>
|
8 |
Author URI: http://www.vasyltech.com
|
9 |
|
3 |
/**
|
4 |
Plugin Name: Advanced Access Manager
|
5 |
Description: Manage User and Role Access to WordPress Backend and Frontend.
|
6 |
+
Version: 3.1.1
|
7 |
Author: Vasyl Martyniuk <vasyl@vasyltech.com>
|
8 |
Author URI: http://www.vasyltech.com
|
9 |
|
media/css/aam.css
CHANGED
@@ -9,6 +9,7 @@
|
|
9 |
font-family: 'fontello';
|
10 |
src: url('../font/fontello.eot?99287648');
|
11 |
src: url('../font/fontello.eot?99287648#iefix') format('embedded-opentype'),
|
|
|
12 |
url('../font/fontello.woff?99287648') format('woff'),
|
13 |
url('../font/fontello.ttf?99287648') format('truetype'),
|
14 |
url('../font/fontello.svg?99287648#fontello') format('svg');
|
@@ -61,36 +62,38 @@
|
|
61 |
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
62 |
}
|
63 |
|
64 |
-
.icon-spin4:before { content: '\e800'; } /* '
|
65 |
-
.icon-
|
66 |
-
.icon-
|
67 |
-
.icon-user:before { content: '\e803'; } /* '
|
68 |
-
.icon-
|
69 |
-
.icon-
|
70 |
-
.icon-
|
71 |
-
.icon-
|
72 |
-
.icon-
|
73 |
-
.icon-
|
74 |
-
.icon-
|
75 |
-
.icon-
|
76 |
-
.icon-
|
77 |
-
.icon-
|
78 |
-
.icon-
|
79 |
-
.icon-
|
80 |
-
.icon-
|
81 |
-
.icon-
|
82 |
-
.icon-
|
83 |
-
.icon-
|
84 |
-
.icon-
|
85 |
-
.icon-
|
86 |
-
.icon-
|
87 |
-
.icon-
|
88 |
-
.icon-
|
89 |
-
.icon-
|
90 |
-
.icon-
|
91 |
-
.icon-
|
92 |
-
.icon-
|
93 |
-
.icon-
|
|
|
|
|
94 |
|
95 |
.animate-spin {
|
96 |
-moz-animation: spin 2s infinite linear;
|
9 |
font-family: 'fontello';
|
10 |
src: url('../font/fontello.eot?99287648');
|
11 |
src: url('../font/fontello.eot?99287648#iefix') format('embedded-opentype'),
|
12 |
+
url('../font/fontello.woff2?99287648') format('woff2'),
|
13 |
url('../font/fontello.woff?99287648') format('woff'),
|
14 |
url('../font/fontello.ttf?99287648') format('truetype'),
|
15 |
url('../font/fontello.svg?99287648#fontello') format('svg');
|
62 |
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
63 |
}
|
64 |
|
65 |
+
.icon-spin4:before { content: '\e800'; } /* 'î ' */
|
66 |
+
.icon-eye-off:before { content: '\e801'; } /* 'î ' */
|
67 |
+
.icon-attention-circled:before { content: '\e802'; } /* 'î ' */
|
68 |
+
.icon-user-secret:before { content: '\e803'; } /* 'î ' */
|
69 |
+
.icon-users:before { content: '\e804'; } /* 'î ' */
|
70 |
+
.icon-eye:before { content: '\e805'; } /* 'î
' */
|
71 |
+
.icon-basket:before { content: '\e806'; } /* 'î ' */
|
72 |
+
.icon-user:before { content: '\e807'; } /* 'î ' */
|
73 |
+
.icon-trash-empty:before { content: '\e808'; } /* 'î ' */
|
74 |
+
.icon-download-cloud:before { content: '\e809'; } /* 'î ' */
|
75 |
+
.icon-github:before { content: '\e80a'; } /* 'î ' */
|
76 |
+
.icon-cog:before { content: '\e80b'; } /* 'î ' */
|
77 |
+
.icon-lock:before { content: '\e80c'; } /* 'î ' */
|
78 |
+
.icon-twitter:before { content: '\e80d'; } /* 'î ' */
|
79 |
+
.icon-sort-down:before { content: '\e80e'; } /* 'î ' */
|
80 |
+
.icon-pencil:before { content: '\e80f'; } /* 'î ' */
|
81 |
+
.icon-arrows-cw:before { content: '\e810'; } /* 'î ' */
|
82 |
+
.icon-sort-up:before { content: '\e811'; } /* 'î ' */
|
83 |
+
.icon-sort:before { content: '\e812'; } /* 'î ' */
|
84 |
+
.icon-lock-open-alt:before { content: '\e813'; } /* 'î ' */
|
85 |
+
.icon-plus:before { content: '\e814'; } /* 'î ' */
|
86 |
+
.icon-filter:before { content: '\e815'; } /* 'î ' */
|
87 |
+
.icon-check:before { content: '\e816'; } /* 'î ' */
|
88 |
+
.icon-help-circled:before { content: '\e817'; } /* 'î ' */
|
89 |
+
.icon-box:before { content: '\e818'; } /* 'î ' */
|
90 |
+
.icon-folder:before { content: '\e819'; } /* 'î ' */
|
91 |
+
.icon-check-empty:before { content: '\e81a'; } /* 'î ' */
|
92 |
+
.icon-doc-text-inv:before { content: '\e81b'; } /* 'î ' */
|
93 |
+
.icon-home:before { content: '\e81c'; } /* 'î ' */
|
94 |
+
.icon-angle-double-right:before { content: '\e81d'; } /* 'î ' */
|
95 |
+
.icon-facebook:before { content: '\e81e'; } /* 'î ' */
|
96 |
+
.icon-star:before { content: '\e81f'; } /* 'î ' */
|
97 |
|
98 |
.animate-spin {
|
99 |
-moz-animation: spin 2s infinite linear;
|
media/font/fontello.eot
CHANGED
Binary file
|
media/font/fontello.svg
CHANGED
@@ -1,41 +1,74 @@
|
|
1 |
<?xml version="1.0" standalone="no"?>
|
2 |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
-
<metadata>Copyright (C)
|
5 |
<defs>
|
6 |
<font id="fontello" horiz-adv-x="1000" >
|
7 |
<font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
|
8 |
<missing-glyph horiz-adv-x="1000" />
|
9 |
-
<glyph glyph-name="spin4" unicode="" d="
|
10 |
-
|
11 |
-
<glyph glyph-name="
|
12 |
-
|
13 |
-
<glyph glyph-name="
|
14 |
-
|
15 |
-
<glyph glyph-name="
|
16 |
-
|
17 |
-
<glyph glyph-name="
|
18 |
-
|
19 |
-
<glyph glyph-name="
|
20 |
-
|
21 |
-
<glyph glyph-name="
|
22 |
-
|
23 |
-
<glyph glyph-name="
|
24 |
-
|
25 |
-
<glyph glyph-name="
|
26 |
-
|
27 |
-
<glyph glyph-name="
|
28 |
-
|
29 |
-
<glyph glyph-name="
|
30 |
-
|
31 |
-
<glyph glyph-name="
|
32 |
-
|
33 |
-
<glyph glyph-name="
|
34 |
-
|
35 |
-
<glyph glyph-name="twitter" unicode="&#
|
36 |
-
|
37 |
-
<glyph glyph-name="sort-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
</font>
|
40 |
</defs>
|
41 |
</svg>
|
1 |
<?xml version="1.0" standalone="no"?>
|
2 |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata>Copyright (C) 2016 by original authors @ fontello.com</metadata>
|
5 |
<defs>
|
6 |
<font id="fontello" horiz-adv-x="1000" >
|
7 |
<font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
|
8 |
<missing-glyph horiz-adv-x="1000" />
|
9 |
+
<glyph glyph-name="spin4" unicode="" d="M498 850c-114 0-228-39-320-116l0 0c173 140 428 130 588-31 134-134 164-332 89-495-10-29-5-50 12-68 21-20 61-23 84 0 3 3 12 15 15 24 71 180 33 393-112 539-99 98-228 147-356 147z m-409-274c-14 0-29-5-39-16-3-3-13-15-15-24-71-180-34-393 112-539 185-185 479-195 676-31l0 0c-173-140-428-130-589 31-134 134-163 333-89 495 11 29 6 50-12 68-11 11-27 17-44 16z" horiz-adv-x="1001" />
|
10 |
+
|
11 |
+
<glyph glyph-name="eye-off" unicode="" d="M310 105l43 79q-48 35-76 88t-27 114q0 67 34 125-128-65-213-197 94-144 239-209z m217 424q0 11-8 19t-19 7q-70 0-120-50t-50-119q0-12 8-19t19-8 19 8 8 19q0 48 34 82t82 34q11 0 19 8t8 19z m202 106q0-4 0-5-59-105-176-316t-176-316l-28-50q-5-9-15-9-7 0-75 39-9 6-9 16 0 7 25 49-80 36-147 96t-117 137q-11 17-11 38t11 39q86 131 212 207t277 76q50 0 100-10l31 54q5 9 15 9 3 0 10-3t18-9 18-10 18-10 10-7q9-5 9-15z m21-249q0-78-44-142t-117-92l157 281q4-26 4-47z m250-72q0-19-11-38-22-36-61-81-84-96-194-149t-234-53l41 74q119 10 219 76t169 171q-65 100-158 164l35 63q53-36 102-86t81-102q11-19 11-39z" horiz-adv-x="1000" />
|
12 |
+
|
13 |
+
<glyph glyph-name="attention-circled" unicode="" d="M429 779q116 0 215-58t156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58z m71-696v106q0 8-5 13t-12 5h-107q-8 0-13-5t-6-13v-106q0-8 6-13t13-6h107q7 0 12 6t5 13z m-1 192l10 346q0 7-6 10-5 5-13 5h-123q-8 0-13-5-6-3-6-10l10-346q0-6 5-10t14-4h103q8 0 13 4t6 10z" horiz-adv-x="857.1" />
|
14 |
+
|
15 |
+
<glyph glyph-name="user-secret" unicode="" d="M321-7l54 250-54 71-71 36z m143 0l72 357-72-36-53-71z m90 563q-2 3-3 4-5 4-53 4-39 0-93-10-4-2-12-2t-12 2q-54 10-93 10-48 0-54-4-1-1-2-4 1-10 2-15 2-1 5-3t4-6q1-2 4-12t4-11 4-10 5-9 5-8 7-7 7-6 10-4 12-2 13-1q20 0 33 6t18 17 8 19 7 17 10 7h6q6 0 10-7t6-17 9-19 18-17 33-6q7 0 13 1t12 2 9 4 8 6 7 7 5 8 5 9 4 10 4 11 4 12q1 4 4 6t4 3q1 5 3 15z m232-490q0-68-41-106t-108-39h-488q-67 0-108 39t-41 106q0 34 3 66t10 70 21 69 36 58 52 41l-51 123h120q-12 36-12 71 0 7 1 18-109 22-109 54 0 32 118 55 9 35 28 75t40 63q18 21 42 21 17 0 47-17t47-18 47 18 47 17q24 0 42-21 20-23 39-63t29-75q117-23 117-55 0-32-108-54 4-45-11-89h119l-45-126q35-18 60-54t36-80 16-84 5-83z" horiz-adv-x="857.1" />
|
16 |
+
|
17 |
+
<glyph glyph-name="users" unicode="" d="M331 350q-90-3-148-71h-75q-45 0-77 22t-31 66q0 197 69 197 4 0 25-11t54-24 66-12q38 0 75 13-3-21-3-37 0-78 45-143z m598-356q0-66-41-105t-108-39h-488q-68 0-108 39t-41 105q0 30 2 58t8 61 14 61 24 54 35 45 48 30 62 11q6 0 24-12t41-26 59-27 76-12 75 12 60 27 41 26 23 12q35 0 63-11t47-30 35-45 24-54 15-61 8-61 2-58z m-572 713q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m393-214q0-89-63-152t-151-62-152 62-63 152 63 151 152 63 151-63 63-151z m321-126q0-43-31-66t-77-22h-75q-57 68-147 71 45 65 45 143 0 16-3 37 37-13 74-13 33 0 67 12t54 24 24 11q69 0 69-197z m-71 340q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z" horiz-adv-x="1071.4" />
|
18 |
+
|
19 |
+
<glyph glyph-name="eye" unicode="" d="M929 314q-85 132-213 197 34-58 34-125 0-104-73-177t-177-73-177 73-73 177q0 67 34 125-128-65-213-197 75-114 187-182t242-68 242 68 187 182z m-402 215q0 11-8 19t-19 7q-70 0-120-50t-50-119q0-12 8-19t19-8 19 8 8 19q0 48 34 82t82 34q11 0 19 8t8 19z m473-215q0-19-11-38-78-129-210-206t-279-77-279 77-210 206q-11 19-11 38t11 39q78 128 210 205t279 78 279-78 210-205q11-20 11-39z" horiz-adv-x="1000" />
|
20 |
+
|
21 |
+
<glyph glyph-name="basket" unicode="" d="M357-7q0-29-21-50t-50-22-50 22-22 50 22 50 50 21 50-21 21-50z m500 0q0-29-21-50t-50-22-51 22-21 50 21 50 51 21 50-21 21-50z m72 607v-286q0-13-10-23t-22-12l-583-68q7-34 7-40 0-8-13-35h513q15 0 26-11t10-25-10-25-26-11h-571q-14 0-25 11t-11 25q0 6 5 18t9 20 12 22 8 16l-98 460h-114q-15 0-25 10t-11 25 11 26 25 10h143q9 0 16-3t10-9 8-14 4-14 3-17 3-14h670q14 0 25-11t11-25z" horiz-adv-x="928.6" />
|
22 |
+
|
23 |
+
<glyph glyph-name="user" unicode="" d="M786 66q0-67-41-106t-108-39h-488q-67 0-108 39t-41 106q0 30 2 58t8 61 15 60 24 55 34 45 48 30 62 11q5 0 24-12t41-27 60-27 75-12 74 12 61 27 41 27 24 12q34 0 62-11t48-30 34-45 24-55 15-60 8-61 2-58z m-179 498q0-88-63-151t-151-63-152 63-62 151 62 152 152 63 151-63 63-152z" horiz-adv-x="785.7" />
|
24 |
+
|
25 |
+
<glyph glyph-name="trash-empty" unicode="" d="M286 439v-321q0-8-5-13t-13-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q8 0 13-5t5-13z m143 0v-321q0-8-5-13t-13-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q8 0 13-5t5-13z m142 0v-321q0-8-5-13t-12-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q7 0 12-5t5-13z m72-404v529h-500v-529q0-12 4-22t8-15 6-5h464q2 0 6 5t8 15 4 22z m-375 601h250l-27 65q-4 5-9 6h-177q-6-1-10-6z m518-18v-36q0-8-5-13t-13-5h-54v-529q0-46-26-80t-63-34h-464q-37 0-63 33t-27 79v531h-53q-8 0-13 5t-5 13v36q0 8 5 13t13 5h172l39 93q9 21 31 35t44 15h178q22 0 44-15t30-35l39-93h173q8 0 13-5t5-13z" horiz-adv-x="785.7" />
|
26 |
+
|
27 |
+
<glyph glyph-name="download-cloud" unicode="" d="M714 332q0 8-5 13t-13 5h-125v196q0 8-5 13t-12 5h-108q-7 0-12-5t-5-13v-196h-125q-8 0-13-5t-5-13q0-8 5-13l196-196q5-5 13-5t13 5l196 196q5 6 5 13z m357-125q0-89-62-151t-152-63h-607q-103 0-177 73t-73 177q0 72 39 134t105 92q-1 17-1 24 0 118 84 202t202 84q87 0 159-49t105-129q40 35 93 35 59 0 101-42t42-101q0-43-23-77 72-17 119-76t46-133z" horiz-adv-x="1071.4" />
|
28 |
+
|
29 |
+
<glyph glyph-name="github" unicode="" d="M357 171q0-22-7-45t-24-43-40-19-41 19-24 43-7 45 7 46 24 43 41 19 40-19 24-43 7-46z m357 0q0-22-7-45t-24-43-40-19-41 19-24 43-7 45 7 46 24 43 41 19 40-19 24-43 7-46z m90 0q0 67-39 114t-104 47q-23 0-109-12-40-6-88-6t-87 6q-85 12-109 12-66 0-104-47t-39-114q0-49 18-85t45-58 68-33 78-17 83-4h94q46 0 83 4t78 17 69 33 45 58 18 85z m125 99q0-116-34-185-22-43-59-74t-79-48-95-27-96-12-93-3q-43 0-79 2t-82 7-85 17-77 28-67 46-48 64q-35 69-35 185 0 132 76 221-15 45-15 94 0 65 28 122 61 0 106-22t106-69q82 20 172 20 83 0 156-18 59 46 105 67t105 22q29-57 29-122 0-48-15-93 76-90 76-222z" horiz-adv-x="928.6" />
|
30 |
+
|
31 |
+
<glyph glyph-name="cog" unicode="" d="M571 350q0 59-41 101t-101 42-101-42-42-101 42-101 101-42 101 42 41 101z m286 61v-124q0-7-4-13t-11-7l-104-16q-10-30-21-51 19-27 59-77 6-6 6-13t-5-13q-15-21-55-61t-53-39q-7 0-14 5l-77 60q-25-13-51-21-9-76-16-104-4-16-20-16h-124q-8 0-14 5t-6 12l-16 103q-27 9-50 21l-79-60q-6-5-14-5-8 0-14 6-70 64-92 94-4 5-4 13 0 6 5 12 8 12 28 37t30 40q-15 28-23 55l-102 15q-7 1-11 7t-5 13v124q0 7 5 13t10 7l104 16q8 25 22 51-23 32-60 77-6 7-6 14 0 5 5 12 15 20 55 60t53 40q7 0 15-5l77-60q24 13 50 21 9 76 17 104 3 15 20 15h124q7 0 13-4t7-12l15-103q28-9 50-21l80 60q5 5 13 5 7 0 14-5 72-67 92-95 4-5 4-13 0-6-4-12-9-12-29-38t-30-39q14-28 23-55l102-15q7-1 12-7t4-13z" horiz-adv-x="857.1" />
|
32 |
+
|
33 |
+
<glyph glyph-name="lock" unicode="" d="M179 421h285v108q0 59-42 101t-101 41-101-41-41-101v-108z m464-53v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h17v108q0 102 74 176t176 74 177-74 73-176v-108h18q23 0 38-15t16-38z" horiz-adv-x="642.9" />
|
34 |
+
|
35 |
+
<glyph glyph-name="twitter" unicode="" d="M904 622q-37-54-90-93 0-8 0-23 0-73-21-145t-64-139-103-117-144-82-181-30q-151 0-276 81 19-3 43-3 126 0 224 77-59 2-105 36t-64 89q19-2 34-2 24 0 48 6-63 13-104 62t-41 115v2q38-21 82-23-37 25-59 64t-22 86q0 49 25 91 68-83 164-133t208-55q-5 21-5 41 0 75 53 127t127 53q79 0 132-57 61 12 114 44-20-64-79-100 52 6 104 28z" horiz-adv-x="928.6" />
|
36 |
+
|
37 |
+
<glyph glyph-name="sort-down" unicode="" d="M571 243q0-15-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25t11 25 25 11h500q14 0 25-11t10-25z" horiz-adv-x="571.4" />
|
38 |
+
|
39 |
+
<glyph glyph-name="pencil" unicode="" d="M203-7l50 51-131 131-51-51v-60h72v-71h60z m291 518q0 12-12 12-5 0-9-4l-303-302q-4-4-4-10 0-12 13-12 5 0 9 4l303 302q3 4 3 10z m-30 107l232-232-464-465h-232v233z m381-54q0-29-20-50l-93-93-232 233 93 92q20 21 50 21 29 0 51-21l131-131q20-22 20-51z" horiz-adv-x="857.1" />
|
40 |
+
|
41 |
+
<glyph glyph-name="arrows-cw" unicode="" d="M843 261q0-3 0-4-36-150-150-243t-267-93q-81 0-157 31t-136 88l-72-72q-11-11-25-11t-25 11-11 25v250q0 14 11 25t25 11h250q14 0 25-11t10-25-10-25l-77-77q40-37 90-57t105-20q74 0 139 37t104 99q6 10 29 66 5 13 17 13h107q8 0 13-6t5-12z m14 446v-250q0-14-10-25t-26-11h-250q-14 0-25 11t-10 25 10 25l77 77q-82 77-194 77-75 0-140-37t-104-99q-6-10-29-66-5-13-17-13h-111q-7 0-13 6t-5 12v4q36 150 151 243t268 93q81 0 158-31t137-88l72 72q11 11 25 11t26-11 10-25z" horiz-adv-x="857.1" />
|
42 |
+
|
43 |
+
<glyph glyph-name="sort-up" unicode="" d="M571 457q0-14-10-25t-25-11h-500q-15 0-25 11t-11 25 11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="571.4" />
|
44 |
+
|
45 |
+
<glyph glyph-name="sort" unicode="" d="M571 243q0-15-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25t11 25 25 11h500q14 0 25-11t10-25z m0 214q0-14-10-25t-25-11h-500q-15 0-25 11t-11 25 11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="571.4" />
|
46 |
+
|
47 |
+
<glyph glyph-name="lock-open-alt" unicode="" d="M589 421q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h17v179q0 103 74 177t176 73 177-73 73-177q0-15-10-25t-25-11h-36q-14 0-25 11t-11 25q0 59-42 101t-101 42-101-42-41-101v-179h410z" horiz-adv-x="642.9" />
|
48 |
+
|
49 |
+
<glyph glyph-name="plus" unicode="" d="M786 439v-107q0-22-16-38t-38-15h-232v-233q0-22-16-37t-38-16h-107q-22 0-38 16t-15 37v233h-232q-23 0-38 15t-16 38v107q0 23 16 38t38 16h232v232q0 22 15 38t38 16h107q23 0 38-16t16-38v-232h232q22 0 38-16t16-38z" horiz-adv-x="785.7" />
|
50 |
+
|
51 |
+
<glyph glyph-name="filter" unicode="" d="M783 685q9-23-8-39l-275-275v-414q0-23-22-33-7-3-14-3-15 0-25 11l-143 143q-10 10-10 25v271l-275 275q-18 16-8 39 9 22 33 22h714q23 0 33-22z" horiz-adv-x="785.7" />
|
52 |
+
|
53 |
+
<glyph glyph-name="check" unicode="" d="M786 331v-177q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q35 0 65-14 9-4 10-13 2-10-5-16l-27-28q-6-5-13-5-2 0-5 1-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v141q0 8 5 13l36 35q6 6 13 6 3 0 7-2 11-4 11-16z m129 273l-455-454q-13-14-31-14t-32 14l-240 240q-14 13-14 31t14 32l61 62q14 13 32 13t32-13l147-147 361 361q13 13 31 13t32-13l62-61q13-14 13-32t-13-32z" horiz-adv-x="928.6" />
|
54 |
+
|
55 |
+
<glyph glyph-name="help-circled" unicode="" d="M500 82v107q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h107q8 0 13 5t5 13z m143 375q0 49-31 91t-77 65-95 23q-136 0-207-119-9-14 4-24l74-55q4-4 10-4 9 0 14 7 30 38 48 51 19 14 48 14 27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-65-48t-29-70v-20q0-8 5-13t13-5h107q8 0 13 5t5 13q0 10 12 27t30 28q18 10 28 16t25 19 25 27 16 34 7 45z m214-107q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
|
56 |
+
|
57 |
+
<glyph glyph-name="box" unicode="" d="M607 386q0 14-10 25t-26 10h-142q-15 0-26-10t-10-25 10-25 26-11h142q15 0 26 11t10 25z m322 107v-536q0-14-11-25t-25-11h-786q-14 0-25 11t-11 25v536q0 14 11 25t25 11h786q14 0 25-11t11-25z m35 250v-143q0-15-10-25t-25-11h-858q-14 0-25 11t-10 25v143q0 14 10 25t25 11h858q14 0 25-11t10-25z" horiz-adv-x="1000" />
|
58 |
+
|
59 |
+
<glyph glyph-name="folder" unicode="" d="M929 511v-393q0-51-37-88t-88-37h-679q-51 0-88 37t-37 88v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h375q51 0 88-37t37-88z" horiz-adv-x="928.6" />
|
60 |
+
|
61 |
+
<glyph glyph-name="check-empty" unicode="" d="M625 707h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v464q0 37-26 63t-63 26z m161-89v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q66 0 114-48t47-113z" horiz-adv-x="785.7" />
|
62 |
+
|
63 |
+
<glyph glyph-name="doc-text-inv" unicode="" d="M819 584q8-7 16-20h-264v264q13-8 21-16z m-265-91h303v-589q0-23-15-38t-38-16h-750q-23 0-38 16t-16 38v892q0 23 16 38t38 16h446v-304q0-22 16-38t38-15z m89-411v36q0 8-5 13t-13 5h-393q-8 0-13-5t-5-13v-36q0-8 5-13t13-5h393q8 0 13 5t5 13z m0 143v36q0 7-5 12t-13 5h-393q-8 0-13-5t-5-12v-36q0-8 5-13t13-5h393q8 0 13 5t5 13z m0 143v35q0 8-5 13t-13 5h-393q-8 0-13-5t-5-13v-35q0-8 5-13t13-5h393q8 0 13 5t5 13z" horiz-adv-x="857.1" />
|
64 |
+
|
65 |
+
<glyph glyph-name="home" unicode="" d="M786 296v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-4-7 2-12 7l-35 41q-4 5-3 13t6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13z" horiz-adv-x="928.6" />
|
66 |
+
|
67 |
+
<glyph glyph-name="angle-double-right" unicode="" d="M332 314q0-7-6-13l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13z m214 0q0-7-5-13l-260-260q-6-5-13-5t-13 5l-28 28q-5 6-5 13t5 13l219 219-219 220q-5 5-5 12t5 13l28 28q6 6 13 6t13-6l260-260q5-5 5-13z" horiz-adv-x="571.4" />
|
68 |
+
|
69 |
+
<glyph glyph-name="facebook" unicode="" d="M535 843v-147h-87q-48 0-65-20t-17-60v-106h164l-22-165h-142v-424h-171v424h-142v165h142v122q0 104 58 161t155 57q82 0 127-7z" horiz-adv-x="571.4" />
|
70 |
+
|
71 |
+
<glyph glyph-name="star" unicode="" d="M929 489q0-12-15-27l-203-197 48-279q1-4 1-12 0-11-6-19t-17-9q-10 0-22 7l-251 132-250-132q-13-7-23-7-11 0-17 9t-6 19q0 4 1 12l48 279-203 197q-14 15-14 27 0 21 31 26l280 40 126 254q11 23 27 23t28-23l125-254 280-40q32-5 32-26z" horiz-adv-x="928.6" />
|
72 |
</font>
|
73 |
</defs>
|
74 |
</svg>
|
media/font/fontello.ttf
CHANGED
Binary file
|
media/font/fontello.woff
CHANGED
Binary file
|
media/font/fontello.woff2
ADDED
Binary file
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: vasyltech
|
|
3 |
Tags: access, access manager, role, user, capability, admin, page, post, widget
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.4
|
6 |
-
Stable tag: 3.1
|
7 |
|
8 |
One of the best tools in WordPress repository to manage access to your posts,
|
9 |
pages, categories and backend area for users, roles and visitors.
|
@@ -45,6 +45,10 @@ out more about the Advanced Access Manager.
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
|
|
48 |
= 3.1 =
|
49 |
* Integrated User Switch with AAM
|
50 |
* Fixed bugs reported by WP Error Fix
|
3 |
Tags: access, access manager, role, user, capability, admin, page, post, widget
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.4
|
6 |
+
Stable tag: 3.1.1
|
7 |
|
8 |
One of the best tools in WordPress repository to manage access to your posts,
|
9 |
pages, categories and backend area for users, roles and visitors.
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 3.1.1 =
|
49 |
+
* Fixed potential bug with check user capability functionality
|
50 |
+
* Added social links to the AAM page
|
51 |
+
|
52 |
= 3.1 =
|
53 |
* Integrated User Switch with AAM
|
54 |
* Fixed bugs reported by WP Error Fix
|