当前位置: 首页>>代码示例>>PHP>>正文


PHP Report::getDimension方法代码示例

本文整理汇总了PHP中Piwik\Plugin\Report::getDimension方法的典型用法代码示例。如果您正苦于以下问题:PHP Report::getDimension方法的具体用法?PHP Report::getDimension怎么用?PHP Report::getDimension使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Piwik\Plugin\Report的用法示例。


在下文中一共展示了Report::getDimension方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: manipulateDataTable

 /**
  * Adds ratio metrics if possible.
  *
  * @param  DataTable $dataTable
  * @return DataTable
  */
 protected function manipulateDataTable($dataTable)
 {
     if (!empty($this->report) && !$this->report->getDimension() && !$this->isAllMetricsReport()) {
         // we currently do not calculate the total value for reports having no dimension
         return $dataTable;
     }
     $this->totals = array();
     $firstLevelTable = $this->makeSureToWorkOnFirstLevelDataTable($dataTable);
     $metricsToCalculate = Metrics::getMetricIdsToProcessReportTotal();
     $metricNames = array();
     foreach ($metricsToCalculate as $metricId) {
         $metricNames[$metricId] = Metrics::getReadableColumnName($metricId);
     }
     foreach ($firstLevelTable->getRows() as $row) {
         $columns = $row->getColumns();
         foreach ($metricNames as $metricId => $metricName) {
             $this->sumColumnValueToTotal($columns, $metricId, $metricName);
         }
     }
     $dataTable->setMetadata('totals', $this->totals);
     return $dataTable;
 }
开发者ID:CaptainSharf,项目名称:SSAD_Project,代码行数:28,代码来源:ReportTotalsCalculator.php

示例2: filter

 /**
  * See {@link AddSegmentBySegmentValue}.
  *
  * @param DataTable $table
  * @return int The number of deleted rows.
  */
 public function filter($table)
 {
     if (empty($this->report) || !$table->getRowsCount()) {
         return;
     }
     $dimension = $this->report->getDimension();
     if (empty($dimension)) {
         return;
     }
     $segments = $dimension->getSegments();
     if (empty($segments)) {
         return;
     }
     /** @var \Piwik\Plugin\Segment $segment */
     $segment = reset($segments);
     $segmentName = $segment->getSegment();
     foreach ($table->getRows() as $row) {
         $value = $row->getMetadata('segmentValue');
         $filter = $row->getMetadata('segment');
         if ($value !== false && $filter === false) {
             $row->setMetadata('segment', sprintf('%s==%s', $segmentName, urlencode($value)));
         }
     }
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:30,代码来源:AddSegmentBySegmentValue.php

示例3: isPivotingReportBySubtableSupported

 /**
  * Returns true if pivoting by subtable is supported for a report. Will return true if the report
  * has a subtable dimension and if the subtable dimension is different than the report's dimension.
  *
  * @param Report $report
  * @return bool
  */
 public static function isPivotingReportBySubtableSupported(Report $report)
 {
     return self::areDimensionsNotEqualAndNotNull($report->getSubtableDimension(), $report->getDimension());
 }
开发者ID:bossrabbit,项目名称:piwik,代码行数:11,代码来源:PivotByDimension.php


注:本文中的Piwik\Plugin\Report::getDimension方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。