MinnPost/object-sync-for-salesforce

View on GitHub
templates/admin/user-profile-salesforce-change.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * The form to change what Salesforce object is mapped to a given WordPress user
 *
 * @package Object_Sync_Salesforce
 */

?>

<input type="hidden" name="salesforce_update_mapped_user" value="1" />
<h2><?php echo esc_html__( 'Salesforce', 'object-sync-for-salesforce' ); ?></h2>
<p><?php echo esc_html__( 'You can change the Salesforce object that this WordPress user maps to by changing the ID and updating this user.', 'object-sync-for-salesforce' ); ?></p>
<table class="form-table">
    <tr>
        <th><label for="salesforce_id"><?php echo esc_html__( 'Salesforce ID', 'object-sync-for-salesforce' ); ?></label></th>
        <td>
            <input type="text" name="salesforce_id" id="salesforce_id" value="<?php if ( isset( $mapping['id'] ) ) { echo esc_attr( $mapping['salesforce_id'] ); } ?>" class="regular-text" required /><br />
            <span class="description"><?php echo esc_html__( 'Enter a Salesforce object ID.', 'object-sync-for-salesforce' ); ?></span>
        </td>
    </tr>
</table>