Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PLANET-6825: Page creation UI integration #882

Merged
merged 1 commit into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions classes/patterns/class-blankpage.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php
/**
* BlankPage pattern class.
*
* @package P4GBKS
* @since 0.1
*/

namespace P4GBKS\Patterns;

/**
* This class is used for returning a blank page with a default content.
*
* @package P4GBKS\Patterns
*/
class BlankPage extends Block_Pattern {

/**
* @inheritDoc
*/
public static function get_name(): string {
return 'p4/blank-page';
}

/**
* @inheritDoc
*
* @param array $params Optional array of parameters for the config.
*/
public static function get_config( $params = [] ): array {
return [
'title' => __( 'Blank page', 'planet4-blocks-backend' ),
'blockTypes' => [ 'core/post-content' ],
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to add this config for adding it into the page creation popup.

'categories' => [ 'pages' ],
'content' => '
<!-- wp:paragraph {"placeholder":"' . __( 'Enter text', 'planet4-blocks-backend' ) . '"} -->
<p></p>
<!-- /wp:paragraph -->
',
];
}
}
1 change: 1 addition & 0 deletions classes/patterns/class-block-pattern.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public static function register_all() {
}

$patterns = [
BlankPage::class,
SideImageWithTextAndCta::class,
HighlightedCta::class,
RealityCheck::class,
Expand Down