Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Ok, I'm new to CVS and can't seem to figure this out ...
How do you commit do HEAD, and have that commit go into a branch as well. For example, look at the latest version of the .htaccess file in Drupal core http://cvs.drupal.org/viewcvs/drupal/drupal/.htaccess?view=log&only_with... . If you click on any of the 5.0 tags, the revision number stays the same - 1.81. Looking at the log, this was done in a single commit.
The module I am working on will provide a new node type that will be rendered in a certain way.
Now, I have my hook_view function ready with returning a structured content array, but I also want to pass this content to a custom theme fuction. How should I implement this?
- Should topic_view call theme_topic and return rendered html content?
- Should I just implement a theme_?? function and rely on it being appropriately called when a node of type "topic" should get displayed (and what should "??" be)?