You are here

function opigno_certificate_app_token_info in Opigno Certificate App 7

File

./opigno_certificate_app.module, line 114

Code

function opigno_certificate_app_token_info() {
  $node['certificate_granted_node'] = array(
    'name' => t("Certificate date"),
    'description' => t("The day the certificate was granted"),
    'value' => "coisa",
  );
  $node['list_of_courses'] = array(
    'name' => t("The list of courses"),
    'description' => t("The list of courses"),
  );
  return array(
    'tokens' => array(
      'node' => $node,
    ),
  );
}