2, 'path' => drupal_get_path('module', 'views_calc'), ); } /** * Implements hook_theme(). */ function views_calc_theme() { $path = drupal_get_path('module', 'views_calc'); return array( 'views_calc_ui_table' => array( 'render element' => 'form', 'file' => 'theme.inc', ), ); } /** * Implements hook_help(). */ function views_calc_help($section, $arg) { switch ($section) { case 'admin/config/views_calc': case 'admin/config/views_calc/fields': return t('
Set up calculation fields. Calculation fields will be displayed in the views fields list and can be added to any view.
'); case 'admin/config/views_calc/settings': return t('Put one operator on each line. To avoid the possibility of SQL injection, calculation text will only allow these values, numbers, and field names. Make sure this list includes any text other than field names that should be allowed in the calculation fields.'); case 'admin/help#views_calc': return t('The specific fields that are available in any view depend on the base table used for that view.
'); require_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'views') . '/includes/admin.inc'; $base_tables = views_fetch_base_tables(); foreach ($base_tables as $base => $data) { $base_subs = _views_calc_substitutions($base); $substitutions += $base_subs; $fieldset = array( '#title' => t('Base table: !name', array('!name' => t($data['title']))), '#value' => theme('item_list', array('items' => $base_subs)), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $help .= theme('fieldset', $fieldset); } // display current views calcs fields $fields = _views_calc_fields(); while ($field = db_fetch_array($fields)) { $form[] = views_calc_field_form_item($i, $field, $substitutions); $i++; } // add blank fields for more calcs for ($x = $i + 1; $x < $i + 2; $x++) { $field = array(); $form[] = views_calc_field_form_item($i, $field, $substitutions); } $form['#prefix'] = 'The query operation to be performed, using numbers, field substitutions, and " . implode(' ', _views_calc_operators()) . ". Leave spaces between parentheses and field names, i.e. 'CONCAT( %field1, ' ', %field2 )'. " . t('Note that all fields must be from the base table selected above! You cannot combine fields from different base tables.') . "
"), ); $form['group'][$i]['format'] = array( '#type' => 'select', '#title' => t('Format'), '#default_value' => $field['format'], '#options' => drupal_map_assoc(array_keys(_views_calc_format_options())), '#description' => t('The format of the result of this calculation.'), ); $form['group'][$i]['custom'] = array( '#type' => 'textfield', '#title' => t('Custom function'), '#default_value' => $field['custom'], '#description' => t('The function to call for a custom format.'), ); return $form; } /** * FAPI fields_form validate. * * Validate the views calc settings */ function views_calc_fields_form_validate($form, &$form_state) { $form_values = $form_state['values']; $edit = $form_values; foreach ($edit as $delta => $item) { if ($item['calc'] == '' || !is_numeric($delta)) { // remove blank fields, don't save them continue; } else { // Remove all valid values from calc, if anything is left over, it is invalid. // First, remove all field names. $repl = array(); $patterns = array(); $base = $item['base']; foreach (_views_calc_substitutions($base) as $key => $value) { $key = trim($value); $count = strlen($value); $replace = preg_quote($value); $patterns[] = "`(^|[^\\\\\\\\])" . $replace . "`"; $repl[] = '${1}'; } $remaining = trim(preg_replace($patterns, $repl, $item['calc'])); // Next, remove functions and numbers. $repl = array(); $patterns = array(); foreach (_views_calc_replacements() as $value) { $patterns[] = "`(^|[^\\\\\\\\])" . preg_quote(trim($value)) . "`"; $repl[] = '${1}'; } $remaining = trim(preg_replace($patterns, $repl, $remaining)); if (!empty($remaining)) { form_set_error($form_values[$delta]['calc'], t('The values %remaining in %field are not allowed.', array('%remaining' => $remaining, '%field' => $item['label']))); } } } } /** * FAPI fields_form submit. * * Save the views calc field settings */ function views_calc_fields_form_submit($form, &$form_state) { $edit = $form_state['values']; $form_values = array(); foreach ($edit as $delta => $value) { // If this is some form item we don't care about, skip it. if (!is_array($value) || !is_numeric($delta)) { continue; } $value['calc'] = trim($value['calc']); if (empty($value['calc'])) { // remove blank fields, don't save them if (!empty($value['cid'])) { // TODO Please review the conversion of this statement to the D7 database API syntax. /* db_query("DELETE FROM {views_calc_fields} WHERE cid=%d", $value['cid']) */ db_delete('views_calc_fields') ->condition('cid', $value['cid']) ->execute(); } } else { $tables = array(); $form_values[$delta]['cid'] = $value['cid']; $form_values[$delta]['label'] = $value['label']; $form_values[$delta]['format'] = $value['format']; $form_values[$delta]['custom'] = $value['custom']; $form_values[$delta]['calc'] = $value['calc']; $form_values[$delta]['base'] = $value['base']; // Substitute field names back into the calculation. $matches = array(); $base = $value['base']; foreach (_views_calc_substitutions($base) as $key => $value) { $label_patterns[] = "`(^|[^\\\\\\\\])" . preg_quote($value) . "`"; $value_patterns[] = "`(^|[^\\\\\\\\])" . preg_quote($key) . "`"; $repl[] = '${1}' . $key; } $form_values[$delta]['calc'] = preg_replace($label_patterns, $repl, $form_values[$delta]['calc']); // Extract the fields and table names from the calculation. $tables = array(); $fields = array(); foreach ($value_patterns as $pattern) { if (preg_match($pattern, $form_values[$delta]['calc'], $results)) { $fields[trim($results[0])] = trim($results[0]); $tmp = explode('.', trim($results[0])); if (trim($tmp[0])) { $tables[trim($tmp[0])] = trim($tmp[0]); } } } $form_values[$delta]['tablelist'] = implode(',', $tables); $form_values[$delta]['fieldlist'] = implode(',', $fields); } } foreach ((array) $form_values as $delta => $value) { if (empty($value['cid'])) { drupal_write_record('views_calc_fields', $value); } else { drupal_write_record('views_calc_fields', $value, array('cid')); } } views_invalidate_cache(); drupal_set_message(t('Views Calc fields were updated.')); } /** * Wrapper function to make sure this function will always work. */ function views_calc_views_fetch_fields($base, $type) { if (!module_exists('views')) { return array(); } require_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'views') . '/includes/admin.inc'; return views_fetch_fields($base, $type); } /** * Field substitutions for calculations. */ function _views_calc_substitutions($base = 'node') { $fields = views_calc_views_fetch_fields($base, 'field'); $substitutions['node.nid'] = '%Node.nid'; $substitutions['node.uid'] = '%Node.uid'; foreach ($fields as $key => $field) { // For now, omit calculated fields from available fields list. // Doing caculations on calculated fields will require some // complex additional logic, especially if they are nested // several levels deep. if (substr($key, 0, 4) != '.cid') { $substitutions[$key] = '%' . str_replace(' ', '', $key); } } return $substitutions; } /** * Views calc fields result object. */ function _views_calc_fields() { return db_query("SELECT * FROM {views_calc_fields}"); } /** * An array of allowable calculation values. */ function _views_calc_replacements() { $operators = array_filter(_views_calc_operators(), 'trim'); $numbers = range(0, 9); return array_merge($operators, $numbers); } /** * FAPI export_form. * * Field export form. */ function views_calc_export_form($form, &$form_state) { $fields = _views_calc_fields(); $string = ''; while ($field = db_fetch_array($fields)) { $base = $field['base']; $substitutions = _views_calc_substitutions($base); $field['calc'] = strtr($field['calc'], $substitutions); $string .= "\$fields[] = " . var_export((array) $field, TRUE) . ";\n"; } $form['#prefix'] = t('This form will export Views Calc custom fields.'); $form['macro'] = array( '#type' => 'textarea', '#rows' => 20, '#title' => t('Export data'), '#default_value' => $string, '#description' => t('This is an export of the custom Views Calc fields. Paste this text into a Views Calc import box to import these fields into another installation. This will only work if the other installation uses the same base tables required by these fields.'), ); return $form; } /** * FAPI import_form. * * Field import form. */ function views_calc_import_form($form, &$form_state, $type_name = '') { $form['#prefix'] = t('This form will import Views Calc custom fields.'); $form['macro'] = array( '#type' => 'textarea', '#rows' => 20, '#title' => t('Import data'), '#required' => TRUE, '#description' => t('Paste the text created by a Views Calc export into this field.'), ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Import'), ); // Read in a file if there is one and set it as the default macro value. if (isset($_REQUEST['macro_file']) && $file = file_get_contents($_REQUEST['macro_file'])) { $form['macro']['#default_value'] = $file; if (isset($_REQUEST['type_name'])) { $form['type_name']['#default_value'] = $_REQUEST['type_name']; } $form['#prefix'] .= '' . t('A file has been pre-loaded for import.') . '
'; } $form_state['#redirect'] = 'admin/config/views_calc'; return $form; } /** * FAPI import_form submit. * * Submit handler for import form. */ function views_calc_import_form_submit($form, &$form_state) { $form_values = $form_state['values']; $fields = NULL; // Use '@' to suppress errors about undefined constants in the macro. @eval($form_values['macro']); if (empty($fields) || !is_array($fields)) { return; } foreach ($fields as $delta => $field) { // Don't over-write existing fields, create new ones. $fields[$delta]['cid'] = NULL; } // Run the values thru drupal_execute() so they are properly validated. $form_state = array('values' => $fields); drupal_form_submit('views_calc_fields_form', $form_state); } function views_process_dependency($element, $edit, &$form_state, &$form) { static $dependencies; if (isset($element['#dependency']) && !isset($dependencies[$element['#id']])) { if (!isset($element['#dependency_count'])) { $element['#dependency_count'] = 1; } if (!empty($form_state['ajax'])) { $form_state['js settings']['viewsAjax']['formRelationships'][$element['#id']] = array('num' => $element['#dependency_count'], 'values' => $element['#dependency']); } else { views_add_js('dependent'); $options['viewsAjax']['formRelationships'][$element['#id']] = array('num' => $element['#dependency_count'], 'values' => $element['#dependency']); drupal_add_js($options, 'setting'); } $dependencies[$element['#id']] = TRUE; } return $element; }