Commanding Chaos for Coworking, Open Source and Creative Communities

views

Visualization API | drupal.org

Thu, 06/06/2013 - 06:27 -- rprice

Visualization is a module for Drupal 7.x that provides a solid and easy accessible way to visualize data. It provides a theme hook that takes a data array and some options and will then render a chart in-place. It also provides a Views Display plugin so that users can easily visualize data retrieved through Views. The different charting libraries are pluggable through the CTools Plugin system; the module provides an implementation for the Google Visualization API and Highcharts.

visualization
maps
views
data
chart
api
drupaleasypodcast
ctools

VDC Update and Announcement | Angry Donuts

Tue, 10/02/2012 - 11:53 -- rprice

We will open the core sandbox and meta issue soon, once the above dependencies are resolved or worked around, so that contributors can begin to explore what it means for Views to be in core.

We are planning one last major sprint before feature freeze in the week preceding BADCamp. (Pantheon will be hosting this sprint; more details soon.) The BADCamp sprint will be our chance to coordinate our final push to make Views core-ready. Once Views is committed to core, all further work will take place in our sandbox and the Drupal core issue queue.

merlinofchaos
core
drupal8
views
drupaleasypodcast

7 - views and contextual filters with entity reference field - Drupal Answers

Fri, 06/29/2012 - 08:40 -- rprice

the 'right way' to do this is to work with entity approach and avoid the ['und'][0] business but I never got it to work in views. i.e. code $node=menu_get_object(); $field = field_get_items('node', $node, 'field_event_artistref'); return field_view_value('node', $node, 'field_name', $field['target_id']); code. Here's a link I was following on the topic computerminds.co.uk/articles/…

nodereference
arguments
php
tips
views
drupaleasypodcast

Views Without Views… Introducing "Relevant Content Bean" | ThinkShout

Mon, 06/18/2012 - 08:14 -- rprice

The Relevent Content Bean essentially provides your site administrators with a light-weight query builder (build on top of EntityFieldQuery) for creating blocks that contain dynamically-filtered listings of nodes. Like Views, Relevant Content Bean allows you to select the number of node results to display, apply filters to the list of returned nodes, change the display options for these nodes, and manage the sort order of your results.

entityfieldquery
views
bean
drupaleasypodcast

Views filters populate | drupal.org

Thu, 06/14/2012 - 06:56 -- rprice

use one exposed string filter to search on multiple fields.

Bear in mind, that, for now, only populates STRING exposed filters, so those filters that take an array (options) or special types won't work, although it may not be difficult to extend it.

...you have "First Name", "Second Name" and "Last name" set up as node or user's fields and you'd like to use one expose filter to search on any of those fields.

views
search
drupaleasypodcast

Filter/Search on multiple fields with Views 3.x | Midwestern Mac, LLC

Thu, 06/07/2012 - 12:44 -- rprice

Use the Computed Field module to create yet another field stored in the database, combining the two (or more) fields you want to search, then expose a filter for that field instead of both of the individual fields. (I don't like this because it duplicates content/storage, and involves an extra module to do so).

search
database
tips
views
drupaleasypodcast

How to Display One Value from Two Fields in a Drupal View | Urban Insight Blog

Thu, 06/07/2012 - 11:47 -- rprice

Using Empty Text

There is a situation where one field of a Drupal View needs to pull its content from two fields (aka cck fields) of a node. In my case, they were default author field and a custom field called contributor. This example uses Drupal 7 and Views 3.

If optional the contributor field was not empty, it would display the contributor and skip the author field. If there was no contributor, then the author, which cannot be optional, would be displayed by default.

views
drupaleasypodcast

Building Energy.gov without Views.

Thu, 05/03/2012 - 07:50 -- rprice

In the end, one argument against using Views for our content queries overrode all others: we wanted our client to use Views. Our client had specified that once they received the sites, their own developers would be using Views to build blocks and pages themselves. We knew that if we worked in Views for our own work, the Views we created would eventually be exposed to them, which leads to possibilities of regression and error. We wanted our core querying functionality to continue to function without concern that it might be tampered with.

government
tutorial
code
drupaleasypodcast
views

EntityFieldQuery: Let Drupal Do The Heavy Lifting (Pt 2)

Thu, 05/03/2012 - 07:35 -- rprice

wondering why I wouldn't just build this in Views. Indeed, this might look a bit masochistic if you're used to Views. However, there are a few things to consider:
EntityFieldQuery is core. If you are interested in keeping your installation as lean as possible, this is something to consider. Views is a contributed module, and so it automatically adds size and overhead to your Drupal install.

view_modes
views
arguments
tutorial
code
modules
entityfieldquery
drupaleasypodcast

Pages

Subscribe to RSS - views