Okay - i've created a new content type called wrapper using a wrapper.module.
<?php
// $Id: wrapper.module,v 1.186 2006/03/27 18:02:48 killes Exp $
/**
* @file
* Enables users to submit wrappers, articles or similar content.
*/
/**
* Implementation of hook_help().
*/
function wrapper_help($section) {
switch ($section) {
case 'admin/help#wrapper':
$output = '
'. t('The wrapper module is used to create a content post type called wrappers. Wrappers are articles in their simplest form: they have a title, a teaser and a body. Stories are typically used to post news articles or as a group blog. ') .'
';
$output .= '
'. t('The wrapper administration interface allows for complex configuration. It provides a submission form, workflow, default view permission, default edit permission, permissions for permission, and attachments. Trackbacks can also be enabled.') .'
';
$output .= t('
You can
', array('%node-add-wrapper' => url('node/add/story'), '%admin-settings-content-types-story' => url('admin/settings/content-types/story')));
$output .= '
'. t('For more information please read the configuration and customization handbook Wrapper page.', array('%story' => 'http://drupal.org/handbook/modules/story/')) .'