function admin_settings_easy_social_ignore_paths in Easy Social 6
Generate the administer ignore paths settings form
1 string reference to 'admin_settings_easy_social_ignore_paths'
- easy_social_menu in ./
easy_social.module - Implements hook_menu().
File
- ./
easy_social.module, line 212 - This is the file description for Easy Social module.
Code
function admin_settings_easy_social_ignore_paths() {
$form = array();
$form['easysocial_ignore_paths'] = array(
'#type' => 'textarea',
'#title' => t('Ignore paths'),
'#description' => t('Every URL placed here, will not have any Social links.'),
'#default_value' => variable_get('easysocial_ignore_paths', ''),
);
$form = system_settings_form($form);
return $form;
}