drupal pipes

Incorrect SQL code

  1. $query = 'SELECT p.* psd.* psh.* FROM {pipes} p INNER JOIN {pipes_step_data} psd ON psd.pid = p.pid LEFT JOIN {pipes_step_hierarchy} psh ON psh.sid = p.sid';

Example pipes implementation

  1. function hook_pipes_steps() {
  2.   $items = array();
  3.   // The keys of the array are the function names.
  4.   $items['node_add'] = array(

pipes_execute function

  1. /**
  2.  * Main pipe callback. Executes an array of steps.
  3.  * @param $steps
  4.  *   Either an array of steps, or the id of a pipe to load.
  5.  * @param $reorder
  6.  

Pipes

  1. pipes.info
  2. ==========
  3. ; $Id$
  4. name = Pipes
  5. description = Provides a framework for creation and execution of Drupal pipes.
  6. core = "6.x"
  7.  
  8. pipes.install
  9. =============
  10. <?php
  11. // $Id$
  12.  
  13. /**
  14.  

Pipes: an outline

  1. pipes.info
  2. ==========
  3. ; $Id$
  4. name = Pipes
  5. description = Allows for creation of pipes through the ui.
  6. core = "6.x"
  7.  
  8. pipes.install
  9. =============
  10. <?php
  11. // $Id$
  12.  
  13. /**
  14.  
Syndicate content