function _aet_default_options in Advanced Entity Tokens 7
3 calls to _aet_default_options()
- aet_tokens in ./
aet.tokens.inc - This is the main implementation of hook_tokens.
- _aet_entity_tokens in ./
aet.tokens.inc - INTERNAL implementation of hook_tokens specified for entities.
- _aet_entity_view_tokens in ./
aet.tokens.inc - This is the main implementation of hook_tokens.
File
- ./
aet.tokens.inc, line 339 - Token callbacks for the AET module.
Code
function _aet_default_options() {
global $language;
return array(
'callback' => NULL,
'sanitize' => FALSE,
'language' => $language,
'clear' => FALSE,
);
}