class clientsQuery in Web Service Clients 7
Same name and namespace in other branches
- 6 clients/clients_views/clientsQuery.inc \clientsQuery
For now this is an extension of the views_query, I'm not sure if it should remain so.
Hierarchy
- class \views_object
- class \views_plugin
- class \views_plugin_query
- class \views_plugin_query_default
- class \clientsQuery
- class \views_plugin_query_default
- class \views_plugin_query
- class \views_plugin
Expanded class hierarchy of clientsQuery
2 string references to 'clientsQuery'
- clients_views_views_data in clients/
clients_views/ clients_views.module - clients_views_views_plugins in clients/
clients_views/ clients_views.module - Implementation of hook_views_plugins
File
- clients/
clients_views/ clientsQuery.inc, line 12 - Using devseed extendr module as a base... http://devseed.svn.cvsdude.com/sandbox/drupal-6/extendr/
View source
class clientsQuery extends views_plugin_query_default {
var $args = array();
var $method = '';
// possibly remove?
function init($table, $field) {
$this->args['extras'] = array();
$this->method = '';
// don't think default method applies to clients
}
/**
* Generate queries
*
* - Fields don't matter here, they are dealt with purely at the display level.
*
* @param $get_count
* We don't use this at all as the flickr api returns this automatically.
*/
function query($get_count = FALSE) {
}
/**
* @todo make this lie less.
*/
function ensure_table() {
return TRUE;
}
function set_method($m, $a) {
$this->method = $m;
$this->args += $a;
}
/**
* @todo Investigate adding fields dynamically from response - e.g. remote cck.
*
* function add_field($table, $field, $alias = '', $params = NULL) {
* $extras = array(
* 'date_upload' => 'dateupload',
* );
* if (array_key_exists($field, $extras)) {
* $this->args['extras'][] = $field;
* $alias = $extras[$field];
* }
* return parent::add_field($table, $field, $alias, $params);
* }
*/
/**
* Execute a call
*/
function execute(&$view) {
$this->args['extras'] = implode(',', $this->args['extras']);
if (!empty($view->pager['items_per_page'])) {
$this->args['per_page'] = $view->pager['items_per_page'];
}
else {
$this->args['per_page'] = 500;
// upper limit?
}
// What page was requested:
$pager_page_array = isset($_GET['page']) ? explode(',', $_GET['page']) : array();
if (!empty($pager_page_array[$view->pager['element']])) {
$page = intval($pager_page_array[$view->pager['element']]);
$this->args['page'] = $page;
}
$resource = clients_resource_load($view->base_table);
// override $resource with $this->args
// pass params back to resource
$args = array();
/**
* matches view argument names ($view->argument) to
* argument input values ($view->args)
*/
foreach (array_keys($view->argument) as $key => $val) {
$args[$val] = $view->args[$key];
}
if ($view->query->pager->options['items_per_page']) {
$args['limit'] = $view->query->pager->options['items_per_page'];
}
if ($view->query->pager->options['offset']) {
$args['offset'] = $view->query->pager->options['offset'];
}
clients_setparams($resource, $args);
$result = clients_call($resource);
$view->result = $result[0]->data;
/**
* Removed a bunch of pager code here - may need to go back in though should probably be handled in clients module
*/
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
clientsQuery:: |
property | |||
clientsQuery:: |
property | |||
clientsQuery:: |
function |
@todo make this lie less. Overrides views_plugin_query_default:: |
||
clientsQuery:: |
function |
Execute a call Overrides views_plugin_query_default:: |
||
clientsQuery:: |
function |
Constructor; Create the basic query object and fill with default values. Overrides views_plugin_query_default:: |
||
clientsQuery:: |
function |
Generate queries Overrides views_plugin_query_default:: |
||
clientsQuery:: |
function | |||
views_object:: |
public | property | Handler's definition. | |
views_object:: |
public | property | Except for displays, options for the object will be held here. | 1 |
views_object:: |
function | Collect this handler's option definition and alter them, ready for use. | ||
views_object:: |
public | function | Views handlers use a special construct function. | 4 |
views_object:: |
public | function | Destructor. | 2 |
views_object:: |
public | function | 1 | |
views_object:: |
public | function | ||
views_object:: |
public | function | Always exports the option, regardless of the default value. | |
views_object:: |
public | function | Set default options on this object. | 1 |
views_object:: |
public | function | Set default options. | |
views_object:: |
public | function | Let the handler know what its full definition is. | |
views_object:: |
public | function | Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away. | |
views_object:: |
public | function | Unpack a single option definition. | |
views_object:: |
public | function | Unpacks each handler to store translatable texts. | |
views_object:: |
public | function | ||
views_plugin:: |
public | property | The current used views display. | |
views_plugin:: |
public | property | The plugin name of this plugin, for example table or full. | |
views_plugin:: |
public | property | The plugin type of this plugin, for example style or query. | |
views_plugin:: |
public | property |
The top object of a view. Overrides views_object:: |
1 |
views_plugin:: |
public | function | Provide a list of additional theme functions for the theme info page. | |
views_plugin:: |
public | function | Return the human readable name of the display. | |
views_plugin:: |
public | function | Provide a full list of possible theme templates used by this style. | |
views_plugin:: |
public | function | Validate that the plugin is correct and can be saved. | 3 |
views_plugin_query:: |
public | function |
Validate the options form. Overrides views_plugin:: |
|
views_plugin_query:: |
public | function | Render the pager, if necessary. | |
views_plugin_query:: |
public | function | Control how all WHERE and HAVING groups are put together. | |
views_plugin_query:: |
public | function | Set a LIMIT on the query, specifying a maximum number of results. | |
views_plugin_query:: |
public | function | Set an OFFSET on the query, specifying a number of results to skip | |
views_plugin_query:: |
public | function | Create a new grouping for the WHERE or HAVING clause. | |
views_plugin_query:: |
public | function |
Returns the summary of the settings in the display. Overrides views_plugin:: |
|
views_plugin_query_default:: |
public | property | A flag as to whether or not to make the primary field distinct. | |
views_plugin_query_default:: |
public | property | An array of fields. | |
views_plugin_query_default:: |
public | property | An array mapping table aliases and field names to field aliases. | |
views_plugin_query_default:: |
public | property | Should this query be optimized for counts, for example no sorts. | |
views_plugin_query_default:: |
public | property | A simple array of group by clauses. | |
views_plugin_query_default:: |
public | property | The default operator to use when connecting the WHERE groups. May be AND or OR. | |
views_plugin_query_default:: |
public | property | ||
views_plugin_query_default:: |
public | property | An array of sections of the HAVING query. Each section is in itself an array of pieces and a flag as to whether or not it should be AND or OR. | |
views_plugin_query_default:: |
public | property | The table header to use for tablesort. This matters because tablesort needs to modify the query and needs the header. | |
views_plugin_query_default:: |
public | property | Is the view marked as not distinct. | |
views_plugin_query_default:: |
public | property | A simple array of order by clauses. | |
views_plugin_query_default:: |
public | property |
The current used pager plugin. Overrides views_plugin_query:: |
|
views_plugin_query_default:: |
public | property | Defines the distinct type. | |
views_plugin_query_default:: |
public | property | Holds an array of relationships, which are aliases of the primary table that represent different ways to join the same table in. | |
views_plugin_query_default:: |
public | property | Holds an array of tables and counts added so that we can create aliases. | |
views_plugin_query_default:: |
public | property | A list of tables in the order they should be added, keyed by alias. | |
views_plugin_query_default:: |
public | property | Query tags which will be passed over to the dbtng query object. | |
views_plugin_query_default:: |
public | property | An array of sections of the WHERE query. Each section is in itself an array of pieces and a flag as to whether or not it should be AND or OR. | |
views_plugin_query_default:: |
public | function | Add a field to the query table, possibly with an alias. This will automatically call ensure_table to make sure the required table exists, *unless* $table is unset. | |
views_plugin_query_default:: |
public | function | Add a simple GROUP BY clause to the query. | |
views_plugin_query_default:: |
public | function | Add a simple HAVING clause to the query. | |
views_plugin_query_default:: |
public | function | Add a complex HAVING clause to the query. | |
views_plugin_query_default:: |
public | function | Add an ORDER BY clause to the query. | |
views_plugin_query_default:: |
public | function | A relationship is an alternative endpoint to a series of table joins. | |
views_plugin_query_default:: |
public | function |
Add a signature to the query, if such a thing is feasible. Overrides views_plugin_query:: |
|
views_plugin_query_default:: |
public | function | Add a table to the query, ensuring the path exists. | |
views_plugin_query_default:: |
public | function | Adds a query tag to the sql object. | |
views_plugin_query_default:: |
public | function | Add a simple WHERE clause to the query. | |
views_plugin_query_default:: |
public | function | Add a complex WHERE clause to the query. | |
views_plugin_query_default:: |
public | function | Fix a join to adhere to the proper relationship. | |
views_plugin_query_default:: |
public | function |
Let modules modify the query just prior to finalizing it. Overrides views_plugin_query:: |
|
views_plugin_query_default:: |
public | function |
Builds the necessary info to execute the query. Overrides views_plugin_query:: |
|
views_plugin_query_default:: |
public | function | Construct the "WHERE" or "HAVING" part of the query. | |
views_plugin_query_default:: |
public | function | Remove all fields that may've been added. | |
views_plugin_query_default:: |
public | function | Build fields array. | |
views_plugin_query_default:: |
public | function | Make sure that the specified table can be properly linked to the primary table in the JOINs. This function uses recursion. If the tables needed to complete the path back to the primary table are not in the query they will be added, but additional… | |
views_plugin_query_default:: |
public | function |
Get aggregation info for group by queries. Overrides views_plugin_query:: |
|
views_plugin_query_default:: |
public | function | Returns the alias for the given field added to $table. | |
views_plugin_query_default:: |
public | function | Retrieve join data from the larger join data cache. | |
views_plugin_query_default:: |
public | function |
Returns the according entity objects for the given query results. Overrides views_plugin_query:: |
|
views_plugin_query_default:: |
public | function | Get the information associated with a table. | |
views_plugin_query_default:: |
public | function | Get the arguments attached to the WHERE and HAVING clauses of this query. | |
views_plugin_query_default:: |
public | function | ||
views_plugin_query_default:: |
public | function |
Add settings for the ui. Overrides views_plugin_query:: |
|
views_plugin_query_default:: |
public | function |
Special submit handling. Overrides views_plugin_query:: |
|
views_plugin_query_default:: |
public | function |
Information about options for all kinds of purposes will be held here. Overrides views_object:: |
|
views_plugin_query_default:: |
public | function | Generates a unique placeholder used in the db query. | |
views_plugin_query_default:: |
public | function | Add a table to the query without ensuring the path. | |
views_plugin_query_default:: |
public | function | Set what field the query will count() on for paging. | |
views_plugin_query_default:: |
public | function | Set the view to be distinct. | |
views_plugin_query_default:: |
public | function | Set the table header. |