~spreadubuntu/spreadubuntu/devel-drupal6

« back to all changes in this revision

Viewing changes to modules/cck/includes/views/handlers/content_handler_filter_float.inc

  • Committer: ruben
  • Date: 2009-06-08 09:38:49 UTC
  • Revision ID: ruben@captive-20090608093849-s1qtsyctv2vwp1x1
SpreadUbuntu moving to Drupal6. Based on ubuntu-drupal theme and adding our modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
// $Id: content_handler_filter_float.inc,v 1.1.2.2 2008/10/04 13:14:21 karens Exp $
 
3
 
 
4
/**
 
5
 * @file
 
6
 * The subclass simply adds properties,
 
7
 * for field-specific subclasses to use if they need to.
 
8
 */
 
9
class content_handler_filter_float extends views_handler_filter_float {
 
10
  var $content_field;
 
11
 
 
12
  function construct() {
 
13
    parent::construct();
 
14
    $this->content_field = content_fields($this->definition['content_field_name']);
 
15
    $this->additional_fields = $this->definition['additional fields'];
 
16
  }
 
17
}
 
 
b'\\ No newline at end of file'