You are here

function hook_datalayer_meta in dataLayer 7

Same name and namespace in other branches
  1. 8 datalayer.api.php \hook_datalayer_meta()

Provide candidate entity properties for output to the screen.

Related topics

1 function implements hook_datalayer_meta()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

datalayer_datalayer_meta in ./datalayer.module
Implements hook_datalayer_meta().

File

./datalayer.api.php, line 22
Documentation for the Data Layer module.

Code

function hook_datalayer_meta() {

  // EXAMPLE:
  // Add your own entity property to output.
  return array(
    'some_property',
  );
}