body = '
' . $node->body . '
';
}
/**
* Implementation of hook_settings().
*/
function columns_settings() {
$form['columns_node'] = array(
'#type' => 'checkbox',
'#title' => t('Columnify all content'),
'#description' => t('Render all "node" content in two columns. Not recommended for anything except testing, as some pages will contain complex content that likley will not display well.'),
'#default_value' => variable_get('columns_node', 0)
);
return $form;
}