Created
September 4, 2013 22:35
-
-
Save sc0ttkclark/6443734 to your computer and use it in GitHub Desktop.
Example custom display
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$ui[ 'fields' ][ 'manage' ][ 'my_custom_field' ] = array( | |
'label' => 'My Custom Field', | |
'custom_display' => 'my_custom_field_pods_value' | |
); | |
function my_custom_field_pods_value( $row, $obj, $value, $field, $attributes ) { | |
$value = $row[ 'a_number_field' ] + $row[ 'another_number_field' ]; | |
return $value; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment