| 1 |
<?php |
<?php |
| 2 |
// $Id: indexpage.module,v 1.8.2.18 2008/12/31 19:01:53 nancyw Exp $ |
// $Id: indexpage.module,v 1.8.2.19 2009/02/02 17:37:14 nancyw Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 547 |
$fields = array( |
$fields = array( |
| 548 |
'title' => array('data' => t('Title'), 'field' => 'title', 'sort' => 'asc'), |
'title' => array('data' => t('Title'), 'field' => 'title', 'sort' => 'asc'), |
| 549 |
'type' => array('data' => t('Type'), 'field' => 'type', 'class' => 'center'), |
'type' => array('data' => t('Type'), 'field' => 'type', 'class' => 'center'), |
| 550 |
'uid' => array('data' => t('Author')), |
'uid' => array('data' => t('Author'), 'field' => 'uid', 'class' => 'left'), |
| 551 |
'authors' => array('data' => t('Authors')), |
'authors' => array('data' => t('Authors'), 'field' => 'uid', 'class' => 'left'), |
| 552 |
'terms' => array('data' => t('Terms')), |
'terms' => array('data' => t('Terms'), /*'field' => 'taxonomy',*/ 'class' => 'left'), |
| 553 |
'created' => array('data' => t('Created'), 'field' => 'created', 'class' => 'center'), |
'created' => array('data' => t('Created'), 'field' => 'created', 'class' => 'center'), |
| 554 |
'changed' => array('data' => t('Updated'), 'field' => 'changed', 'class' => 'center'), |
'changed' => array('data' => t('Updated'), 'field' => 'changed', 'class' => 'center'), |
| 555 |
'status' => array('data' => t('Published'), 'field' => 'status', 'class' => 'center'), |
'status' => array('data' => t('Published'), 'field' => 'status', 'class' => 'center'), |