'textfield', '#default_value' => $saved_settings['height'], '#title' => t('Height'), '#description' => t('The height of the player in pixels.'), '#size' => 8, ); $form['swftools_flexpaper']['width'] = array( '#type' => 'textfield', '#default_value' => $saved_settings['width'], '#title' => t('Width'), '#description' => t('The width of the player in pixels.'), '#size' => 8, ); $form['swftools_flexpaper']['Scale'] = array( '#type' => 'textfield', '#default_value' => $saved_settings['Scale'], '#title' => t('Scale'), '#description' => t('The initial zoom factor that should be used. Should be a number above 0 (1=100%)'), '#size' => 8, ); $form['swftools_flexpaper']['ZoomTransition'] = array( '#type' => 'textfield', '#default_value' => $saved_settings['ZoomTransition'], '#title' => t('Zoom transition'), '#description' => t('The zoom transition that should be used when zooming in FlexPaper. It uses the same Transition modes as the Tweener. The default value is easeOut. Some examples: easenone, easeout, linear, easeoutquad.'), '#size' => 8, ); $form['swftools_flexpaper']['ZoomTime'] = array( '#type' => 'textfield', '#default_value' => $saved_settings['ZoomTime'], '#title' => t('Zoom time'), '#description' => t('The time it should take for the zoom to reach the new zoom factor. Should be 0 or greater.'), '#size' => 8, ); $form['swftools_flexpaper']['ZoomInterval'] = array( '#type' => 'textfield', '#default_value' => $saved_settings['ZoomInterval'], '#title' => t('Zoom interval'), '#description' => t('The interval which the zoom slider should be using. Basically how big the "step" should be between each zoom factor. The default value is 0.1. Should be a positive number.'), '#size' => 8, ); $form['swftools_flexpaper']['FitBehavior'] = array( '#type' => 'radios', '#options' => array( 'default' => t('Use scale setting'), 'page' => t('Fit page to viewer'), 'width' => t('Fit width to viewer'), ), '#default_value' => $saved_settings['FitBehavior'], '#title' => t('Document size on loading'), '#description' => t('When the document loads it can be shown at the scale specified above, scaled so the whole page fits in the viewer, or scaled so the document width fills the viewer.'), '#size' => 8, ); $form['swftools_flexpaper']['PrintEnabled'] = array( '#type' => 'radios', '#options' => array( 'true' => t('Enabled'), 'false' => t('Disabled'), ), '#default_value' => $saved_settings['PrintEnabled'], '#title' => t('Printing'), '#description' => t('Disables or enables print for the document. Please note that this in no way sufficient by itself to protect your intellectual property. It is merely a way of disabling the functionality for the average user and is in no way any final digital rights management or copyright protection.'), '#size' => 8, ); $form['swftools_flexpaper']['FullScreenAsMaxWindow'] = array( '#type' => 'radios', '#options' => array( 'true' => t('Enabled'), 'false' => t('Disabled'), ), '#default_value' => $saved_settings['FullScreenAsMaxWindow'], '#title' => t('Full screen as maximised window'), '#description' => t('This setting is disabled because it does not work correctly under Drupal.'), '#disabled' => TRUE, '#size' => 8, ); $form['swftools_flexpaper']['localeChain'] = array( '#type' => 'select', '#options' => array( 'default' => t('English (US)'), 'fr_FR' => t('French'), 'zh_CN' => t('Chinese (simple)'), 'es_ES' => t('Spanish'), 'pt_BR' => t('Brazilian Portugese'), 'ru_RU' => t('Russian'), 'fi_FN' => t('Finnish (fi)'), 'de_DE' => t('German'), 'nl_NL' => t('Netherlands'), 'tr_TR' => t('Turkish'), 'se_SE' => t('Swedish'), 'pt_PT' => t('Portugese'), 'el_EL' => t('Greek'), 'da_DN' => t('Danish'), 'cz_CS' => t('Czech'), 'it_IT' => t('Italian'), 'pl_PL' => t('Polish'), 'pv_FN' => t('Finnish (pv)'), 'hu_HU' => t('Hungarian'), ), '#default_value' => $saved_settings['localeChain'], '#title' => t('Language'), '#description' => t('Sets the locale (language) to use.'), ); // Initialise tree as we want to store arrays $form['swftools_flexpaper']['#tree'] = TRUE; // Add custom form handler to accommodate fit behavior and to strip blanks / defaults $form['#submit'][] = 'swftools_flexpaper_admin_form_submit'; // Return finished form return $form; }