Skip to main content

Home/ Drupal for Developers/ Contents contributed and discussions participated by Scott Blackburn

Contents contributed and discussions participated by Scott Blackburn

Scott Blackburn

Dashboard | Code - 0 views

  •  
    Spaces module code dashboard
Scott Blackburn

Internet Archive: Details: Drupalcon 2008 Szeged: Spaces and Context modules - 0 views

  •  
    video of Spaces and Context modules presentation
Scott Blackburn

Welcome to Code | Code - 0 views

  •  
    developmentseed's code repository
Scott Blackburn

Quick Tip: SVN Filtering | GotDrupal.com | Drupal Tutorials - 0 views

  •  
    A fairly advanced screencast on SVN filtering. Matt Petrowsky has been doing such a great job putting together some of the best drupal related screencasts that are really helpful for my work environment and maybe yours too.
Scott Blackburn

Panels 3 / CTools TODO list: | groups.drupal.org - 0 views

  •  
    Merlinofchaos's TODO list: This is a rough TODO list generated from my personal notes regarding tasks that remain to be done for Panels 3 to complete the alpha stage. This does not include the obvious tasks of find/fix bugs/trim the issue queue.
Scott Blackburn

Limit Views-created block content by node author or current node | Geeks & God - 0 views

  •  
    Scenario One: Limit by author of current node Scenario Two: Limit source to CCK fields in the current node
Scott Blackburn

Making Subversion/SVN recognize CVS Id and Revision tags | 2bits.com, Inc. - Drupal Dev... - 0 views

  •  
    One annoying aspect though is that almost all Drupal files use CVS style tags, such as the $Id$ one. Subversion does not recognize these by default. However, there is a way to make Subversion recognize these tags. This post describes the steps needed to achieve this goal.
Scott Blackburn

Litenode | Development Seed - 0 views

  •  
    Litenode is a new module that uses Views to replace multiple node_loads() on a page. The concept is simple: Views already knows how to grab any of the fields in a single go that many modules load independently in their hook_nodeapi('load'). Why not have Views grab them all at once (as you would do in a table view, for example) and then have a style plugin map the Views fields to all the places where modules expect them to be on a loaded node?
Scott Blackburn

Drupal Performance and Scalability | Tag1 Consulting, Inc. - 0 views

  •  
    Obtaining Optimal Performance From Drupal And The LAMP Stack. This book is written by Jeremy Andrews and licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported License.
Scott Blackburn

GIDZipTest: Web Page Compression (Deflate / Gzip) Test - GIDNetwork - 0 views

  •  
    is your server using gzip compression? This tool will tell you and show you the savings by compression.
Scott Blackburn

SmartOptimizer | Farhadi.ir - 0 views

  •  
    So far I have this running on a development site, and have to say that it does a great job and was simple to install and use.
Scott Blackburn

Views Help: How to get a field to "Link this field to its user" besides username | drup... - 0 views

  • Though one would think the $field object is what we wanted-- the actual object we needed is $row (even though we're only looking at one field in the row). Put the following into the field tpl file to see what the necessary info is: <?phpprint '<pre>';print_r($row);print '</pre>';?> Then, to actually make the link, put the following in your field tpl file: <?php$account = user_load($row->uid);print l($row->profile_values_profile_fullname_value, 'users/' . $account->name);?> Change 'profile_values_profile_fullname_value' to the proper field alias (based on the $row output). Also, be sure to change 'users' to whatever the path is for your user accounts. I also had another thought-- given your use case, you may want to consider the http://drupal.org/project/realname module as well. It will replace usernames with whatever field(s) you designate all over the site. EDIT: I had another thought. I'm not sure of the performance implications of doing a user_load in the template file. Another option is to add the 'User: name' field to the view but exclude it from display. Then you could avoid the user_load and change the code in the tpl file to: <?phpprint l($row->profile_values_profile_fullname_value, 'users/' . $row->users_name);?>
  •  
    theming the field tpl files for Views2
Scott Blackburn

Getting node path for theming list view | drupal.org - 0 views

  •  
    I recently need to theme a node path in a list view. Comment #1 did the trick: $node = node_load($nid); $path = drupal_get_path_alias('node/'.$node->nid);
Scott Blackburn

Form Builder | drupal.org - 0 views

  •  
    Wow! This Lullabot contribution has serious potential for developers.
« First ‹ Previous 41 - 60 of 328 Next › Last »
Showing 20 items per page