/[drupal]/contributions/modules/tapatio/comms_views.inc
ViewVC logotype

Diff of /contributions/modules/tapatio/comms_views.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1.4.5 by evoltech, Wed Sep 23 07:55:59 2009 UTC revision 1.1.4.6 by evoltech, Wed Sep 23 08:13:02 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: comms_views.inc,v 1.1.4.4 2009/08/25 04:44:38 evoltech Exp $  // $Id: comms_views.inc,v 1.1.4.5 2009/09/23 07:55:59 evoltech Exp $
3    
4  /*  /*
5   * @file   * @file
# Line 659  function comms_views_default_views() { Line 659  function comms_views_default_views() {
659    //we arn't going to filter by status = 1 for now, because the    //we arn't going to filter by status = 1 for now, because the
660    //workflow won't really entail unpublishing nodes.    //workflow won't really entail unpublishing nodes.
661    $filter = array(    $filter = array(
662        array(      array(
663        'tablename' => 'node',        'tablename' => 'node',
664        'field' => 'type',        'field' => 'type',
665        'operator' => '=',        'operator' => '=',
666        'options' => '',        'options' => '',
667        'value' => 'comms',        'value' => 'comms',
668        ),        ),
669        array(      array(
670        'tablename' => 'node',        'tablename' => 'node',
671        'field' => 'status',        'field' => 'status',
672        'operator' => '=',        'operator' => '=',
673        'options' => '',        'options' => '',
674        'value' => '1',        'value' => '1',
675        ),
676        array (
677          'tablename' => 'node',
678          'field' => 'distinct',
679          'operator' => '=',
680          'options' => '',
681          'value' => array (
682            0 => 'distinct',
683        ),        ),
684        )
685    );    );
686    
687    $access = array();    $access = array();

Legend:
Removed from v.1.1.4.5  
changed lines
  Added in v.1.1.4.6

  ViewVC Help
Powered by ViewVC 1.1.3