| 1 |
<?php |
<?php |
| 2 |
// $Id: hidden.admin.inc,v 1.1 2008/12/10 23:03:47 ekes Exp $ |
// $Id: hidden.admin.inc,v 1.2 2008/12/18 15:29:07 ekes Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 121 |
); |
); |
| 122 |
} |
} |
| 123 |
} |
} |
| 124 |
|
$form['hidden_public_notes'] = array( |
| 125 |
|
'#title' => t('Allow public notes'), |
| 126 |
|
'#type' => 'checkbox', |
| 127 |
|
'#default_value' => variable_get('hidden_public_notes', TRUE), |
| 128 |
|
'#description' => t('If unchecked, the form for public notes about hidden content will be disabled, only predefined reasons are available.') |
| 129 |
|
); |
| 130 |
return system_settings_form($form); |
return system_settings_form($form); |
| 131 |
} |
} |
| 132 |
|
|