PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@@ -0,0 +1,47 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Live\ProfileSummary;
use Piwik\Piwik;
use Piwik\View;
/**
* Class ImportantVisits
*
* @api
*/
class ImportantVisits extends ProfileSummaryAbstract
{
/**
* @inheritdoc
*/
public function getName()
{
return Piwik::translate('General_Summary');
}
/**
* @inheritdoc
*/
public function render()
{
$viewVisits = new View('@Live/_profileSummaryVisits.twig');
$viewVisits->visitorData = $this->profile;
return $viewVisits->render();
}
/**
* @inheritdoc
*/
public function getOrder()
{
return 30;
}
}

View File

@@ -0,0 +1,67 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Live\ProfileSummary;
/**
* Class ProfileSummaryAbstract
*
* This class can be implemented in a plugin to provide a new profile summary
*
* @api
*/
abstract class ProfileSummaryAbstract
{
/**
* Visitor profile information
*
* @var array
*/
protected $profile = [];
/**
* Set profile information
*
* @param array $profile
*/
public function setProfile($profile)
{
$this->profile = $profile;
}
/**
* Returns the unique ID
*
* @return string
*/
public function getId()
{
return static::class;
}
/**
* Returns the descriptive name
*
* @return string
*/
abstract function getName();
/**
* Renders and returns the summary
*
* @return string
*/
abstract function render();
/**
* Returns order indicator used to sort all summaries before displaying them
*
* @return int
*/
abstract function getOrder();
}

View File

@@ -0,0 +1,53 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Live\ProfileSummary;
use Piwik\API\Request;
use Piwik\Common;
use Piwik\Piwik;
use Piwik\View;
use Piwik\Plugins\Goals\API as APIGoals;
/**
* Class ProfileSummaryAbstract
*
* This class can be implemented in a plugin to provide a new profile summary
*
* @api
*/
class Summary extends ProfileSummaryAbstract
{
/**
* @inheritdoc
*/
public function getName()
{
return Piwik::translate('General_Summary');
}
/**
* @inheritdoc
*/
public function render()
{
$idSite = Common::getRequestVar('idSite', null, 'int');
$view = new View('@Live/_profileSummary.twig');
$view->goals = Request::processRequest('Goals.getGoals', ['idSite' => $idSite, 'filter_limit' => '-1'], $default = []);
$view->visitorData = $this->profile;
return $view->render();
}
/**
* @inheritdoc
*/
public function getOrder()
{
return 0;
}
}