You are here

function context_form_user_profile_form_alter in Context 7.3

Implementation of hook_form_alter() for user_profile_form.

File

./context.core.inc, line 214

Code

function context_form_user_profile_form_alter(&$form, $form_state) {
  if ($plugin = context_get_plugin('condition', 'user_page')) {
    $plugin
      ->execute($form['#user'], 'form');
  }
}