| 1 |
<?php |
<?php |
| 2 |
// $Id: dynamicload.module,v 1.47 2008/02/06 15:23:22 nedjo Exp $ |
// $Id: dynamicload.module,v 1.17.2.9 2008/03/29 13:37:28 nedjo Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 94 |
*/ |
*/ |
| 95 |
function dynamicload_admin_settings() { |
function dynamicload_admin_settings() { |
| 96 |
$form = array(); |
$form = array(); |
| 97 |
|
$form['jstools_history_remote'] = array( |
| 98 |
|
'#type' => 'radios', |
| 99 |
|
'#title' => t('History plugin'), |
| 100 |
|
'#description' => t('Load the history_remote plugin, which ties dynamic loading to browser history. Dynamicload will be missing some functionality if this is disabled. However, the plugin can cause errors in combination with certain other Javascript functionality. Disable to avoid such errors. Note that disabling this setting will affect other modules if you enable them: Active Search and Tabs.'), |
| 101 |
|
'#default_value' => variable_get('jstools_history_remote', 0), |
| 102 |
|
'#options' => array(t('disabled'), t('enabled')), |
| 103 |
|
); |
| 104 |
$form['dynamicload_all'] = array( |
$form['dynamicload_all'] = array( |
| 105 |
'#type' => 'checkbox', |
'#type' => 'checkbox', |
| 106 |
'#title' => t('Process all links for dynamic loading'), |
'#title' => t('Process all links for dynamic loading'), |