Enable the textareas by enabling the checkbox above each. Expand the variables section to display. Then click on content attributes to insert the appropriate PHP print
statements at your cursor position in the textarea.
It is also possible to create disk-based templates.') . (module_exists('help') ? t('Find more information about that here', array('!link' => url('admin/help/contemplate', array('fragment' => 'disk-based')))) : t('For help on this enable the \'help\' module, and you will find a link here.')) . t('
Please note that by creating a template for this content type, you are taking full control of its output and you will need to manually add all of the fields that you would like to see in the output. Click reset to remove template control for this content type.
') . (module_exists('help') ? theme('more_help_link', url('admin/help/contemplate')) : ''); case 'admin/help#contemplate': return t( 'The Content Templates (a.k.a. contemplate) module allows modification of the teaser and body fields using administrator defined templates. These templates use PHP code and all of the node object variables are available for use in the template. An example node object is displayed and it is as simple as clicking on its properties to add them to the current template.
' . 'This module was written to solve a need with the Content Construction Kit (CCK), where it had a tendency toward outputting content in a not-very-pretty way. And as such, it dovetails nicely with CCK, adding a "template" tab to CCK content-type editing pages and pre-populating the templates with CCK\'s default layout. This makes it easy to rearrange fields, output different fields for teaser and body, remove the field title headers, output fields wrapped for use with tabs.module (part of JSTools), or anything you need.
' . 'But Content Templates can actually be used on any content type and allows modification of the teaser and body properties before they go out in an RSS feed or are handed off to the theme.
' . 'Enter PHP code similar to PHPTemplate. The main difference is that you only have access to the $node object. However, PHPTemplate templates only affect output to the page. Contemplate affects display in all site themes as well as RSS feeds and search results.
' . 'It is also possible to create disk-based template files. To do this, copy the contents of a contemplate textarea and paste it into a file called "node-nodetype-field.tpl.php" where nodetype is the content type and field is either "body", "teaser", or "rss". It is also possible to create a template called "node-nodetype.tpl.php" which will affect all cases, and "node.tpl.php" which will affect all node types.
' . 'Place these files into a directory called "contemplates" inside of either your "sites/all" directory or "sites/yoursite" depending on your setup. It is also possible to have multiple "contemplate" directories with "sites/all/contemplates" being the fallback for templates the contemplate does not find in the more specific site directory.
' . 'When adding or removing template files, you will need to visit the Content Templates admin page to refresh the template list cache. You do not need to do this again when making changes to the content of the templates.
', array('!link' => url('admin/content/types/templates'))); } } /** * Menu callback; loads a flexifilter object */ function contemplate_node_type_load($index, $map_array) { $types = node_type_get_types(); $type = $map_array[$index]; if (!$types[$type]) { // if the argument isn't a valid node type, return FALSE return FALSE; } else { return $type; } } /** * Implements hook_menu(). */ function contemplate_menu() { $items = array(); $items['admin/structure/types/templates'] = array( 'title' => 'Content Templates', 'description' => 'Create templates to customize output of teaser and body content.', //'page callback' => 'contemplate_edit_type', 'page callback' => 'contemplate_admin', 'access arguments' => array('administer templates'), 'type' => MENU_LOCAL_TASK, 'weight' => 7, ); $items['admin/content/templates'] = array( 'title' => 'Content Templates', 'description' => 'Create templates to customize output of teaser and body content.', 'page callback' => 'drupal_goto', 'page arguments' => array('admin/content/types/templates'), 'access arguments' => array('administer templates'), ); $items['admin/structure/types/manage/%node_type/template'] = array( 'title' => 'Template', 'page callback' => 'contemplate_edit_type', 'page arguments' => array(4), 'access arguments' => array('administer templates'), 'type' => MENU_LOCAL_TASK, 'weight' => 10, ); $items['admin/config/config/contemplate'] = array( 'title' => 'Content Template Settings', 'page callback' => 'drupal_get_form', 'page arguments' => array('contemplate_system_settings'), 'access arguments' => array('administer templates'), ); return $items; } /** * build the system settings form */ function contemplate_system_settings() { $form = array(); $form['contemplate_remove_node_content'] = array( '#type' => 'checkbox', '#title' => 'Remove $node->content from variable list.', '#description' => 'When this is enabled you will not see all available variables while creating/editing content templates. When this is disabled you may have Fatal Errors due to going over PHP memory limit. Even though the contents of $node->content is not displayed in the variable list, they are still avaible to be used in the Content Template, they just overflow PHPs memory limit when used with many CCK Fields.', ); if (variable_get('contemplate_remove_node_content', FALSE)) { $form['contemplate_remove_node_content']['#attributes'] = array( 'checked' => 'true', ); } $form['contemplate_max_recursion_depth'] = array( '#type' => 'textfield', '#title' => 'Max recursion depth', '#description' => 'How far into the node object should contemplate look? Having this set too high could cause PHP memory errors. If the above checkbox "Remove $node->content from variable list" is checked this won\'t have much of an affect.', '#default_value' => variable_get('contemplate_max_recursion_depth', 10), '#size' => 5, ); $form['contemplate_before_search_index'] = array( '#type' => 'checkbox', '#title' => 'Process template before indexing for search', '#description' => 'Do you want to process the template before the nodes are indexed for search?', ); if (variable_get('contemplate_before_search_index', FALSE)) { $form['contemplate_before_search_index']['#attributes'] = array( 'checked' => 'true', ); } return system_settings_form($form); } /** * Implements hook_perm(). */ function contemplate_permissions() { return array( 'administer templates' => array( 'title' => t('Administer Content Templates'), 'description' => t('Create, delete, make changes to content templates'), ), ); } /** * Implements hook_node_view(). */ function contemplate_node_view(&$node, $build_mode) { switch ($build_mode) { case 'rss': if ($template = contemplate_get_template($node->type)) { if (CONTEMPLATE_RSS_ENABLED & $template['flags'] && trim($template['rss'])) { // only if there's content in teaser field $xml_elements = array(); $rss = contemplate_eval($template['rss'], $node, $xml_elements); // set both teaser and body because we don't know how they've set Drupal $node->teaser = $rss; $node->body = $rss; if (trim($template['enclosure'])) { if ($file = contemplate_eval_enclosure($template['enclosure'], $node, $xml_elements)) { $xml_elements[] = array( 'key' => 'enclosure', 'attributes' => array( 'url' => file_create_url($file->filepath), 'length' => $file->filesize, 'type' => $file->filemime ) ); } } $node->rss_elements = $xml_elements; } } break; } } /** * Implements hook_node_update_index(). */ function contemplatehook_node_update_index(&$node) { if (variable_get('contemplate_before_search_index', FALSE)) { contemplate_nodeapi($node, 'alter'); return $node->body; } } /** * Admin page... list out the node types * * @return html Content Template Admin table */ function contemplate_admin() { $destination = drupal_get_destination(); contemplate_refresh_files(); $types = node_type_get_types(); $templates = contemplate_get_templates(); $enabled = t('Enabled: Textfield'); $disabled = t('Disabled'); $file = t('Enabled: Disk'); foreach ($types as $type) { $type_url_str = str_replace('_', '-', $type->type); $rows[] = array( $type->name, isset($templates[$type->type]['teaser-enabled']) ? ($templates[$type->type]['teaser-enabled'] ? ($templates[$type->type]['teaser-file'] ? $file : $enabled) : $disabled) : '', isset($templates[$type->type]['body-enabled']) ? ($templates[$type->type]['body-enabled'] ? ($templates[$type->type]['body-file'] ? $file : $enabled) : $disabled) : '', isset($templates[$type->type]['rss-enabled']) ? ($templates[$type->type]['rss-enabled'] ? ($templates[$type->type]['rss-file'] ? $file : $enabled) : $disabled) : '', l(isset($templates[$type->type]) ? t('edit template') : t('create template'), 'admin/structure/types/manage/' . $type_url_str . '/template'), (isset($templates[$type->type]) ? l(t('delete template'), 'admin/structure/types/manage/' . $type_url_str . '/template/delete', array('query' => $destination)) : ''), ); } $header = array( t('content type'), t('Teaser'), t('Body'), t('RSS'), '', '', ); return theme('table', array('header' => $header, 'rows' => $rows)); } /** * Menu Callback * Confirm the deletion of the custom Content Template * * @param string $type */ function contemplate_delete_type_form(&$form_state, $type = NULL) { $form['type'] = array('#type' => 'value', '#value' => $type->type); return confirm_form($form, t('Are you sure you want to delete the template for %type?', array('%type' => $type->name)), isset($_GET['destination']) ? $_GET['destination'] : 'admin/content/types/templates', t('This action cannot be undone.'), t('Delete'), t('Cancel')); } function contemplate_delete_type_form_submit($form, &$form_state) { return contemplate_delete($form_state['values']['type']); } /** * Menu callback * Edit the template for a specific node-type * * @param string $type */ function contemplate_edit_type_form(&$form, &$form_state, $type = NULL) { $example = contemplate_examples($type); $template = contemplate_get_template($type); $intro = t('An example node has been loaded and its properties appear below. Click on the the property names to add them to your template.
'); $example_help = t('Click property to add to your template. Fields marked with ** are insecure and need to be wrapped with either check_plain() or check_markup()'); if ($default = contemplate_cck_get_fields($type)) { $default_teaser = $default_body = $default; } else { $default_teaser = "\n"; $default_body = "\n"; } $form['teaser'] = array( '#type' => 'fieldset', '#title' => t('Teaser'), '#collapsible' => TRUE, '#collapsed' => CONTEMPLATE_TEASER_ENABLED & $template['flags'] ? FALSE : TRUE, ); if (empty($template['teaser-file'])) { $form['teaser']['teaser-enable'] = array( '#type' => 'checkbox', '#title' => '' . t('Affect teaser output') . '', '#default_value' => CONTEMPLATE_TEASER_ENABLED & $template['flags'] ? TRUE : FALSE, '#attributes' => array('toggletarget' => '#edit-teaserfield'), ); $form['teaser']['teaserfield'] = array( '#type' => 'textarea', '#title' => t('Teaser Template'), '#default_value' => !empty($template['teaser']) ? $template['teaser'] : $default_teaser, '#rows' => 15, '#description' => t('Leave this field blank to leave teaser unaffected.'), '#prefix' => 'This template is being read from
%file
Please make changes to this file or remove it to continue editing here.
This template is being read from
%file
Please make changes to this file or remove it to continue editing here.
This template is being read from
%file
Please make changes to this file or remove it to continue editing here.
'. print_r($form_state, TRUE) .''); if ($op == t('Delete')) { contemplate_delete($form_state['values']['type']); drupal_set_message(t('%type template has been reset.', array('%type' => drupal_ucfirst($form_state['values']['type'])))); } else { contemplate_save($form_state); drupal_set_message(t('%type template saved.', array('%type' => drupal_ucfirst($form_state['values']['type'])))); } } function contemplate_save($edit) { $types = node_type_get_types(); $flags = 0; $type = $types[$edit['values']['type']]; $teaserfield = !empty($edit['values']['teaserfield']) ? $edit['values']['teaserfield'] : ''; $bodyfield = !empty($edit['values']['bodyfield']) ? $edit['values']['bodyfield'] : ''; $rssfield = !empty($edit['values']['rssfield']) ? $edit['values']['rssfield'] : ''; $enclosure = !empty($edit['values']['enclosure']) ? $edit['values']['enclosure'] : ''; $flags |= !empty($edit['values']['teaser-enable']) ? CONTEMPLATE_TEASER_ENABLED : 0; $flags |= !empty($edit['values']['body-enable']) ? CONTEMPLATE_BODY_ENABLED : 0; $flags |= !empty($edit['values']['rss-enable']) ? CONTEMPLATE_RSS_ENABLED : 0; contemplate_delete($type); $id = db_insert('contemplate') ->fields(array( 'type' => $type->type, 'teaser' => $teaserfield, 'body' => $bodyfield, 'rss' => $rssfield, 'enclosure' => $enclosure, 'flags' => $flags )) ->execute(); return $id; } function contemplate_delete($type) { return db_delete('contemplate') ->condition('type', $type->type) ->execute(); } /** * List the available template files * * @return * array of template file information */ function contemplate_available_files() { static $data; if (!isset($data)) { $conf = conf_path(); $result = db_query("SELECT data FROM {contemplate_files} WHERE site = '%s'", array($conf)); foreach ($result as $record) { $data = unserialize($record->data); } } return $data; } /** * Refresh the listing of template files for the current site * * This refreshes the file listing whenever a ConTemplate admin screen is called */ function contemplate_refresh_files() { $data = drupal_system_listing('/\.tpl\.php$/', 'contemplates', 'name', 0); $conf = conf_path(); $sql_args = array($conf, serialize($data)); db_query("DELETE FROM {contemplate_files} WHERE site = '%s'", array($conf)); if (!empty($data)) { db_query("INSERT INTO {contemplate_files} (site, data) VALUES ('%s', '%s')", $sql_args); } } /** * Given a node type and field type, return the content of the most specific * file * * @param string $node_type * type of node * * @param string $field * field type we're looking for * possible values are 'body', 'teaser', and 'rss' * * @return * either path to the most specific file (string) * or FALSE if no file is found * */ function contemplate_get_file($type, $field) { $files = contemplate_available_files(); if (isset($files['node-' . $type->type . '-' . $field . '.tpl'])) { $file = $files['node-' . $type->type . '-' . $field . '.tpl']; } elseif (isset($files['node-' . $type->type . '.tpl'])) { $file = $files['node-' . $type->type . '.tpl']; } elseif (isset($files['node.tpl'])) { $file = $files['node.tpl']; } if (isset($file) && $file) { $file->contents = file_get_contents($file->filename); $return = $file; } else { $return = FALSE; } return $return; } /** * Load an example node and display its parts * - used only on template edit page * * @param $type * node type * @return array */ function contemplate_node_views($type) { // get the nid of the latest node of this type $result = db_query("SELECT nid FROM {node} WHERE type = :type ORDER BY created DESC", array(':type' => $type->type)); foreach ($result as $record) { $nid = $record->nid; } if (isset($nid) && $nid) { //$bodynode = contemplate_template_node_view(node_load($nid), 'full'); //$teasernode = contemplate_template_node_view(node_load($nid), 'teaser'); $teasernode = $bodynode = node_load($nid); node_build_content($bodynode , 'full'); node_build_content($teasernode, 'teaser'); return array('body' => $bodynode, 'teaser' => $teasernode); } else { return FALSE; } } /** * Load an example node and display its parts * - used only on template edit page * * @param $type * node type * @return * an array containing the 'rss', 'body' and 'teaser' * versions of the node */ function contemplate_examples($type) { $path = drupal_get_path('module', 'contemplate'); drupal_add_js($path . '/contemplate.js'); drupal_add_js($path . '/divresizer.js'); drupal_add_css($path . '/contemplate.css'); $recursion_limit_hit = 0; if ($views = contemplate_node_views($type)) { $boutput = contemplate_array_variables((array) $views['body'], 'bodyfield', FALSE, FALSE, 0, $recursion_limit_hit); $toutput = contemplate_array_variables((array) $views['teaser'], 'teaserfield', FALSE, FALSE, 0, $recursion_limit_hit); $routput = contemplate_array_variables((array) $views['teaser'], 'rss', FALSE, FALSE, 0, $recursion_limit_hit); } else { $error = t('No %type content items exist to use as an example. Please create a %type item and then come back here to see an output of its parts.', array('%type' => $type->type)); $toutput = $boutput = $routput = $error; } if ($recursion_limit_hit) { $message = t('While traversing node variables your recursion limit of %limit was hit %recursion_limit_hit times. For more information about this error goto ' . l('http://drupal.org/node/230885', 'http://drupal.org/node/230885') . '. This situation will not effect the operation of Content Template, but it may not show you all available variables on this page. This message will only appear on this page.', array('%limit' => variable_get('contemplate_max_recursion_depth', 10), '%recursion_limit_hit' => $recursion_limit_hit)); if (variable_get('error_level', 1)) { //drupal_set_message($message, 'warning'); } watchdog('contemplate', $message, array(), WATCHDOG_ALERT); } return array('body' => $boutput, 'teaser' => $toutput, 'rss' => $routput); } /** * Recursive (and therefore magical) function goes through node object returns * html representation of the node strings are clickable and insert into * teaser/body fields * * @param $array * array to recurse through * @param $target * target field for javascript insert * @param $parents * used by recursion * @param $object * used by recursion * @return string - html dictionary list of $node elements */ function contemplate_array_variables($array, $target, $parents = FALSE, $object = FALSE, $depth = 0, &$recursion_limit_hit) { global $_contemplate_fids; if ($depth >= variable_get('contemplate_max_recursion_depth', 10)) { $recursion_limit_hit++; return ''; } /** * CCK fields are causing problems, they are added into the original array as $array['field_*']=>array(); * and they are also added into $array['content']['field_*']=>array() this array has not only * the information for the CCK field, but also information for the whole node , even itself, * $array['content']['field_*']['#node'] recursively, this leads to memory issues while traversing * the array recursively * Drupal 6 */ if (isset($array['content']) && ($parents == FALSE) && ($object == FALSE)) { // by default we will remove the content array, the user can choose to have this not done if (variable_get('contemplate_remove_node_content', FALSE)) { unset($array['content']); } } if (is_object($array)) { $array = (array)$array; } if (is_array($array)) { $output = "