-
Notifications
You must be signed in to change notification settings - Fork 15
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 #20 from mototeam/sprint16
= 1.6.1, Jul 1 2020 = * Fixed an issue with Rank Math WordPress SEO plugin. * Fixed an issue in Contact Form block. * Fixed an issue with text in Video Popup block. * Fixed an issue with pagination and offset options for all post-based blocks.
- Loading branch information
Showing
29 changed files
with
407 additions
and
144 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
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
namespace Getwid\Blocks; | ||
|
||
class Table extends \Getwid\Blocks\AbstractBlock { | ||
|
||
protected static $blockName = 'getwid/table'; | ||
|
||
public function __construct() { | ||
|
||
parent::__construct( self::$blockName ); | ||
|
||
register_block_type( | ||
'getwid/table' | ||
); | ||
} | ||
|
||
public function getLabel() { | ||
return __( 'Table', 'getwid' ); | ||
} | ||
} | ||
|
||
getwid()->blocksManager()->addBlock( | ||
new \Getwid\Blocks\Table() | ||
); |
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
Oops, something went wrong.