function _dot_get in Delete Orphaned Terms 7.2
Same name and namespace in other branches
- 6.2 delete_orphaned_terms.module \_dot_get()
Wrapper for variable_get().
6 calls to _dot_get()
- delete_orphaned_terms_admin in ./
delete_orphaned_terms.admin.inc - The admin menu. (Tab 1)
- delete_orphaned_terms_admin_parameters in ./
delete_orphaned_terms.admin.inc - The admin menu. (Tab 2)
- delete_orphaned_terms_cron in ./
delete_orphaned_terms.module - Implements hook_cron().
- delete_orphaned_terms_form_manual in ./
delete_orphaned_terms.module - The user menu.
- _delete_orphaned_terms in ./
delete_orphaned_terms.module - Checks which elements of the form were used and prunes the taxonomy according to those settings. (internal function, not to be considered as API)
File
- ./
delete_orphaned_terms.module, line 97 - Delete Orphaned Terms - deletes orphaned terms from taxonomy.
Code
function _dot_get($var) {
return variable_get($var, __delete_orphaned_terms_defaults($var));
}