Piwik\DataTable::enableRecursiveFilters PHP Метод

enableRecursiveFilters() публичный Метод

Enables recursive filtering. If this method is called then the {@link filter()} method will apply filters to every subtable in addition to this instance.
    public function enableRecursiveFilters()
    {
        $this->enableRecursiveFilters = true;
    }

Usage Example

 /**
  * Creates a DataTable for one record from an archive data row.
  *
  * @see makeFromBlobRow
  *
  * @param array $blobRow
  * @return DataTable
  */
 private function makeDataTableFromSingleBlob($blobRow)
 {
     $recordName = reset($this->dataNames);
     if ($this->idSubtable !== null) {
         $recordName .= '_' . $this->idSubtable;
     }
     if (!empty($blobRow[$recordName])) {
         $table = DataTable::fromSerializedArray($blobRow[$recordName]);
     } else {
         $table = new DataTable();
     }
     // set table metadata
     $table->setMetadataValues(DataCollection::getDataRowMetadata($blobRow));
     if ($this->expandDataTable) {
         $table->enableRecursiveFilters();
         $this->setSubtables($table, $blobRow);
     }
     return $table;
 }