function context_admin_term_childless_access_summary in Contextual Administration 7
Same name and namespace in other branches
- 6 plugins/access/term_childless.inc \context_admin_term_childless_access_summary()
Provide a summary description based upon the checked node_types.
1 string reference to 'context_admin_term_childless_access_summary'
- term_childless.inc in plugins/
access/ term_childless.inc - Provides access handler based upon the lack of child terms for the term we're on.
File
- plugins/
access/ term_childless.inc, line 61 - Provides access handler based upon the lack of child terms for the term we're on.
Code
function context_admin_term_childless_access_summary($conf, $context) {
return t('@identifier is a term with no children"', array(
'@identifier' => $context->identifier,
));
}