Skip to content

Instantly share code, notes, and snippets.

@bdecarne
Created April 7, 2013 08:19
Show Gist options
  • Save bdecarne/5329551 to your computer and use it in GitHub Desktop.
Save bdecarne/5329551 to your computer and use it in GitHub Desktop.
Drupal : Retrieve Profile2 Edit Form Programmatically
<?php
module_load_include('inc', 'profile2_page', 'profile2_page');
$profile2 = profile2_by_uid_load($user->uid, 'profile_id'); // profile_id = machine name
$entity_form = entity_ui_get_form('profile2', $profile2, 'edit');
return $entity_form;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment