-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Task #151210 feat: Show hash(md5 string) of username & email data in reports * Task #151210 chore: Updated hashed column length * Task #151210 chore: Resolved PHPCS issue * Task #151210 chore: Resolved PHPCS issue
- Loading branch information
1 parent
555a103
commit 0fc793f
Showing
9 changed files
with
31 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
<extension version="3.9" type="plugin" group="actionlog" method="upgrade"> | ||
<name>plg_actionlog_tjreports</name> | ||
<author>Techjoomla</author> | ||
<creationDate>12th Jul 2019</creationDate> | ||
<creationDate>26th Sep 2019</creationDate> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<version>1.1.1</version> | ||
<version>1.1.2</version> | ||
<description>PLG_ACTIONLOG_TJREPORTS_XML_DESCRIPTION</description> | ||
<files> | ||
<filename plugin="tjreports">tjreports.php</filename> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<creationDate>12th Jul 2019</creationDate> | ||
<creationDate>26th Sep 2019</creationDate> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<version>1.1.1</version> | ||
<version>1.1.2</version> | ||
|
||
<files> | ||
<filename plugin="tjreportsfields">tjreportsfields.php</filename> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension version="3.4" type="plugin" group="privacy" method="upgrade"> | ||
<name>plg_privacy_tjreports</name> | ||
<version>1.1.1</version> | ||
<creationDate>12th Jul 2019</creationDate> | ||
<version>1.1.2</version> | ||
<creationDate>26th Sep 2019</creationDate> | ||
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
|
4 changes: 3 additions & 1 deletion
4
tjreports/plugins/user/tjreportsindexer/sql/tjreportsindexer.install.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
CREATE TABLE IF NOT EXISTS `#__tjreports_com_users_user` ( | ||
`record_id` int(11) NOT NULL | ||
`record_id` int(11) NOT NULL, | ||
`username_hash` VARCHAR(100) NOT NULL, | ||
`email_hash` VARCHAR(100) NOT NULL | ||
)ENGINE=InnoDB DEFAULT CHARSET=utf8; |
2 changes: 2 additions & 0 deletions
2
tjreports/plugins/user/tjreportsindexer/sql/updates/mysql/1.1.2.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE `#__tjreports_com_users_user` ADD username_hash VARCHAR(100) NOT NULL AFTER record_id; | ||
ALTER TABLE `#__tjreports_com_users_user` ADD email_hash VARCHAR(100) NOT NULL AFTER username_hash; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<creationDate>12th Jul 2019</creationDate> | ||
<creationDate>26th Sep 2019</creationDate> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<version>1.1.1</version> | ||
<version>1.1.2</version> | ||
<install> | ||
<sql> | ||
<file driver="mysql" charset="utf8">sql/tjreportsindexer.install.sql</file> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters