| 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 |
| 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(); |