Skip to content
Extraits de code Groupes Projets
Valider efb4ef58 rédigé par diosmosis's avatar diosmosis
Parcourir les fichiers

Miscellaneous tweaks to config.

parent 82a36f16
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -34,7 +34,7 @@ require_once PIWIK_INCLUDE_PATH . '/core/Common.php';
* ### The Basics
*
* DataTables consist of rows and each row consists of columns. A column value can be
* be a numeric, string or array.
* be numeric, a string or an array.
*
* Every row has an ID. The ID is either the index of the row or [ID_SUMMARY_ROW](#ID_SUMMARY_ROW).
*
......@@ -97,9 +97,9 @@ require_once PIWIK_INCLUDE_PATH . '/core/Common.php';
*
* ### Learn more
*
* - **ArchiveProcessor** — to learn how DataTables are persisted.
* - **DataTable\Renderer** — to learn how DataTable data is exported to XML, JSON, etc.
* - **DataTable\Filter** — to see all core Filters.
* - **[ArchiveProcessor](#)** — to learn how DataTables are persisted.
* - **[DataTable\Renderer](#)** — to learn how DataTable data is exported to XML, JSON, etc.
* - **[DataTable\Filter](#)** — to see all core Filters.
*
* ### Examples
*
......
......@@ -12,16 +12,17 @@
namespace Piwik\View;
/**
* Rendering interface for View and Piwik_Visualization
* Rendering interface for all "view" types.
*
* @package Piwik
* @api
*/
interface ViewInterface
{
/**
* Outputs the data.
* Outputs data.
*
* @return mixed (image, array, html...)
*/
function render();
}
}
\ No newline at end of file
......@@ -21,9 +21,8 @@ use Piwik\Common;
*/
class RequestConfig
{
/**
* The list of ViewDataTable properties that are 'Client Side Parameters'.
* The list of request parameters that are 'Client Side Parameters'.
*/
public $clientSideParameters = array(
'filter_excludelowpop',
......@@ -222,5 +221,4 @@ class RequestConfig
return $method;
}
}
}
\ No newline at end of file
......@@ -168,8 +168,7 @@ class Controller extends \Piwik\Plugin\ControllerAdmin
$logDataPurger->purgeData();
}
if ($settings['delete_reports_enable']) {
$reportsPurger = ReportsPurger::make(
$settings, PrivacyManager::getAllMetricsToKeep());
$reportsPurger = ReportsPurger::make($settings, PrivacyManager::getAllMetricsToKeep());
$reportsPurger->purgeData(true);
}
}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter