| 433 |
'#default_value' => variable_get('sna_limit', 0), |
'#default_value' => variable_get('sna_limit', 0), |
| 434 |
'#description' => t('Zero means no limit. You have to raise this number if the graph |
'#description' => t('Zero means no limit. You have to raise this number if the graph |
| 435 |
function become too slow.')); |
function become too slow.')); |
| 436 |
|
|
| 437 |
|
$form['sna_realtime_network'] = array('#title' => t('Realtime network building'), |
| 438 |
|
'#type' => 'checkbox', |
| 439 |
|
'#default_value' => variable_get('sna_realtime_network', 0), |
| 440 |
|
'#description' => t('Turning on realtime network generation. It means that the |
| 441 |
|
social network is rebuilt at every page request. |
| 442 |
|
At large sites it can be extremly slow!.')); |
| 443 |
return $form; |
return $form; |
| 444 |
} |
} |
| 445 |
|
|
| 446 |
|
function sna_cron() { |
| 447 |
|
include 'explore.php'; |
| 448 |
|
} |
| 449 |
|
|
| 450 |
?> |
?> |