function workspace_configure in Workspace 5
Same name and namespace in other branches
- 6 workspace.module \workspace_configure()
- 7 workspace.module \workspace_configure()
1 string reference to 'workspace_configure'
- workspace_menu in ./
workspace.module - Implementation of hook_menu().
File
- ./
workspace.module, line 121 - Presents a user-centric view of content.
Code
function workspace_configure() {
$output = drupal_get_form('workspace_configure_form');
drupal_set_title(t('Workspace : %username', array(
'%username' => $user->name,
)));
return $output;
}