You are here

function workspace_configure in Workspace 6

Same name and namespace in other branches
  1. 5 workspace.module \workspace_configure()
  2. 7 workspace.module \workspace_configure()

Menu callback. The configuration page.

1 string reference to 'workspace_configure'
workspace_menu in ./workspace.module
Implementation of hook_menu().

File

./workspace.module, line 142
Presents a user-centric view of content.

Code

function workspace_configure($account) {
  drupal_set_title(t('Workspace: @name', array(
    '@name' => $account->name,
  )));
  $output = drupal_get_form('workspace_configure_form', $account);
  return $output;
}