You are here

function dstest_render_test_field in Display Suite 7.2

Same name and namespace in other branches
  1. 7 tests/ds_test.module \dstest_render_test_field()

Render the test code field.

1 string reference to 'dstest_render_test_field'
ds_test_ds_fields_info in tests/ds_test.module
Implements hook_ds_fields_info().

File

tests/ds_test.module, line 209
Display Suite test module.

Code

function dstest_render_test_field($field) {
  return 'Test code field on node ' . $field['entity']->nid;
}