set_definition($definition); // let the handler have something like a constructor. $handler->construct(); return $handler; } /** * Attempt to find the include file for a given handler from its definition. * * This will also attempt to include all parents, though we're maxing the * parent chain to 10 to prevent infinite loops. */ function views_include_handler($definition, $type, $count = 0) { // Do not proceed if the class already exists. if (isset($definition['handler']) && class_exists($definition['handler'])) { return TRUE; } // simple infinite loop prevention. if ($count > 10) { vpr(t('Handler @handler include tried to loop infinitely!', array('@handler' => $definition['handler']))); return FALSE; } if (!isset($definition['path'])) { if ($type == 'handler') { $definition += views_fetch_handler_data($definition['handler']); } else { $definition += views_fetch_plugin_data($type, $definition['handler']); } } if (!empty($definition['parent'])) { if ($type == 'handler') { $parent = views_fetch_handler_data($definition['parent']); } else { $parent = views_fetch_plugin_data($type, $definition['parent']); } if ($parent) { $rc = views_include_handler($parent, $type, $count + 1); // If the parent chain cannot be included, don't try; this will // help alleviate problems with modules with cross dependencies. if (!$rc) { return FALSE; } } } if (isset($definition['path']) && $definition['file']) { $filename = './' . $definition['path'] . '/' . $definition['file']; if (file_exists($filename)) { require_once $filename; } } return class_exists($definition['handler']); } /** * Prepare a handler's data by checking defaults and such. */ function _views_prepare_handler($definition, $data, $field) { foreach (array('group', 'title', 'help', 'real field') as $key) { if (!isset($definition[$key])) { // First check the field level if (!empty($data[$field][$key])) { $definition[$key] = $data[$field][$key]; } // Then if that doesn't work, check the table level else if (!empty($data['table'][$key])) { $definition[$key] = $data['table'][$key]; } } } return _views_create_handler($definition); } /** * Fetch the handler data from cache. */ function views_fetch_handler_data($handler = NULL) { static $cache = NULL; if (!isset($cache)) { $start = microtime(); $cache = views_discover_handlers(); vpr('Views handlers build time: ' . (microtime() - $start) * 1000 . ' ms'); } if (!$handler) { return $cache; } else if (isset($cache[$handler])) { return $cache[$handler]; } // Return an empty array if there is no match. return array(); } /** * Builds and return a list of all handlers available in the system. * * @return Nested array of handlers */ function views_discover_handlers() { $cache = array(); // Get handlers from all modules. foreach (module_implements('views_handlers') as $module) { $function = $module . '_views_handlers'; $result = $function(); if (!is_array($result)) { continue; } $module_dir = isset($result['info']['module']) ? $result['info']['module'] : $module; $path = isset($result['info']['path']) ? $result['info']['path'] : drupal_get_path('module', $module_dir); foreach ($result['handlers'] as $handler => $def) { if (!isset($def['module'])) { $def['module'] = $module_dir; } if (!isset($def['path'])) { $def['path'] = $path; } if (!isset($def['file'])) { $def['file'] = "$handler.inc"; } if (!isset($def['handler'])) { $def['handler'] = $handler; } // merge the new data in $cache[$handler] = $def; } } return $cache; } /** * Fetch a handler to join one table to a primary table from the data cache */ function views_get_table_join($table, $base_table) { $data = views_fetch_data($table); if (isset($data['table']['join'][$base_table])) { $h = $data['table']['join'][$base_table]; if (!empty($h['handler']) && class_exists($h['handler'])) { $handler = new $h['handler']; } else { $handler = new views_join(); } // Fill in some easy defaults $handler->definition = $h; if (empty($handler->definition['table'])) { $handler->definition['table'] = $table; } // If this is empty, it's a direct link. if (empty($handler->definition['left_table'])) { $handler->definition['left_table'] = $base_table; } if (isset($h['arguments'])) { call_user_func_array(array(&$handler, 'construct'), $h['arguments']); } else { $handler->construct(); } return $handler; } // DEBUG -- identify missing handlers vpr("Missing join: $table $base_table"); } /** * Base handler, from which all the other handlers are derived. * It creates a common interface to create consistency amongst * handlers and data. * * This class would be abstract in PHP5, but PHP4 doesn't understand that. * * Definition terms: * - table: The actual table this uses; only specify if different from * the table this is attached to. * - real field: The actual field this uses; only specify if different from * the field this item is attached to. * - group: A text string representing the 'group' this item is attached to, * for display in the UI. Examples: "Node", "Taxonomy", "Comment", * "User", etc. This may be inherited from the parent definition or * the 'table' definition. * - title: The title for this handler in the UI. This may be inherited from * the parent definition or the 'table' definition. * - help: A more informative string to give to the user to explain what this * field/handler is or does. * - access callback: If this field should have access control, this could * be a function to use. 'user_access' is a common * function to use here. If not specified, no access * control is provided. * - access arguments: An array of arguments for the access callback. */ class views_handler extends views_object { /** * init the handler with necessary data. * @param $view * The $view object this handler is attached to. * @param $options * The item from the database; the actual contents of this will vary * based upon the type of handler. */ function init(&$view, $options) { $this->view = &$view; $this->unpack_options($this->options, $options); // This exist on most handlers, but not all. So they are still optional. if (isset($options['table'])) { $this->table = $options['table']; } if (isset($this->definition['real field'])) { $this->real_field = $this->definition['real field']; } if (isset($this->definition['field'])) { $this->real_field = $this->definition['field']; } if (isset($options['field'])) { $this->field = $options['field']; if (!isset($this->real_field)) { $this->real_field = $options['field']; } } $this->query = &$view->query; } /** * Return a string representing this handler's name in the UI. */ function ui_name() { return t('!group: !title', array('!group' => $this->definition['group'], '!title' => $this->definition['title'])); } /** * Provide a form for setting options. */ function options_form(&$form, &$form_state) { } /** * Validate the options form. */ function options_validate($form, &$form_state) { } /** * Perform any necessary changes to the form values prior to storage. * There is no need for this function to actually store the data. */ function options_submit($form, &$form_state) { } /** * If a handler has 'extra options' it will get a little settings widget and * another form called extra_options. */ function has_extra_options() { return FALSE; } /** * Provide defaults for the handler. */ function extra_options(&$option) { } /** * Provide a form for setting options. */ function extra_options_form(&$form, &$form_state) { } /** * Validate the options form. */ function extra_options_validate($form, &$form_state) { } /** * Perform any necessary changes to the form values prior to storage. * There is no need for this function to actually store the data. */ function extra_options_submit($form, &$form_state) { } /** * Set new exposed option defaults when exposed setting is flipped * on. */ function expose_options() { } /** * Render our chunk of the exposed filter form when selecting */ function exposed_form(&$form, &$form_state) { } /** * Validate the exposed filter form */ function exposed_validate(&$form, &$form_state) { } /** * Submit the exposed filter form */ function exposed_submit(&$form, &$form_state) { } /** * Get information about the exposed form for the form renderer. * * @return * An array with the following keys: * - operator: The $form key of the operator. Set to NULL if no operator. * - value: The $form key of the value. Set to NULL if no value. * - label: The label to use for this piece. */ function exposed_info() { } /** * Check whether current user has access to this handler. * * @return boolean */ function access() { if (isset($this->definition['access callback']) && function_exists($this->definition['access callback'])) { if (isset($this->definition['access arguments']) && is_array($this->definition['access arguments'])) { return call_user_func_array($this->definition['access callback'], $this->definition['access arguments']); } return $this->definition['access callback'](); } return TRUE; } /** * Run before the view is built. * * This gives all the handlers some time to set up before any handler has * been fully run. */ function pre_query() { } /** * Called just prior to query(), this lets a handler set up any relationship * it needs. */ function set_relationship() { // Ensure this gets set to something. $this->relationship = NULL; // Don't process non-existant relationships. if (empty($this->options['relationship']) || $this->options['relationship'] == 'none') { return; } $relationship = $this->options['relationship']; // Ignore missing/broken relationships. if (empty($this->view->relationship[$relationship])) { return; } // Check to see if the relationship has already processed. If not, then we // cannot process it. if (empty($this->view->relationship[$relationship]->alias)) { return; } // Finally! $this->relationship = $this->view->relationship[$relationship]->alias; } /** * Add this handler into the query. * * If we were using PHP5, this would be abstract. */ function query() { } /** * Ensure the main table for this handler is in the query. This is used * a lot. */ function ensure_my_table() { if (!isset($this->table_alias)) { if (!method_exists($this->query, 'ensure_table')) { vpr_trace(); exit; } $this->table_alias = $this->query->ensure_table($this->table, $this->relationship); } return $this->table_alias; } /** * Provide text for the administrative summary */ function admin_summary() { } /** * Determine if the argument needs a style plugin. * * @return TRUE/FALSE */ function needs_style_plugin() { return FALSE; } /** * Determine if this item is 'exposed', meaning it provides form elements * to let users modify the view. * * @return TRUE/FALSE */ function is_exposed() { return !empty($this->options['exposed']); } /** * Take input from exposed filters and assign to this handler, if necessary. */ function accept_exposed_input($input) { return TRUE; } /** * If set to remember exposed input in the session, store it there. */ function store_exposed_input($input, $status) { return TRUE; } /** * Get the join object that should be used for this handler. * * This method isn't used a great deal, but it's very handy for easily * getting the join if it is necessary to make some changes to it, such * as adding an 'extra'. */ function get_join() { // get the join from this table that links back to the base table. // Determine the primary table to seek if (empty($this->query->relationships[$this->relationship])) { $base_table = $this->query->base_table; } else { $base_table = $this->query->relationships[$this->relationship]['base']; } $join = views_get_table_join($this->table, $base_table); if ($join) { return drupal_clone($join); } } /** * Determine if the handler is considered 'broken', meaning it's a * a placeholder used when a handler can't be found. */ function broken() { } } /** * This many to one helper object is used on both arguments and filters. * * @todo This requires extensive documentation on how this class is to * be used. For now, look at the arguments and filters that use it. Lots * of stuff is just pass-through but there are definitely some interesting * areas where they interact. * * Any handler that uses this can have the following possibly additional * definition terms: * - numeric: If true, treat this field as numeric, using %d instead of %s in * queries. * */ class views_many_to_one_helper { function views_many_to_one_helper(&$handler) { $this->handler = &$handler; } function option_definition(&$options) { $options['reduce_duplicates'] = array('default' => FALSE); } function options_form(&$form, &$form_state) { $form['reduce_duplicates'] = array( '#type' => 'checkbox', '#title' => t('Reduce duplicates'), '#description' => t('This filter can cause items that have more than one of the selected options to appear as duplicate results. If this filter causes duplicate results to occur, this checkbox can reduce those duplicates; however, the more terms it has to search for, the less performant the query will be, so use this with caution.'), '#default_value' => !empty($this->handler->options['reduce_duplicates']), ); } /** * Sometimes the handler might want us to use some kind of formula, so give * it that option. If it wants us to do this, it must set $helper->formula = TRUE * and implement handler->get_formula(); */ function get_field() { if (!empty($this->formula)) { return $this->handler->get_formula(); } else { return $this->handler->table_alias . '.' . $this->handler->real_field; } } /** * Add a table to the query. * * This is an advanced concept; not only does it add a new instance of the table, * but it follows the relationship path all the way down to the relationship * link point and adds *that* as a new relationship and then adds the table to * the relationship, if necessary. */ function add_table($join = NULL, $alias = NULL) { // This is used for lookups in the many_to_one table. $field = $this->handler->table . '.' . $this->handler->field; if (empty($join)) { $join = $this->get_join(); } // See if there's a chain between us and the base relationship. If so, we need // to create a new relationship to use. $relationship = $this->handler->relationship; // Determine the primary table to seek if (empty($this->handler->query->relationships[$relationship])) { $base_table = $this->handler->query->base_table; } else { $base_table = $this->handler->query->relationships[$relationship]['base']; } // Cycle through the joins. This isn't as error-safe as the normal // ensure_path logic. Perhaps it should be. $r_join = drupal_clone($join); while ($r_join->left_table != $base_table) { $r_join = views_get_table_join($r_join->left_table, $base_table); } // If we found that there are tables in between, add the relationship. if ($r_join->table != $join->table) { $relationship = $this->handler->query->add_relationship(NULL, $r_join, $r_join->table, $this->handler->relationship); } // And now add our table, using the new relationship if one was used. $alias = $this->handler->query->add_table($this->handler->table, $relationship, $join, $alias); // Store what values are used by this table chain so that other chains can // automatically discard those values. if (empty($this->handler->view->many_to_one_tables[$field])) { $this->handler->view->many_to_one_tables[$field] = $this->handler->value; } else { $this->handler->view->many_to_one_tables[$field] = array_merge($this->handler->view->many_to_one_tables[$field], $this->handler->value); } return $alias; } function get_join() { return $this->handler->get_join(); } /** * Provide the proper join for summary queries. This is important in part because * it will cooperate with other arguments if possible. */ function summary_join() { $field = $this->handler->table . '.' . $this->handler->field; $join = $this->get_join(); // shortcuts $options = $this->handler->options; $view = &$this->handler->view; $query = &$this->handler->query; if (!empty($options['require_value'])) { $join->type = 'INNER'; } if (empty($options['add_table']) || empty($view->many_to_one_tables[$field])) { return $query->ensure_table($this->handler->table, $this->handler->relationship, $join); } else { if (!empty($view->many_to_one_tables[$field])) { foreach ($view->many_to_one_tables[$field] as $value) { $join->extra = array( array( 'field' => $this->handler->real_field, 'operator' => '!=', 'value' => $value, 'numeric' => !empty($this->definition['numeric']), ), ); } } return $this->add_table($join); } } /** * Override ensure_my_table so we can control how this joins in. * The operator actually has influence over joining. */ function ensure_my_table() { if (!isset($this->handler->table_alias)) { // For 'or' if we're not reducing duplicates, we get the absolute simplest: $field = $this->handler->table . '.' . $this->handler->field; if ($this->handler->operator == 'or' && empty($this->handler->options['reduce_duplicates'])) { if (empty($this->handler->options['add_table']) && empty($this->handler->view->many_to_one_tables[$field])) { // query optimization, INNER joins are slightly faster, so use them // when we know we can. $join = $this->get_join(); $join->type = 'INNER'; $this->handler->table_alias = $this->handler->query->ensure_table($this->handler->table, $this->handler->relationship, $join); $this->handler->view->many_to_one_tables[$field] = $this->handler->value; } else { $join = $this->get_join(); $join->type = 'LEFT'; if (!empty($this->handler->view->many_to_one_tables[$field])) { foreach ($this->handler->view->many_to_one_tables[$field] as $value) { $join->extra = array( array( 'field' => $this->handler->real_field, 'operator' => '!=', 'value' => $value, 'numeric' => !empty($this->handler->definition['numeric']), ), ); } } $this->handler->table_alias = $this->add_table($join); } return $this->handler->table_alias; } if ($this->handler->operator != 'not') { // If it's an and or an or, we do one join per selected value. // Clone the join for each table: $this->handler->table_aliases = array(); foreach ($this->handler->value as $value) { $join = $this->get_join(); if ($this->handler->operator == 'and') { $join->type = 'INNER'; } $join->extra = array( array( 'field' => $this->handler->real_field, 'value' => $value, 'numeric' => !empty($this->handler->definition['numeric']), ), ); // The table alias needs to be unique to this value across the // multiple times the filter or argument is called by the view. if (!isset($this->handler->view->many_to_one_aliases[$field][$value])) { if (!isset($this->handler->view->many_to_one_count[$field])) { $this->handler->view->many_to_one_count[$field] = 0; } $this->handler->view->many_to_one_aliases[$field][$value] = $this->handler->table . '_value_' . ($this->handler->view->many_to_one_count[$field]++); } $alias = $this->handler->table_aliases[$value] = $this->add_table($join, $this->handler->view->many_to_one_aliases[$field][$value]); // and set table_alias to the first of these. if (empty($this->handler->table_alias)) { $this->handler->table_alias = $alias; } } } else { // For not, we just do one join. We'll add a where clause during // the query phase to ensure that $table.$field IS NULL. $join = $this->get_join(); $join->type = 'LEFT'; $join->extra = array(); $join->extra_type = 'OR'; foreach ($this->handler->value as $value) { $join->extra[] = array( 'field' => $this->handler->real_field, 'value' => $value, 'numeric' => !empty($this->handler->definition['numeric']), ); } $this->handler->table_alias = $this->add_table($join); } } return $this->handler->table_alias; } function add_filter() { if (empty($this->handler->value)) { return; } $this->handler->ensure_my_table(); // Shorten some variables: $field = $this->get_field(); $options = $this->handler->options; $operator = $this->handler->operator; if (empty($options['group'])) { $options['group'] = 0; } $placeholder = !empty($this->handler->definition['numeric']) ? '%d' : "'%s'"; if ($operator == 'not') { $this->handler->query->add_where($options['group'], "$field IS NULL"); } else if ($operator == 'or' && empty($options['reduce_duplicates'])) { if (count($this->handler->value) > 1) { $replace = array_fill(0, sizeof($this->handler->value), $placeholder); $in = '(' . implode(", ", $replace) . ')'; $this->handler->query->add_where($options['group'], "$field IN $in", $this->handler->value); } else { $this->handler->query->add_where($options['group'], "$field = $placeholder", $this->handler->value); } } else { $field = $this->handler->real_field; $clauses = array(); foreach ($this->handler->table_aliases as $value => $alias) { $clauses[] = "$alias.$field = $placeholder"; } $group = empty($options['group']) ? 0 : $options['group']; // implode on either AND or OR. $this->handler->query->add_where($group, implode(' ' . strtoupper($operator) . ' ', $clauses), $this->handler->value); } } } /* * Break x,y,z and x+y+z into an array. Numeric only. * * @param $str * The string to parse. * @param $filter * The filter object to use as a base. If not specified one will * be created. * * @return $filter * The new filter object. */ function views_break_phrase($str, $filter = NULL) { if (!$filter) { $filter = new stdClass(); } if (preg_match('/^([0-9]+[+ ])+[0-9]+$/', $str)) { // The '+' character in a query string may be parsed as ' '. $filter->operator = 'or'; $filter->value = preg_split('/[+ ]/', $str); } else if (preg_match('/^([0-9]+,)*[0-9]+$/', $str)) { $filter->operator = 'and'; $filter->value = explode(',', $str); } // Keep an 'error' value if invalid strings were given. if (!empty($str) && (empty($filter->value) || !is_array($filter->value))) { $filter->value = array(-1); return $filter; } // Doubly ensure that all values are numeric only. foreach ($filter->value as $id => $value) { $filter->value[$id] = intval($value); } return $filter; } // -------------------------------------------------------------------------- // Date helper functions /** * Figure out what timezone we're in; needed for some date manipulations. */ function views_get_timezone() { global $user; if (variable_get('configurable_timezones', 1) && $user->uid && strlen($user->timezone)) { $timezone = $user->timezone; } else { $timezone = variable_get('date_default_timezone', 0); } // set up the database timezone if (in_array($GLOBALS['db_type'], array('mysql', 'mysqli'))) { static $already_set = false; if (!$already_set) { if ($GLOBALS['db_type'] == 'mysqli' || version_compare(mysql_get_server_info(), '4.1.3', '>=')) { db_query("SET @@session.time_zone = '+00:00'"); } $already_set = true; } } return $timezone; } /** * Helper function to create cross-database SQL dates. * * @param $field * The real table and field name, like 'tablename.fieldname'. * @param $field_type * The type of date field, 'int' or 'datetime'. * @param $set_offset * The name of a field that holds the timezone offset or a fixed timezone * offset value. If not provided, the normal Drupal timezone handling * will be used, i.e. $set_offset = 0 will make no timezone adjustment. * @return * An appropriate SQL string for the db type and field type. */ function views_date_sql_field($field, $field_type = 'int', $set_offset = NULL) { $db_type = $GLOBALS['db_type']; $offset = $set_offset !== NULL ? $set_offset : views_get_timezone(); switch ($db_type) { case 'mysql': case 'mysqli': switch ($field_type) { case 'int': $field = "FROM_UNIXTIME($field)"; break; case 'datetime': break; } if (!empty($offset)) { $field = "($field + INTERVAL $offset SECOND)"; } return $field; case 'pgsql': switch ($field_type) { case 'int': $field = "$field::ABSTIME"; break; case 'datetime': break; } if (!empty($offset)) { $field = "($field + INTERVAL '$offset SECONDS')"; } return $field; } } /** * Helper function to create cross-database SQL date formatting. * * @param $format * A format string for the result, like 'Y-m-d H:i:s'. * @param $field * The real table and field name, like 'tablename.fieldname'. * @param $field_type * The type of date field, 'int' or 'datetime'. * @param $set_offset * The name of a field that holds the timezone offset or a fixed timezone * offset value. If not provided, the normal Drupal timezone handling * will be used, i.e. $set_offset = 0 will make no timezone adjustment. * @return * An appropriate SQL string for the db type and field type. */ function views_date_sql_format($format, $field, $field_type = 'int', $set_offset = NULL) { $db_type = $GLOBALS['db_type']; $field = views_date_sql_field($field, $field_type, $set_offset); switch ($db_type) { case 'mysql': case 'mysqli': $replace = array( 'Y' => '%Y', 'm' => '%m', 'd' => '%%d', 'H' => '%H', 'i' => '%i', 's' => '%s', ); $format = strtr($format, $replace); return "DATE_FORMAT($field, '$format')"; case 'pgsql': $replace = array( 'Y' => 'YY', 'm' => 'MM', 'd' => 'DD', 'H' => 'HH24', 'i' => 'MI', 's' => 'SS', ); $format = strtr($format, $replace); return "TO_CHAR($field, '$format')"; } } /** * Helper function to create cross-database SQL date extraction. * * @param $extract_type * The type of value to extract from the date, like 'MONTH'. * @param $field * The real table and field name, like 'tablename.fieldname'. * @param $field_type * The type of date field, 'int' or 'datetime'. * @param $set_offset * The name of a field that holds the timezone offset or a fixed timezone * offset value. If not provided, the normal Drupal timezone handling * will be used, i.e. $set_offset = 0 will make no timezone adjustment. * @return * An appropriate SQL string for the db type and field type. */ function views_date_sql_extract($extract_type, $field, $field_type = 'int', $set_offset = NULL) { $db_type = $GLOBALS['db_type']; $field = views_date_sql_field($field, $field_type, $set_offset); // Note there is no space after FROM to avoid db_rewrite problems // see http://drupal.org/node/79904. switch ($extract_type) { case('DATE'): return $field; case('YEAR'): return "EXTRACT(YEAR FROM($field))"; case('MONTH'): return "EXTRACT(MONTH FROM($field))"; case('DAY'): return "EXTRACT(DAY FROM($field))"; case('HOUR'): return "EXTRACT(HOUR FROM($field))"; case('MINUTE'): return "EXTRACT(MINUTE FROM($field))"; case('SECOND'): return "EXTRACT(SECOND FROM($field))"; case('WEEK'): // ISO week number for date switch ($db_type) { case('mysql'): case('mysqli'): // WEEK using arg 3 in mysql should return the same value as postgres EXTRACT return "WEEK($field, 3)"; case('pgsql'): return "EXTRACT(WEEK FROM($field))"; } case('DOW'): switch ($db_type) { case('mysql'): case('mysqli'): // mysql returns 1 for Sunday through 7 for Saturday // php date functions and postgres use 0 for Sunday and 6 for Saturday return "INTEGER(DAYOFWEEK($field) - 1)"; case('pgsql'): return "EXTRACT(DOW FROM($field))"; } case('DOY'): switch ($db_type) { case('mysql'): case('mysqli'): return "DAYOFYEAR($field)"; case('pgsql'): return "EXTRACT(DOY FROM($field))"; } } } /** * Implementation of hook_views_handlers() to register all of the basic handlers * views uses. */ function views_views_handlers() { return array( 'info' => array( 'path' => drupal_get_path('module', 'views') . '/handlers', ), 'handlers' => array( // argument handlers 'views_handler_argument' => array( 'parent' => 'views_handler', ), 'views_handler_argument_numeric' => array( 'parent' => 'views_handler_argument', ), 'views_handler_argument_formula' => array( 'parent' => 'views_handler_argument', ), 'views_handler_argument_date' => array( 'parent' => 'views_handler_argument_formula', ), 'views_handler_argument_string' => array( 'parent' => 'views_handler_argument', ), 'views_handler_argument_many_to_one' => array( 'parent' => 'views_handler_argument', ), 'views_handler_argument_null' => array( 'parent' => 'views_handler_argument', ), // field handlers 'views_handler_field' => array( 'parent' => 'views_handler', ), 'views_handler_field_date' => array( 'parent' => 'views_handler_field', ), 'views_handler_field_boolean' => array( 'parent' => 'views_handler_field', ), 'views_handler_field_markup' => array( 'parent' => 'views_handler_field', ), 'views_handler_field_xss' => array( 'parent' => 'views_handler_field', 'file' => 'views_handler_field.inc', ), 'views_handler_field_url' => array( 'parent' => 'views_handler_field', ), 'views_handler_field_file_size' => array( 'parent' => 'views_handler_field', 'file' => 'views_handler_field.inc', ), 'views_handler_field_prerender_list' => array( 'parent' => 'views_handler_field', ), 'views_handler_field_numeric' => array( 'parent' => 'views_handler_field', ), // filter handlers 'views_handler_filter' => array( 'parent' => 'views_handler', ), 'views_handler_filter_equality' => array( 'parent' => 'views_handler_filter', ), 'views_handler_filter_string' => array( 'parent' => 'views_handler_filter', ), 'views_handler_filter_boolean_operator' => array( 'parent' => 'views_handler_filter', ), 'views_handler_filter_boolean_operator_string' => array( 'parent' => 'views_handler_filter_boolean_operator', ), 'views_handler_filter_in_operator' => array( 'parent' => 'views_handler_filter', ), 'views_handler_filter_numeric' => array( 'parent' => 'views_handler_filter', ), 'views_handler_filter_date' => array( 'parent' => 'views_handler_filter_numeric', ), 'views_handler_filter_many_to_one' => array( 'parent' => 'views_handler_filter_in_operator', ), // relationship handlers 'views_handler_relationship' => array( 'parent' => 'views_handler', ), // sort handlers 'views_handler_sort' => array( 'parent' => 'views_handler', ), 'views_handler_sort_formula' => array( 'parent' => 'views_handler_sort', ), 'views_handler_sort_date' => array( 'parent' => 'views_handler_sort', ), 'views_handler_sort_menu_hierarchy' => array( 'parent' => 'views_handler_sort', ), 'views_handler_sort_random' => array( 'parent' => 'views_handler_sort', ), ), ); } /** * @} */ /** * @defgroup views_join_handlers Views' join handlers * @{ * Handlers to tell Views how to join tables together. * Here is how you do complex joins: * * @code * class views_join_complex extends views_join { * // PHP 4 doesn't call constructors of the base class automatically from a * // constructor of a derived class. It is your responsibility to propagate * // the call to constructors upstream where appropriate. * function construct($table, $left_table, $left_field, $field, $extra = array(), $type = 'LEFT') { * parent::construct($table, $left_table, $left_field, $field, $extra, $type); * } * * function join($table, &$query) { * $output = parent::join($table, $query); * } * $output .= "AND foo.bar = baz.boing"; * return $output; * } * @endcode */ /** * A function class to represent a join and create the SQL necessary * to implement the join. * * This is the Delegation pattern. If we had PHP5 exclusively, we would * declare this an interface. * * Extensions of this class can be used to create more interesting joins. * * join definition * - table: table to join (right table) * - field: field to join on (right field) * - left_table: The table we join to * - left_field: The field we join to * - type: either LEFT (default) or INNER * - extra: Either a string that's directly added, or an array of items: * - - table: if not set, current table; if NULL, no table. This field can't * be set in the cached definition because it can't know aliases; this field * can only be used by realtime joins. * - - field: Field or formula * - - operator: defaults to = * - - value: Must be set. If an array, operator will be defaulted to IN. * - - numeric: If true, the value will not be surrounded in quotes. * - extra type: How all the extras will be combined. Either AND or OR. Defaults to AND. */ class views_join { /** * Construct the views_join object. */ function construct($table = NULL, $left_table = NULL, $left_field = NULL, $field = NULL, $extra = array(), $type = 'LEFT') { $this->extra_type = 'AND'; if (!empty($table)) { $this->table = $table; $this->left_table = $left_table; $this->left_field = $left_field; $this->field = $field; $this->extra = $extra; $this->type = strtoupper($type); } else if (!empty($this->definition)) { // if no arguments, construct from definition. // These four must exist or it will throw notices. $this->table = $this->definition['table']; $this->left_table = $this->definition['left_table']; $this->left_field = $this->definition['left_field']; $this->field = $this->definition['field']; if (!empty($this->definition['extra'])) { $this->extra = $this->definition['extra']; } if (!empty($this->definition['extra type'])) { $this->extra_type = strtoupper($this->definition['extra type']); } $this->type = !empty($this->definition['type']) ? strtoupper($this->definition['type']) : 'LEFT'; } } /** * Build the SQL for the join this object represents. */ function join($table, &$query) { $left = $query->get_table_info($this->left_table); $output = " $this->type JOIN {" . $this->table . "} $table[alias] ON $left[alias].$this->left_field = $table[alias].$this->field"; // Tack on the extra. if (isset($this->extra)) { if (is_array($this->extra)) { $extras = array(); foreach ($this->extra as $info) { $extra = ''; // Figure out the table name. Remember, only use aliases provided // if at all possible. $join_table = ''; if (!array_key_exists('table', $info)) { $join_table = $table['alias'] . '.'; } elseif (isset($info['table'])) { $join_table = $info['table'] . '.'; } // And now deal with the value and the operator. Set $q to // a single-quote for non-numeric values and the // empty-string for numeric values, then wrap all values in $q. $raw_value = $this->db_safe($info['value']); $q = (empty($info['numeric']) ? "'" : ''); if (is_array($raw_value)) { $operator = !empty($info['operator']) ? $info['operator'] : 'IN'; // Transform from IN() notation to = notation if just one value. if (count($raw_value) == 1) { $value = $q . array_shift($raw_value) . $q; $operator = $operator == 'NOT IN' ? '!=' : '='; } else { $value = "($q" . implode("$q, $q", $raw_value) . "$q)"; } } else { $operator = !empty($info['operator']) ? $info['operator'] : '='; $value = "$q$raw_value$q"; } $extras[] = "$join_table$info[field] $operator $value"; } if ($extras) { if (count($extras) == 1) { $output .= ' AND ' . array_shift($extras); } else { $output .= ' AND (' . implode(' ' . $this->extra_type . ' ', $extras) . ')'; } } } else if ($this->extra && is_string($this->extra)) { $output .= " AND ($this->extra)"; } } return $output; } /** * Ensure that input is db safe. We only check strings and ints tho * so something that needs floats in their joins needs to do their * own type checking. */ function db_safe($input) { if (is_array($input)) { $output = array(); foreach ($input as $value) { if (empty($info['numeric'])) { $output[] = db_escape_string($value); } else { $output[] = intval($value); } } } else if (empty($info['numeric'])) { $output = db_escape_string($input); } else { $output = intval($input); } return $output; } } /** * @} */ // Declare API compatibility on behalf of core modules: /** * Implementation of hook_views_api(). * * This one is used as the base to reduce errors when updating. */ function views_views_api() { return array( 'api' => 2, 'path' => drupal_get_path('module', 'views') . '/modules', ); } function book_views_api() { return views_views_api(); } function comment_views_api() { return views_views_api(); } function node_views_api() { return views_views_api(); } function poll_views_api() { return views_views_api(); } function profile_views_api() { return views_views_api(); } function search_views_api() { return views_views_api(); } function statistics_views_api() { return views_views_api(); } function system_views_api() { return views_views_api(); } function taxonomy_views_api() { return views_views_api(); } function translation_views_api() { return views_views_api(); } function upload_views_api() { return views_views_api(); } function user_views_api() { return views_views_api(); }