You are here

function hosting_platform_edit_form_on_site_page in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 platform/hosting_platform.module \hosting_platform_edit_form_on_site_page()

Page callback for node/%node/platform-edit

Wrapper for node_page_edit, for the "Edit Platform" tab.

1 string reference to 'hosting_platform_edit_form_on_site_page'
hosting_platform_menu in platform/hosting_platform.module
Implements hook_menu().

File

platform/hosting_platform.module, line 90
Platform node type definition.

Code

function hosting_platform_edit_form_on_site_page($site) {
  $platform = node_load($site->platform);
  return node_page_edit($platform);
}