You are here

function _overlay_paths_ui_default in Overlay Paths 7

The default paths that this module should enable.

2 calls to _overlay_paths_ui_default()
overlay_paths_admin_form in overlay_paths_ui/overlay_paths_ui.admin.inc
Main administration form for Overlay Paths ui module.
overlay_paths_ui_overlay_paths in overlay_paths_ui/overlay_paths_ui.module
Implements hook_overlay_paths().

File

overlay_paths_ui/overlay_paths_ui.module, line 29
The overlay paths ui module.

Code

function _overlay_paths_ui_default() {
  return array(
    'node/add' => array(
      'width' => '600px',
    ),
    'user/register' => TRUE,
    'user/register/*' => TRUE,
    'user/register/step/2' => FALSE,
  );
}