Skip to content

Instantly share code, notes, and snippets.

@skwashd
Created July 17, 2012 12:54
Show Gist options
  • Save skwashd/3129243 to your computer and use it in GitHub Desktop.
Save skwashd/3129243 to your computer and use it in GitHub Desktop.
hook_entity_property_info snippet
<?php
// ...
$properties['url'] = array(
'label' => t('URL'),
'description' => t("The URL of the job's view page."),
'getter callback' => 'mymod_entity_metadata_get_properties',
'type' => 'uri',
'computed' => TRUE,
);
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment