$info) { $info['value'] = $value; $merged[] = $info; } } $rows = array(); for ($i = $page * $limit; $i < ($page+1) * $limit && $i < count($merged); $i++) { $rows[] = array( $providers[$merged[$i]['provider']]['name'], $merged[$i]['value'], $merged[$i]['id'], $methods[variable_get('purl_method_'. $merged[$i]['provider'], PURL_PATH)], ); } // We calculate the total of pages as ceil(items / limit). $pager_total_items[$element] = count($merged); $pager_total[$element] = ceil($pager_total_items[$element] / $limit); $pager_page_array[$element] = max(0, min((int)$pager_page_array[$element], ((int)$pager_total[$element]) - 1)); if ($rows) { $output = theme('table', array(t('Provider'), t('Modifier'), t('ID'), t('Method')), $rows); $output .= theme('pager'); } else { $output = "
". t('No persistent urls have been registered.') ."
"; } return $output; } /** * Settings form for choosing the operating mode of purl */ function purl_settings_form() { global $base_url; $form = array(); $options = _purl_options(); foreach (purl_providers() as $id => $provider) { // Check to see whether provider has limited the available valueing methods if (isset($provider['methods']) && count($provider['methods'])) { $provider_options = array(); foreach ($provider['methods'] as $method) { $provider_options[$method] = $options[$method]; } } else { $provider_options = $options; } $form[$id] = array( '#fieldset' => true, '#provider' => true, '#title' => $provider['name'], '#description' => $provider['description'], ); $form[$id]['purl_method_'. $id] = array( '#title' => t('Method'), '#type' => 'select', '#options' => $provider_options, '#default_value' => variable_get('purl_method_'. $id, PURL_PATH), ); $form[$id]['purl_method_'. $id .'_key'] = array( '#title' => t('Key'), '#type' => 'textfield', '#size' => 12, '#default_value' => variable_get('purl_method_'. $id .'_key', ''), ); } if (!empty($options[PURL_DOMAIN]) || !empty($options[PURL_SUBDOMAIN])) { $form['purl_location'] = array( '#type' => 'fieldset', ); $form['purl_location']['purl_base_domain'] = array( '#type' => 'textfield', '#title' => t('Default domain'), '#description' => t('Enter the default domain if you are using domain modifiers.'), '#required' => FALSE, '#default_value' => variable_get('purl_base_domain', $base_url), ); } $form = system_settings_form($form); $form['#theme'] = 'purl_settings_form'; return $form; } /** * Theme function for purl_settings_form() */ function theme_purl_settings_form($form) { $output = ''; $rows = array(); foreach (element_children($form) as $id) { $row = array(); if (isset($form[$id]['#provider'])) { $name = $form[$id]['#title']; $description = $form[$id]['#description']; unset($form[$id]['#title']); unset($form[$id]['#description']); $row[] = "$name