← All changes
|
includes/blocks/class-convertkit-block-broadcasts.php
+16
-0
3.3.9
→
3.4.3
View file →
| @@ -26,8 +26,11 @@ | ||
| 26 | 26 | |
| 27 | 27 | // Register this as a Gutenberg block in the ConvertKit Plugin. |
| 28 | 28 | add_filter( 'convertkit_blocks', array( $this, 'register' ) ); |
| 29 | 29 | |
| 30 | + // Register this block's MCP abilities. | |
| 31 | + add_filter( 'convertkit_abilities', array( $this, 'register_abilities' ) ); | |
| 32 | + | |
| 30 | 33 | // Enqueue scripts and styles for this Gutenberg Block in the editor and frontend views. |
| 31 | 34 | add_action( 'convertkit_gutenberg_enqueue_scripts_editor_and_frontend', array( $this, 'enqueue_scripts' ) ); |
| 32 | 35 | add_action( 'convertkit_gutenberg_enqueue_styles_editor_and_frontend', array( $this, 'enqueue_styles' ) ); |
| 33 | 36 | |
| @@ -165,8 +168,21 @@ | ||
| 165 | 168 | * |
| 166 | 169 | * @since 3.1.1 |
| 167 | 170 | */ |
| 168 | 171 | public function get_title() { |
| 172 | + | |
| 173 | + return __( 'Kit Broadcasts', 'convertkit' ); | |
| 174 | + | |
| 175 | + } | |
| 176 | + | |
| 177 | + /** | |
| 178 | + * Returns this block's plural title. | |
| 179 | + * | |
| 180 | + * @since 3.4.0 | |
| 181 | + * | |
| 182 | + * @return string | |
| 183 | + */ | |
| 184 | + public function get_title_plural() { | |
| 169 | 185 | |
| 170 | 186 | return __( 'Kit Broadcasts', 'convertkit' ); |
| 171 | 187 | |
| 172 | 188 | } |