| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * @file 5 * Views handler to display the draft status of a submission. 6 */ 7 8 /** 9 * Field handler to show if submission is draft or not. 10 * 11 * @ingroup views_field_handlers 12 */ 13 class webform_handler_field_is_draft extends views_handler_field { 14 function render($values) { 15 $is_draft = $values->{$this->field_alias}; 16 return $is_draft ? t('draft') : t('completed'); 17 } 18 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |