Skip to content

Commit 923bd5c

Browse files
authored
Merge pull request #323 from GM-Alex/next
Bump version 2.2.5
2 parents 82eebc8 + c9108c3 commit 923bd5c

12 files changed

+39
-38
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "User Access Manager plugin for Wordpress",
44
"type": "wordpress-plugin",
55
"license": "GPL-2.0",
6-
"version": "2.2.4",
6+
"version": "2.2.5",
77
"authors": [
88
{
99
"name": "Alexander Schneider",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "user-access-manager",
3-
"version": "2.2.4",
3+
"version": "2.2.5",
44
"description": "[![Build Status](https://travis-ci.org/GM-Alex/user-access-manager.svg)](https://travis-ci.org/GM-Alex/user-access-manager)",
55
"main": "index.js",
66
"directories": {

readme.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
44
Tags: admin, access, member area, members, member, member access, page, pages, post, posts, private, privacy, restrict, user, user access manager, user management
55
Requires at least: 4.7
66
Tested up to: 5.6
7-
Stable tag: 2.2.4
7+
Stable tag: 2.2.5
88

99
With the "User Access Manager"-plugin you can manage the access to your posts, pages and files.
1010

@@ -59,6 +59,8 @@ Here you found the changes in each version.
5959

6060
Version Date Changes
6161

62+
2.2.5 2021/02/14 Fix more possible type errors if wordpress switches int to string.
63+
6264
2.2.4 2021/02/13 Fix type error for user object controller.
6365
Fix type error for the wordpress wrapper.
6466

src/Controller/Backend/PostObjectController.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ public function addPostColumnsHeader(array $defaults): array
4343
/**
4444
* The function for the manage_users_custom_column action.
4545
* @param string $columnName The column name.
46-
* @param integer $id The id.
46+
* @param int|string $id The id.
4747
* @throws UserGroupTypeException
4848
*/
49-
public function addPostColumn(string $columnName, int $id)
49+
public function addPostColumn(string $columnName, $id)
5050
{
5151
if ($columnName === self::COLUMN_NAME) {
5252
$post = $this->objectHandler->getPost($id);
@@ -154,9 +154,9 @@ public function saveAjaxAttachmentData()
154154

155155
/**
156156
* The function for the delete_post action.
157-
* @param integer $postId The post id.
157+
* @param int|string $postId The post id.
158158
*/
159-
public function removePostData(int $postId)
159+
public function removePostData($postId)
160160
{
161161
$post = $this->objectHandler->getPost($postId);
162162
$this->removeObjectData($post->post_type, $postId);

src/Controller/Backend/TermObjectController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ public function addTermColumnsHeader(array $defaults): array
4343
* The function for the manage_categories_custom_column action.
4444
* @param string $content Content for the column. Multiple filter calls are possible, so we need to append.
4545
* @param string $columnName The column name.
46-
* @param integer $id The id.
46+
* @param int|string $id The id.
4747
* @return string $content with content appended for self::COLUMN_NAME column
4848
* @throws UserGroupTypeException
4949
*/
50-
public function addTermColumn(string $content, string $columnName, int $id): string
50+
public function addTermColumn(string $content, string $columnName, $id): string
5151
{
5252
if ($columnName === self::COLUMN_NAME) {
5353
$term = $this->objectHandler->getTerm($id);

src/Controller/Backend/UserObjectController.php

+4-5
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,11 @@ public function addUserColumnsHeader(array $defaults): array
4242
* The function for the manage_users_custom_column action.
4343
* @param null|string $return The normal return value.
4444
* @param string $columnName The column name.
45-
* @param integer $id The id.
45+
* @param int|string $id The id.
4646
* @return string|null
4747
* @throws UserGroupTypeException
48-
* @throws UserGroupTypeException
4948
*/
50-
public function addUserColumn(?string $return, string $columnName, int $id): ?string
49+
public function addUserColumn(?string $return, string $columnName, $id): ?string
5150
{
5251
if ($columnName === self::COLUMN_NAME) {
5352
$this->setObjectInformation(ObjectHandler::GENERAL_USER_OBJECT_TYPE, $id);
@@ -71,11 +70,11 @@ public function showUserProfile()
7170

7271
/**
7372
* The function for the profile_update action.
74-
* @param integer $userId The user id.
73+
* @param int|string $userId The user id.
7574
* @throws UserGroupTypeException
7675
* @throws UserGroupTypeException
7776
*/
78-
public function saveUserData(int $userId)
77+
public function saveUserData($userId)
7978
{
8079
$this->saveObjectData(ObjectHandler::GENERAL_USER_OBJECT_TYPE, $userId);
8180
}

src/Controller/Frontend/PostController.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -329,11 +329,11 @@ public function showPages($rawPages = []): array
329329
/**
330330
* Checks the access of the attached file.
331331
* @param string $file
332-
* @param int $attachmentId
332+
* @param int|string $attachmentId
333333
* @return string|false
334334
* @throws UserGroupTypeException
335335
*/
336-
public function getAttachedFile(string $file, int $attachmentId)
336+
public function getAttachedFile(string $file, $attachmentId)
337337
{
338338
$isImage = (bool) preg_match('/(?i)\.(jpg|jpeg|jpe|png|gif)$/', $file);
339339

@@ -497,11 +497,11 @@ public function showComment($comments = []): array
497497
/**
498498
* The function for the edit_post_link filter.
499499
* @param string $link The edit link.
500-
* @param integer $postId The _iId of the post.
500+
* @param int|string $postId The _iId of the post.
501501
* @return string
502502
* @throws UserGroupTypeException
503503
*/
504-
public function showEditLink(string $link, int $postId): string
504+
public function showEditLink(string $link, $postId): string
505505
{
506506
if ($this->mainConfig->hideEditLinkOnNoAccess() === true
507507
&& $this->accessHandler->checkObjectAccess(ObjectHandler::GENERAL_POST_OBJECT_TYPE, $postId, true) === false

src/Controller/Frontend/RedirectController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -373,10 +373,10 @@ public function redirect(array $headers, object $pageParams): array
373373
/**
374374
* Returns the url for a locked file.
375375
* @param string $url The base url.
376-
* @param integer $id The _iId of the file.
376+
* @param int|string $id The id of the file.
377377
* @return string
378378
*/
379-
public function getFileUrl(string $url, int $id): string
379+
public function getFileUrl(string $url, $id): string
380380
{
381381
// Nginx always supports real urls so we need the new urls only
382382
// if we don't use nginx and mod_rewrite is disabled

src/Controller/Frontend/TermController.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ private function getPostObjectHideConfig(): ?array
109109
/**
110110
* Returns all posts for the given term.
111111
* @param string $termType
112-
* @param int $termId
112+
* @param int|string $termId
113113
* @return array
114114
*/
115-
private function getAllPostForTerm(string $termType, int $termId): array
115+
private function getAllPostForTerm(string $termType, $termId): array
116116
{
117117
$fullTerms = [$termId => $termType];
118118
$termTreeMap = $this->objectMapHandler->getTermTreeMap();
@@ -138,11 +138,11 @@ private function getAllPostForTerm(string $termType, int $termId): array
138138
/**
139139
* Returns the post count for the term.
140140
* @param string $termType
141-
* @param int $termId
141+
* @param int|string $termId
142142
* @return int
143143
* @throws UserGroupTypeException
144144
*/
145-
private function getVisibleElementsCount(string $termType, int $termId): int
145+
private function getVisibleElementsCount(string $termType, $termId): int
146146
{
147147
$key = $termType . '|' . $termId;
148148

src/UserAccessManager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*/
5151
class UserAccessManager
5252
{
53-
const VERSION = '2.2.4';
53+
const VERSION = '2.2.5';
5454
const DB_VERSION = '1.6.1';
5555

5656
/**

src/UserGroup/AbstractUserGroup.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ public function isObjectAssignedToGroup(
559559
* Returns a single object.
560560
* @param string $objectType The object type.
561561
* @param int|string $objectId The id of the object which should be checked.
562-
* @param null $assignmentInformation The assignment information
562+
* @param null|AssignmentInformation $assignmentInformation The assignment information
563563
* @return bool
564564
* @throws Exception
565565
*/
@@ -592,48 +592,48 @@ public function isObjectMember(
592592

593593
/**
594594
* Checks if the role is a group member.
595-
* @param string $roleId
595+
* @param int|string $roleId
596596
* @param null $assignmentInformation
597597
* @return bool
598598
* @throws Exception
599599
*/
600-
public function isRoleMember(string $roleId, &$assignmentInformation = null): bool
600+
public function isRoleMember($roleId, &$assignmentInformation = null): bool
601601
{
602602
return $this->isObjectMember(ObjectHandler::GENERAL_ROLE_OBJECT_TYPE, $roleId, $assignmentInformation);
603603
}
604604

605605
/**
606606
* Checks if the user is a group member.
607-
* @param int $userId The user id.
608-
* @param null $assignmentInformation The assignment information.
607+
* @param int|string $userId The user id.
608+
* @param null|AssignmentInformation $assignmentInformation The assignment information.
609609
* @return bool
610610
* @throws Exception
611611
*/
612-
public function isUserMember(int $userId, &$assignmentInformation = null): bool
612+
public function isUserMember($userId, &$assignmentInformation = null): bool
613613
{
614614
return $this->isObjectMember(ObjectHandler::GENERAL_USER_OBJECT_TYPE, $userId, $assignmentInformation);
615615
}
616616

617617
/**
618618
* Checks if the term is a group member.
619-
* @param int $termId
620-
* @param null $assignmentInformation
619+
* @param int|string $termId
620+
* @param null|AssignmentInformation $assignmentInformation
621621
* @return bool
622622
* @throws Exception
623623
*/
624-
public function isTermMember(int $termId, &$assignmentInformation = null): bool
624+
public function isTermMember($termId, &$assignmentInformation = null): bool
625625
{
626626
return $this->isObjectMember(ObjectHandler::GENERAL_TERM_OBJECT_TYPE, $termId, $assignmentInformation);
627627
}
628628

629629
/**
630630
* Checks if the post is a group member
631-
* @param int $postId
632-
* @param null $assignmentInformation
631+
* @param int|string $postId
632+
* @param null|AssignmentInformation $assignmentInformation
633633
* @return bool
634634
* @throws Exception
635635
*/
636-
public function isPostMember(int $postId, &$assignmentInformation = null): bool
636+
public function isPostMember($postId, &$assignmentInformation = null): bool
637637
{
638638
return $this->isObjectMember(ObjectHandler::GENERAL_POST_OBJECT_TYPE, $postId, $assignmentInformation);
639639
}

user-access-manager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: User Access Manager
44
* Plugin URI: https://wordpress.org/plugins/user-access-manager/
55
* Author URI: https://twitter.com/GM_Alex
6-
* Version: 2.2.4
6+
* Version: 2.2.5
77
* Author: Alexander Schneider
88
* Description: Manage the access to your posts, pages, categories and files.
99
* Text Domain: user-access-manager

0 commit comments

Comments
 (0)