LogQueryBuilder
3 months ago
Actions.php
6 months ago
ArchiveSelector.php
1 month ago
ArchiveTableCreator.php
1 month ago
ArchiveTableDao.php
1 month ago
ArchiveWriter.php
1 month ago
ArchivingDbAdapter.php
1 year ago
LogAggregator.php
1 month ago
LogQueryBuilder.php
6 months ago
LogTableTemporary.php
2 years ago
Model.php
1 month ago
RawLogDao.php
6 months ago
TableMetadata.php
1 year ago
LogTableTemporary.php
40 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | */ |
| 9 | namespace Piwik\DataAccess; |
| 10 | |
| 11 | use Piwik\Tracker\LogTable; |
| 12 | class LogTableTemporary extends LogTable |
| 13 | { |
| 14 | private $tableName; |
| 15 | public function __construct($name) |
| 16 | { |
| 17 | $this->tableName = $name; |
| 18 | } |
| 19 | public function setName($name) |
| 20 | { |
| 21 | $this->tableName = $name; |
| 22 | } |
| 23 | public function getName() |
| 24 | { |
| 25 | return $this->tableName; |
| 26 | } |
| 27 | public function getIdColumn() |
| 28 | { |
| 29 | return 'idvist'; |
| 30 | } |
| 31 | public function getColumnToJoinOnIdVisit() |
| 32 | { |
| 33 | return 'idvisit'; |
| 34 | } |
| 35 | public function getPrimaryKey() |
| 36 | { |
| 37 | return array('idvisit'); |
| 38 | } |
| 39 | } |
| 40 |