Exemple #1
0
/**
 * BuddyPress user settings content.
 */
function mexp_gdrive_bp_user_settings_content()
{
    ?>

	<div id="mexp-gdrive">
		<h3><?php 
    _e('Google Drive', 'gdrive');
    ?>
</h3>

		<?php 
    mexp_gdrive_user_settings_content();
    ?>
	</div>

<?php 
}
/**
 * Shows the GDrive markup on the "Users > My Profile" admin page.
 */
function mexp_gdrive_admin_user_profile_content()
{
    ?>

	<table class="form-table">
	<tbody>
		<tr>
			<th><?php 
    _e('Google Drive', 'gdrive');
    ?>
</th>
			<td>
				<?php 
    mexp_gdrive_user_settings_content();
    ?>
			</td>
		</tr>
	
	</tbody>
	</table>

<?php 
}