page.admin.inc in Content Type Clone 7
Content Type Clone utility functions.
File
includes/page.admin.incView source
<?php
/**
* @file
* Content Type Clone utility functions.
*/
/**
* Redirect to the content type clone form.
*
* This function redirects the user to the content type clone form.
*
* @param string $node_type
* The node type needing cloning.
*/
function content_type_clone_menu_redirect($node_type) {
// Redirect the user.
drupal_goto('admin/' . $node_type->type . '/clone/create');
}
Functions
Name![]() |
Description |
---|---|
content_type_clone_menu_redirect | Redirect to the content type clone form. |