function hosting_task_overlay_paths in Hosting 7.3
Same name and namespace in other branches
- 7.4 task/hosting_task.module \hosting_task_overlay_paths()
Implements hook_overlay_paths().
File
- task/
hosting_task.module, line 1864 - Web server node type is defined here.
Code
function hosting_task_overlay_paths() {
$paths = array(
'hosting/task/*' => array(
'width' => 600,
),
'hosting_confirm/*' => array(
'width' => 600,
),
);
return $paths;
}