module

largeview.module

  1. <?php
  2. // $Id$
  3.  
  4. /**
  5.  * Stole this code from image cache, goal here is to add one more
  6.  * formatter that links to node/nid/large instead of node/nid
  7.  

ie8.js mini module

  1. <?php
  2.  
  3. /**
  4. * Author: Nicolas Borda - http://nic.ipwa.net
  5. * Display help and module information
  6. * This module adds to your site the ie8 JavaScript library from Google Code
  7. *
  8. */

Full flashvideo.module code

  1. <?php
  2. // $Id: flashvideo.module,v 1.20.2.32 2008/02/20 04:44:26 travist Exp $
  3.  
  4. /**
  5.  * @file
  6.  * Enables the ability to attach a Flash video to a node.
  7.  */

Function where I think the code should be integrated

  1. /**
  2.  *  Search and Replace routine.  Scans the body of a node and replaces every tag and its parameters with an object.
  3.  */
  4.  
  5. function _flashvideo_replace_tags(&$node, $tag) {

Fix for overriding favorite nodes links

  1. function phptemplate_links($links, $attributes = array('class' => 'links')) {
  2.   $output = '';
  3.  
  4.   if (count($links) > 0) {
  5.     $output = '<ul'. drupal_attributes($attributes) .'>';

Fix for overriding favorite nodes links

  1. function phptemplate_links($links, $attributes = array('class' => 'links')) {
  2.   $output = '';
  3.  
  4.   if (count($links) > 0) {
  5.     $output = '<ul'. drupal_attributes($attributes) .'>';

Fix for overriding favorite nodes links

  1. function phptemplate_links($links, $attributes = array('class' => 'links')) {
  2.   $output = '';
  3.  
  4.   if (count($links) > 0) {
  5.     $output = '<ul'. drupal_attributes($attributes) .'>';

Fix for overriding favorite nodes links

  1. /**
  2.  * Implementation of hook_links().
  3.  */
  4. function favorite_nodes_link($type, $node = null, $teaser = false) {
  5.   global $user;
  6.   $links = array();
  7.   if ($type == 'node' && !$teaser) {

overriding favorite nodes links

  1. /**
  2.  * Implementation of hook_links().
  3.  */
  4. function favorite_nodes_link($type, $node = null, $teaser = false) {
  5.   global $user;
  6.   $links = array();
  7.   if ($type == 'node' && !$teaser) {

First Commit of a module, posted here for RMuilwijk in IRC

  1. Macintosh:Drupal brianpuccio$ cvs login
  2. Logging in to :pserver:brianpuccio@cvs.drupal.org:2401/cvs/drupal-contrib
  3. CVS password:
Syndicate content