You are here

function oa_core_token_info in Open Atrium Core 7.2

Implements hook_token_info().

File

./oa_core.module, line 1407

Code

function oa_core_token_info() {
  $node['group-or-section-alias'] = array(
    'name' => t("URL"),
    'description' => t("The alias to the section (or group if no section of given content.)"),
  );
  return array(
    'tokens' => array(
      'node' => $node,
    ),
  );
}