Lines Matching refs:cell

170             $this->cell($data['hits'][$by][$idx]['count']);
171 … $this->cell($this->pct($data['hits'][$by][$idx]['count'], $data['hits']['all']['count']));
173 $this->cell($data['media'][$by][$idx]['count']);
174 … $this->cell($this->pct($data['media'][$by][$idx]['count'], $data['media']['all']['count']));
176 $this->cell($data['page'][$by][$idx]['count']);
177 … $this->cell($this->pct($data['page'][$by][$idx]['count'], $data['page']['all']['count']));
179 $this->cell($data['hits'][$by][$idx]['visitor']);
180 … $this->cell($this->pct($data['hits'][$by][$idx]['visitor'], $data['hits']['all']['visitor']));
182 $this->cell(filesize_h($data['hits'][$by][$idx]['bytes']));
183 … $this->cell($this->pct($data['hits'][$by][$idx]['bytes'], $data['hits']['all']['bytes']));
209 $this->cell($data['page']['all']['count'] + $data['media']['all']['count'], 2);
214 $this->cell($data['media']['all']['count'], 2);
219 $this->cell($data['page']['all']['count'], 2);
224 $this->cell($data['page']['all']['visitor'], 2);
229 $this->cell(filesize_h($data['page']['all']['bytes']), 2);
240 $this->cell($this->log->avg($data['hits']['hour'], 'count'));
241 $this->cell($this->log->max($data['hits']['hour'], 'count'));
246 $this->cell($this->log->avg($data['hits']['day'], 'count'));
247 $this->cell($this->log->max($data['hits']['day'], 'count'));
252 $this->cell($this->log->avg($data['media']['day'], 'count'));
253 $this->cell($this->log->max($data['media']['day'], 'count'));
258 $this->cell($this->log->avg($data['page']['day'], 'count'));
259 $this->cell($this->log->max($data['page']['day'], 'count'));
264 $this->cell(filesize_h($this->log->avg($data['hits']['day'], 'bytes')));
265 $this->cell(filesize_h($this->log->max($data['hits']['day'], 'bytes')));
275 $this->cell($count, 2);
325 $this->cell($month, 1, false); // Month
327 $this->cell(round($this->log->avg($data['hits']['day'] ?? [], 'count'))); // Hits
328 $this->cell(round($this->log->avg($data['media']['day'] ?? [], 'count'))); // Files
329 $this->cell(round($this->log->avg($data['page']['day'] ?? [], 'count'))); // Pages
330 $this->cell(round($this->log->avg($data['hits']['day'] ?? [], 'visitor'))); // Visits
332 $this->cell($data['hits']['all']['count']); // Hits
333 $this->cell($data['media']['all']['count']); // Files
334 $this->cell($data['page']['all']['count']); // Pages
335 $this->cell($data['hits']['all']['visitor']); // Visitors
336 $this->cell(filesize_h($data['hits']['all']['bytes'])); // kBytes
394 $this->cell($row);
396 $this->cell($val);
397 $this->cell($this->pct($count, $max));
442 $this->cell($data, $span, false);
452 private function cell($data = '', $span = 1, $number = true) function in helper_plugin_statdisplay_table