function tac_lite_admin_settings_scheme in Taxonomy Access Control Lite 7
Same name and namespace in other branches
- 5 tac_lite.module \tac_lite_admin_settings_scheme()
- 6 tac_lite.module \tac_lite_admin_settings_scheme()
Menu callback to create a form for each scheme.
Parameters
$i: The index of the scheme that we will be creating a form for. Passed in as a page argument from the menu.
1 string reference to 'tac_lite_admin_settings_scheme'
- tac_lite_menu in ./
tac_lite.module - Implementation of hook_menu().
File
- ./
tac_lite.module, line 186 - Control access to site content based on taxonomy, roles and users.
Code
function tac_lite_admin_settings_scheme($i) {
return drupal_get_form('tac_lite_admin_scheme_form', $i);
}