/ Published in: PHP
With thanks to joshk :)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Helper function to import a CCK content type definition from a text file. * * @param $cck_definition_file * The full path to the file containing the CCK definition. */ function _create_content_type($cck_definition_file) { include_once('./'. drupal_get_path('module', 'node') .'/content_types.inc'); include_once('./'. drupal_get_path('module', 'content') .'/content_admin.inc'); $values['type_name'] = '<create>'; drupal_execute("content_copy_import_form", $values); }
URL: http://groups.drupal.org/node/5272