Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

BP_XProfile_Field::submit_metabox( string $button_text = '' )

Private method used to display the submit metabox.


Description Description


Parameters Parameters

$button_text

(Optional) Text to put on button.

Default value: ''


Top ↑

Source Source

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

1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
private function submit_metabox( $button_text = '' ) {
 
    // Setup the URL for deleting
    $users_url  = bp_get_admin_url( 'users.php' );
    $cancel_url = add_query_arg( array(
        'page' => 'bp-profile-setup'
    ), $users_url );
 
    /**
     * Fires before XProfile Field submit metabox.
     *
     * @since 2.1.0
     *
     * @param BP_XProfile_Field $this Current XProfile field.
     */
    do_action( 'xprofile_field_before_submitbox', $this ); ?>
 
    <div id="submitdiv" class="postbox">
        <h2><?php esc_html_e( 'Submit', 'buddypress' ); ?></h2>
        <div class="inside">
            <div id="submitcomment" class="submitbox">
                <div id="major-publishing-actions">
 
                    <?php
 
                    /**
                     * Fires at the beginning of the XProfile Field publishing actions section.
                     *
                     * @since 2.1.0
                     *
                     * @param BP_XProfile_Field $this Current XProfile field.
                     */
                    do_action( 'xprofile_field_submitbox_start', $this ); ?>
 
                    <input type="hidden" name="field_order" id="field_order" value="<?php echo esc_attr( $this->field_order ); ?>" />
 
                    <?php if ( ! empty( $button_text ) ) : ?>
 
                        <div id="publishing-action">
                            <input type="submit" name="saveField" value="<?php echo esc_attr( $button_text ); ?>" class="button-primary" />
                        </div>
 
                    <?php endif; ?>
 
                    <div id="delete-action">
                        <a href="<?php echo esc_url( $cancel_url ); ?>" class="deletion"><?php esc_html_e( 'Cancel', 'buddypress' ); ?></a>
                    </div>
 
                    <?php wp_nonce_field( 'xprofile_delete_option' ); ?>
 
                    <div class="clear"></div>
                </div>
            </div>
        </div>
    </div>
 
    <?php
 
    /**
     * Fires after XProfile Field submit metabox.
     *
     * @since 2.1.0
     *
     * @param BP_XProfile_Field $this Current XProfile field.
     */
    do_action( 'xprofile_field_after_submitbox', $this );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.