File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes for Webhooks for Craft CMS
2
2
3
- ## 2.3.1 - 2020-07-19
3
+ ## 2.3.2 - 2020-06-27
4
+
5
+ ### Fixed
6
+ - Fixed a PHP error that occurred when running Craft 3.5 or later. ([ #34 ] ( https://github.com/craftcms/webhooks/issues/34 ) )
7
+
8
+ ## 2.3.1 - 2020-06-19
4
9
5
10
### Added
6
11
- Added a new “Element is enabled” filter. ([ #29 ] ( https://github.com/craftcms/webhooks/issues/29 ) )
7
12
8
- ## 2.3.0 - 2020-07 -18
13
+ ## 2.3.0 - 2020-06 -18
9
14
10
15
### Added
11
16
- Added a settings page in the control panel.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " craftcms/webhooks" ,
3
3
"description" : " Post webhooks when events are triggered in Craft CMS." ,
4
- "version" : " 2.3.1 " ,
4
+ "version" : " 2.3.2 " ,
5
5
"type" : " craft-plugin" ,
6
6
"keywords" : [
7
7
" html" ,
Original file line number Diff line number Diff line change 3
3
namespace craft \webhooks \filters ;
4
4
5
5
use Craft ;
6
+ use craft \base \Component ;
6
7
use craft \base \ElementInterface ;
7
8
use craft \events \ElementEvent ;
8
9
use craft \services \Elements ;
15
16
* @author Pixel & Tonic, Inc. <[email protected] >
16
17
* @since 2.1
17
18
*/
18
- abstract class BaseElementFilter implements FilterInterface
19
+ abstract class BaseElementFilter extends Component implements FilterInterface
19
20
{
20
21
public static function show (string $ class , string $ event ): bool
21
22
{
You can’t perform that action at this time.
0 commit comments