From CMS version 010.001.104.000, the individual newsletter statistics make it possible to realize your own implementations via your own programming in addition to the statistics available as standard. In this way, for example, ratings can be carried out for a newsletter or other advanced statistics functions can be implemented.
The individual statistics can be used by storing a script with the file name wNewsletterStatisticExtended.php in the specified path in the global project (see source code example). Here you define your own script code to implement individual newsletter statistics.
As soon as this file is stored, the click statistics are displayed in the "Click statistics" tab and the individual statistics in the "Extended statistics" tab.
An example source code of the script can be found below:
require_once($_SERVER['DOCUMENT_ROOT'].'/weblication/grid.php');
if(wUserCur::getType() == 'standard' || wUserCur::getType() == 'admin'){
$action = wRequest::getParameter('action');
$path = wRequest::getParameter('path');
//print '<h4>Newsletter: '.$path.'</h4>';
print '<h4>Individuelle Newsletter-Statistik</h4>';
print '<p>Hier stehen Ihre individuellen Statistiken...</p>';
}
Below you can see what the script output can look like in the extended statistics screen: