Home | About Me | Photos | Writing | Research | Scratchpad | Projects

music idea

people to help

rising sun

Fraser (really cool and innovative guy) who is still in Reading and is on the Programming Group at the Rising Sun Arts Centre. He has all the contacts to the people who play there and many ideas of his own. Fraser: & . The second email address goes out to to all the contacts that the rising sun has.


drupal modifications

supress 'submitted by' on pages

file: themes/xtemplate/xtemplate.theme
function: xtemplate_node

  $xtemplate->template->assign(array(
-        "submitted" => t("Submitted by %a on %b.",
-                      array("%a" => format_name($node),
-                            "%b" => format_date($node->created))),
        "link"      => url("node/view/$node->nid"),
        "title"     => $node->title,
        "author"    => format_name($node),
        "date"      => format_date($node->created),
        "static"    => ($main && $node->static) ? 'static' : '',
        "content"   => ($main && $node->teaser) ? $node->teaser : $node->body));

+  if ($node->type != 'page') {  
+    $xtemplate->template->assign(array(
+        "submitted" => t("Submitted by %a on %b.",
+        array("%a" => format_name($node),
+        "%b" => format_date($node->created)))));
+  }