| 1 |
<?php |
<?php |
| 2 |
// $Id: pacs.module,v 1.3.2.1 2006/06/13 18:51:20 peterone Exp $ |
// $Id: pacs.module,v 1.3.2.2 2007/04/10 17:28:26 peterone Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 595 |
$form['book_sync']['pacs_sync_book'] = array( |
$form['book_sync']['pacs_sync_book'] = array( |
| 596 |
'#type' => 'checkbox', |
'#type' => 'checkbox', |
| 597 |
'#title' => t('synchronize the pacs tree with the book page hierarchies'), |
'#title' => t('synchronize the pacs tree with the book page hierarchies'), |
| 598 |
'#default_value' => variable_get('pacs_sync_book',1), |
'#default_value' => variable_get('pacs_sync_book',0), |
| 599 |
'#description' => t('Enable this option to maintain your book page hierarchy automatically synchronized with the pacs tree.') |
'#description' => t('Enable this option to maintain your book page hierarchy automatically synchronized with the pacs tree.') |
| 600 |
); |
); |
| 601 |
if (variable_get('pacs_sync_book',1)) { |
if (variable_get('pacs_sync_book',0)) { |
| 602 |
$form['book_sync']['sync_now'] = array( |
$form['book_sync']['sync_now'] = array( |
| 603 |
'#type' => 'button', |
'#type' => 'button', |
| 604 |
'#value' => t('synchronize now'), |
'#value' => t('synchronize now'), |