-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #211 from techjoomla/release-1.1.5
Merge `Release 1.1.5` into `master`
- Loading branch information
Showing
32 changed files
with
1,158 additions
and
282 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Changelog | ||
|
||
#### Legend | ||
|
||
- Bug Fix (-) | ||
- Feature Addition (+) | ||
- Improvement (^) | ||
|
||
--- | ||
|
||
## com_tjreports v1.1.5 | ||
|
||
### + Features Additions: | ||
|
||
- #156044 Bulk Email sending | ||
- #155499 Add a function in tjreports to get the reports that support google data studio connector | ||
- #153710 Show summary report for Feedback | ||
|
||
### ^ Improvements: | ||
|
||
- #168311 Remove duplicates Language constant from language files. | ||
- #160788 Added index in #__tjreports_com_users_user table | ||
- #148927 Add reports API plugin in TJReport package | ||
|
||
#### - Bug Fixes: | ||
|
||
- #169471 Reports > In report data not showing count with link, it's showing href string | ||
- #169429 Reports > Frontend > Reports > Radio button and Export CSV alignment messed up | ||
- #169428 Reports > Frontend > Reports > Language constant missing | ||
- #169363 CSV export not working when report name has special characters | ||
- #169215 Reports > Reports having dynamic column shows different data with / without loading params | ||
- #165179 Search tools on Reports not working on mobile devices | ||
- #165071 Fix height for column level filter in report | ||
- #164411 Getting Unknown column 'Array' in 'field list' error | ||
- #164232 Single quotes and double quotes are getting removed | ||
- #163952 Users com_fields are saving by converting some characters to HTML entities instead of the original value | ||
- #163509 After Block the user from users list then 'user field' not showing in the user reports | ||
- #160788 fix: TjReports Performance Issue in reports model as it fetches all the record from the database without pagination/limit | ||
- #180 Added missing language constants for column wise sorting | ||
- #176 Compatible date field filter for any date format and modified in query | ||
- #172 Notice: Undefined index in reports model & reports default view | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
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
21 changes: 21 additions & 0 deletions
21
tjreports/administrator/views/reports/tmpl/default_summary.php
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,21 @@ | ||
<?php | ||
/** | ||
* @package TJRports | ||
* @subpackage com_tjreports | ||
* | ||
* @author Techjoomla <[email protected]> | ||
* @copyright Copyright (C) 2009 - 2020 Techjoomla. All rights reserved. | ||
* @license GNU General Public License version 2 or later; see LICENSE.txt | ||
*/ | ||
|
||
// No direct access | ||
defined('_JEXEC') or die; | ||
|
||
// Load the layout & push variables | ||
|
||
$path = $this->tjreportsHelper->getViewpath('com_tjreports', 'reports', 'default_summary', 'SITE', 'SITE'); | ||
ob_start(); | ||
include $path; | ||
$html = ob_get_contents(); | ||
ob_end_clean(); | ||
echo $html; |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
tjreports/plugins/api/reports/language/en-GB/en-GB.plg_api_reports.ini
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,7 @@ | ||
; @package Com_Tjreports | ||
; @copyright Copyright © 2009-2018 Techjoomla. All rights reserved. | ||
; @license GNU General Public License version 2, or later | ||
; Note: All ini files need to be saved as UTF-8 | ||
|
||
PLG_API_REPORTS_REPORT_NAME_MISSSING="Please enter report name" | ||
PLG_API_REPORTS_REPORT_NAME_INVALID="Please enter valid report name" |
7 changes: 7 additions & 0 deletions
7
tjreports/plugins/api/reports/language/en-GB/en-GB.plg_api_reports.sys.ini
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,7 @@ | ||
; @package Com_Tjreports | ||
; @copyright Copyright © 2009-2018 Techjoomla. All rights reserved. | ||
; @license GNU General Public License version 2, or later | ||
; Note: All ini files need to be saved as UTF-8 | ||
|
||
PLG_API_REPORTS="TJ Reports Api Plugin" | ||
PLG_API_REPORTS_DESCRIPTION="TJ Reports Api Plugin" |
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,43 @@ | ||
<?php | ||
/** | ||
* @package Tjreports | ||
* @subpackage com_api | ||
* | ||
* @author Techjoomla <[email protected]> | ||
* @copyright Copyright (C) 2009 - 2018 Techjoomla. All rights reserved. | ||
* @license GNU General Public License version 2 or later; see LICENSE.txt | ||
*/ | ||
|
||
// No direct access. | ||
defined('_JEXEC') or die; | ||
|
||
jimport('joomla.plugin.plugin'); | ||
JLoader::import('components.com_tjreports.models.report', JPATH_SITE); | ||
|
||
/** | ||
* Tjreports API plugin | ||
* | ||
* @since 1.0 | ||
*/ | ||
class PlgAPIReports extends ApiPlugin | ||
{ | ||
/** | ||
* Constructor | ||
* | ||
* @param STRING &$subject subject | ||
* @param array $config config | ||
* | ||
* @since 1.0 | ||
*/ | ||
public function __construct(&$subject, $config = array()) | ||
{ | ||
parent::__construct($subject, $config = array()); | ||
|
||
// Set resource path | ||
ApiResource::addIncludePath(dirname(__FILE__) . '/reports'); | ||
|
||
// Load language files | ||
$lang = JFactory::getLanguage(); | ||
$lang->load('plg_api_reports', JPATH_SITE . "/plugins/api/reports/", 'en-GB', true); | ||
} | ||
} |
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,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension version="3.0.0" type="plugin" group="api" method="upgrade"> | ||
<name>PLG_API_REPORTS</name> | ||
<version>1.0</version> | ||
<creationDate>28th May 2018</creationDate> | ||
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<copyright>Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<description>PLG_API_REPORTS_DESCRIPTION</description> | ||
<files> | ||
<filename plugin="reports">reports.php</filename> | ||
<folder>reports</folder> | ||
<folder>language</folder> | ||
</files> | ||
<languages folder="language"> | ||
<language tag="en-GB">en-GB/en-GB.plg_api_reports.ini</language> | ||
<language tag="en-GB">en-GB/en-GB.plg_api_reports.sys.ini</language> | ||
</languages> | ||
</extension> |
Oops, something went wrong.