| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: webform_handler_field_is_draft.inc,v 1.1.2.1 2010/03/03 02:51:31 quicksketch Exp $ 3 4 /** 5 * @file 6 * Views handler to display the draft status of a submission. 7 */ 8 9 /** 10 * Field handler to show if submission is draft or not. 11 * 12 * @ingroup views_field_handlers 13 */ 14 class webform_handler_field_is_draft extends views_handler_field { 15 function render($values) { 16 $is_draft = $values->{$this->field_alias}; 17 return $is_draft ? t('draft') : t('completed'); 18 } 19 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |