Submitted by Rob on Mon, 04/04/2011 - 16:40
At DrupalCon Chicago, I had the pleasure of being able to give a presentation on using Drupal in the Enterprise. The session was recorded. Unfortunately, the audio recording is not very good.
Submitted by Rob on Thu, 09/23/2010 - 09:20
Use this code for adding a menu item when saving a node. The menu item will automatically link to the node. Link_title is the display name of the menu item. Menu_name is the unique name of the menu you are adding to. The value can be found in the database under table menu_custom and column menu_name. Plid is the parent mlid that the menu item is assigned to. 0 for the root of the menu.
Submitted by Rob on Wed, 09/22/2010 - 09:28
When saving a node using node_save, the path is not saved when pathauto is enabled for the node type being saved. An exception can be added to the url_alias table using path_set_alias.
Submitted by Rob on Thu, 08/26/2010 - 11:17
Submitted by Rob on Wed, 08/25/2010 - 13:41
CCK allows you to add custom content (node) types to Drupal. However, there is no automated method for migrating these content types to multiple environments, such as local developer machines, integration, quality assurance, staging and production servers.
CCK offers a manually executed export/import process, located at /admin/content/types/export. This works well for migrating from one environment to another. However, this process is time consuming and difficult to track when dealing with multiple target environments running different versions of your node types.