BP_XProfile_Field::render_admin_form( string $message = '', string $message_type = 'error' )

Output the admin form for this field.

Description

Parameters

$message

(Optional) Message to display.

Default value: ''

$message_type

(Optional) error or udpated

Default value: 'error'

Source

File: bp-xprofile/classes/class-bp-xprofile-field.php

1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
public function render_admin_form( $message = '', $message_type = 'error' ) {
 
    // Users Admin URL
    $users_url = bp_get_admin_url( 'admin.php' );
 
    // Add New
    if ( empty( $this->id ) ) {
        $title  = __( 'Add New Field', 'buddyboss' );
        $button = __( 'Save', 'buddyboss' );
        $action = add_query_arg( array(
            'page'     => 'bp-profile-setup',
            'mode'     => 'add_field',
            'group_id' => (int) $this->group_id
        ), $users_url . '#tabs-' . (int) $this->group_id );
 
        if ( ! empty( $_POST['saveField'] ) ) {
            $this->name        = $_POST['title'];
            $this->description = $_POST['description'];
            $this->is_required = $_POST['required'];
            $this->type        = $_POST['fieldtype'];
            $this->field_order = $_POST['field_order'];
 
            if ( ! empty( $_POST["sort_order_{$this->type}"] ) ) {
                $this->order_by = $_POST["sort_order_{$this->type}"];
            }
        }
 
        // Edit
    } else {
        $title  = __( 'Edit Field', 'buddyboss' );
        $button = __( 'Update', 'buddyboss' );
        $action = add_query_arg( array(
            'page'     => 'bp-profile-setup',
            'mode'     => 'edit_field',
            'group_id' => (int) $this->group_id,
            'field_id' => (int) $this->id
        ), $users_url . '#tabs-' . (int) $this->group_id );
    } ?>
 
    <div class="wrap">
        <?php
        $users_tab = count( bp_core_get_users_admin_tabs() );
        if ( $users_tab > 1 ) {
            ?>
            <h2 class="nav-tab-wrapper"><?php bp_core_admin_users_tabs( __( 'Profile Fields', 'buddyboss' ) ); ?></h2><?php
        }
        ?>
        <h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1>
 
        <?php
        if ( $this->id ) {
            $action_add = add_query_arg( array(
                'page'     => 'bp-profile-setup',
                'mode'     => 'add_field',
                'group_id' => (int) $this->group_id
            ), $users_url . '#tabs-' . (int) $this->group_id );
 
            ?>
 
            <a href="<?php echo esc_url( $action_add ); ?>"
               class="page-title-action"><?php esc_html_e( 'Add New Field', 'buddyboss' ); ?></a>
            <?php
        }
        ?>
 
 
        <?php if ( ( ! empty( $message ) ) || ( isset( $_GET['type'] ) && 'updated' === $_GET['type'] ) ) : ?>
 
            <?php
            if ( isset( $_GET['type'] ) && 'updated' === $_GET['type'] ) {
                $message      = __( 'The field was saved successfully.', 'buddyboss' );
                $message_type = 'updated';
            } ?>
            <div id="message" class="<?php echo $message_type; ?> fade">
                <p><?php echo esc_html( $message ); ?></p>
            </div>
 
        <?php endif; ?>
 
        <form id="bp-xprofile-add-field" action="<?php echo esc_url( $action ); ?>" method="post">
            <div id="poststuff">
                <div id="post-body"
                     class="metabox-holder columns-<?php echo ( 1 == get_current_screen()->get_columns() ) ? '1' : '2'; ?>">
                    <div id="post-body-content">
 
                        <?php
 
                        // Output the name & description fields.
                        $this->name_and_description(); ?>
 
                    </div><!-- #post-body-content -->
 
                    <div id="postbox-container-1" class="postbox-container">
 
                        <?php
 
                        // Output the sumbit metabox.
                        $this->submit_metabox( $button );
 
                        // Output the required metabox.
                        $this->required_metabox();
 
                        // Output the profile types metabox.
                        $this->member_type_metabox();
 
                        // Output the field visibility metaboxes.
                        $this->visibility_metabox();
 
                        /**
                         * Fires after XProfile Field sidebar metabox.
                         *
                         * @since BuddyPress 2.2.0
                         *
                         * @param BP_XProfile_Field $this Current XProfile field.
                         */
                        do_action( 'xprofile_field_after_sidebarbox', $this ); ?>
 
                    </div>
 
                    <div id="postbox-container-2" class="postbox-container">
 
                        <?php
 
                        /**
                         * Fires before XProfile Field content metabox.
                         *
                         * @since BuddyPress 2.3.0
                         *
                         * @param BP_XProfile_Field $this Current XProfile field.
                         */
                        do_action( 'xprofile_field_before_contentbox', $this );
 
                        // Output the field attributes metabox.
                        $this->type_metabox();
 
                        // Output hidden inputs for default field.
                        $this->default_field_hidden_inputs();
 
                        /**
                         * Fires after XProfile Field content metabox.
                         *
                         * @since BuddyPress 2.2.0
                         *
                         * @param BP_XProfile_Field $this Current XProfile field.
                         */
                        do_action( 'xprofile_field_after_contentbox', $this ); ?>
 
                    </div>
                </div><!-- #post-body -->
            </div><!-- #poststuff -->
        </form>
    </div>
 
    <?php
}

Changelog

Changelog
Version Description
BuddyPress 1.9.0 BuddyPress 1.9.0
BuddyBoss 1.0.0 Added the paramter $message_type Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.