[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/js/bp-core/js/blocks/ -> login-form.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 editLoginForm from './login-form/edit';
  17  import transforms from './login-form/transforms';
  18  
  19  registerBlockType( 'bp/login-form', {
  20      title: __( 'Login Form', 'buddypress' ),
  21      description: __( 'Show a Log In form to logged-out visitors, and a Log Out link to those who are logged in.', 'buddypress' ),
  22      icon: {
  23          background: '#fff',
  24          foreground: '#d84800',
  25          src: 'admin-users',
  26      },
  27      category: 'buddypress',
  28      attributes: {
  29          title: {
  30              type: 'string',
  31              default: '',
  32          },
  33          forgotPwdLink: {
  34              type: 'boolean',
  35              default: false,
  36          },
  37      },
  38      edit: editLoginForm,
  39      transforms: transforms,
  40  } );


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