You are here

function ExcelRange::__construct in Feeds Excel 6

Same name and namespace in other branches
  1. 7 includes/ExcelRange.inc \ExcelRange::__construct()

Init object.

File

includes/ExcelRange.inc, line 26

Class

ExcelRange

Code

function __construct($range_expression, $max = NULL) {
  if (isset($max)) {
    $this->max_rows = $max['rows'];
    $this->max_cols = $max['cols'];
  }
  $this
    ->expression_to_ranges($range_expression);
}