[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/js/bp-blogs/js/blocks/ -> recent-posts.js (source)

   1  /**
   2   * WordPress dependencies.
   3   */
   4  const {
   5      blocks: {
   6          registerBlockType,
   7      },
   8      i18n: {
   9          __,
  10      },
  11  } = wp;
  12  
  13  /**
  14   * Internal dependencies.
  15   */
  16  import editRecentPostsBlock from './recent-posts/edit';
  17  import transforms from './recent-posts/transforms';
  18  
  19  registerBlockType( 'bp/recent-posts', {
  20      title: __( 'Recent Networkwide Posts', 'buddypress' ),
  21      description: __( 'A list of recently published posts from across your network.', 'buddypress' ),
  22      icon: {
  23          background: '#fff',
  24          foreground: '#d84800',
  25          src: 'wordpress',
  26      },
  27      category: 'buddypress',
  28      attributes: {
  29          title: {
  30              type: 'string',
  31              default: __( 'Recent Networkwide Posts', 'buddypress' ),
  32          },
  33          maxPosts: {
  34              type: 'number',
  35              default: 10
  36          },
  37          linkTitle: {
  38              type: 'boolean',
  39              default: false,
  40          },
  41      },
  42      edit: editRecentPostsBlock,
  43      transforms: transforms,
  44  } );


Generated: Fri May 5 01:01:24 2023 Cross-referenced by PHPXref 0.7.1