![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/anfangola.com/wp-content/plugins/matomo/app/plugins/Actions/ |
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later * */ namespace Piwik\Plugins\Actions; /** * Class encapsulating logic to process Day/Period Archiving for the Actions reports * */ class Archiver extends \Piwik\Plugin\Archiver { const DOWNLOADS_RECORD_NAME = 'Actions_downloads'; const OUTLINKS_RECORD_NAME = 'Actions_outlink'; const PAGE_TITLES_RECORD_NAME = 'Actions_actions'; const SITE_SEARCH_RECORD_NAME = 'Actions_sitesearch'; const SITE_SEARCH_CATEGORY_RECORD_NAME = 'Actions_SiteSearchCategories'; const PAGE_URLS_RECORD_NAME = 'Actions_actions_url'; const METRIC_PAGEVIEWS_RECORD_NAME = 'Actions_nb_pageviews'; const METRIC_UNIQ_PAGEVIEWS_RECORD_NAME = 'Actions_nb_uniq_pageviews'; const METRIC_SUM_TIME_RECORD_NAME = 'Actions_sum_time_generation'; const METRIC_HITS_TIMED_RECORD_NAME = 'Actions_nb_hits_with_time_generation'; const METRIC_DOWNLOADS_RECORD_NAME = 'Actions_nb_downloads'; const METRIC_UNIQ_DOWNLOADS_RECORD_NAME = 'Actions_nb_uniq_downloads'; const METRIC_OUTLINKS_RECORD_NAME = 'Actions_nb_outlinks'; const METRIC_UNIQ_OUTLINKS_RECORD_NAME = 'Actions_nb_uniq_outlinks'; const METRIC_SEARCHES_RECORD_NAME = 'Actions_nb_searches'; const METRIC_KEYWORDS_RECORD_NAME = 'Actions_nb_keywords'; }