[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/js/bp-groups/js/blocks/ -> dynamic-groups.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 editDynamicGroupsBlock from './dynamic-groups/edit';
  17  import transforms from './dynamic-groups/transforms';
  18  
  19  registerBlockType( 'bp/dynamic-groups', {
  20      title: __( 'Dynamic Groups List', 'buddypress' ),
  21      description: __( 'A dynamic list of recently active, popular, newest, or alphabetical groups.', 'buddypress' ),
  22      icon: {
  23          background: '#fff',
  24          foreground: '#d84800',
  25          src: 'buddicons-groups',
  26      },
  27      category: 'buddypress',
  28      attributes: {
  29          title: {
  30              type: 'string',
  31              default: __( 'Groups', 'buddypress' ),
  32          },
  33          maxGroups: {
  34              type: 'number',
  35              default: 5
  36          },
  37          groupDefault: {
  38              type: 'string',
  39              default: 'active',
  40          },
  41          linkTitle: {
  42              type: 'boolean',
  43              default: false,
  44          },
  45      },
  46      edit: editDynamicGroupsBlock,
  47      transforms: transforms,
  48  } );


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