* @copyright 2007-2011 PrestaShop SA
* @version Release: $Revision: 6594 $
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
if (!defined('_CAN_LOAD_FILES_'))
exit;
class StatsPersonalInfos extends ModuleGraph
{
private $_html = '';
private $_query = '';
private $_option;
function __construct()
{
$this->name = 'statspersonalinfos';
$this->tab = 'analytics_stats';
$this->version = 1.0;
$this->author = 'PrestaShop';
$this->need_instance = 0;
parent::__construct();
$this->displayName = $this->l('Registered Customer Info');
$this->description = $this->l('Display characteristics such as gender and age.');
}
public function install()
{
return (parent::install() AND $this->registerHook('AdminStatsModules'));
}
public function hookAdminStatsModules($params)
{
$this->_html = '
';
return $this->_html;
}
public function setOption($option, $layers = 1)
{
$this->_option = $option;
}
protected function getData($layers)
{
global $cookie;
switch ($this->_option)
{
case 'gender':
$this->_titles['main'] = $this->l('Gender distribution');
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS('
SELECT c.`id_gender`, COUNT(c.`id_customer`) AS total
FROM `'._DB_PREFIX_.'customer` c
GROUP BY c.`id_gender`');
$gender = array(1 => $this->l('Male'), 2 => $this->l('Female'), 9 => $this->l('Unknown'), 0 => $this->l('Unknown'));
foreach ($result as $row)
{
$this->_values[] = $row['total'];
$this->_legend[] = $gender[$row['id_gender']];
}
break;
case 'age':
$this->_titles['main'] = $this->l('Age ranges');
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT COUNT(c.`id_customer`) as total
FROM `'._DB_PREFIX_.'customer` c
WHERE (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) < 18
AND c.`birthday` IS NOT NULL');
if (isset($result['total']) AND $result['total'])
{
$this->_values[] = $result['total'];
$this->_legend[] = $this->l('0-18 years old');
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT COUNT(c.`id_customer`) as total
FROM `'._DB_PREFIX_.'customer` c
WHERE (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) >= 18
AND (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) < 25
AND c.`birthday` IS NOT NULL');
if (isset($result['total']) AND $result['total'])
{
$this->_values[] = $result['total'];
$this->_legend[] = $this->l('18-24 years old');
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT COUNT(c.`id_customer`) as total
FROM `'._DB_PREFIX_.'customer` c
WHERE (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) >= 25
AND (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) < 35
AND c.`birthday` IS NOT NULL');
if (isset($result['total']) AND $result['total'])
{
$this->_values[] = $result['total'];
$this->_legend[] = $this->l('25-34 years old');
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT COUNT(c.`id_customer`) as total
FROM `'._DB_PREFIX_.'customer` c
WHERE (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) >= 35
AND (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) < 50
AND c.`birthday` IS NOT NULL');
if (isset($result['total']) AND $result['total'])
{
$this->_values[] = $result['total'];
$this->_legend[] = $this->l('35-49 years old');
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT COUNT(c.`id_customer`) as total
FROM `'._DB_PREFIX_.'customer` c
WHERE (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) >= 50
AND (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) < 60
AND c.`birthday` IS NOT NULL');
if (isset($result['total']) AND $result['total'])
{
$this->_values[] = $result['total'];
$this->_legend[] = $this->l('50-59 years old');
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT COUNT(c.`id_customer`) as total
FROM `'._DB_PREFIX_.'customer` c
WHERE (YEAR(CURDATE()) - YEAR(c.`birthday`)) - (RIGHT(CURDATE(), 5) < RIGHT(c.`birthday`, 5)) >= 60
AND c.`birthday` IS NOT NULL');
if (isset($result['total']) AND $result['total'])
{
$this->_values[] = $result['total'];
$this->_legend[] = $this->l('60 years old and more');
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT COUNT(c.`id_customer`) as total
FROM `'._DB_PREFIX_.'customer` c
WHERE c.`birthday` IS NULL');
if (isset($result['total']) AND $result['total'])
{
$this->_values[] = $result['total'];
$this->_legend[] = $this->l('Unknown');
}
break;
case 'country':
$this->_titles['main'] = $this->l('Country distribution');
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS('
SELECT cl.`name`, COUNT(c.`id_country`) AS total
FROM `'._DB_PREFIX_.'address` a
LEFT JOIN `'._DB_PREFIX_.'country` c ON a.`id_country` = c.`id_country`
LEFT JOIN `'._DB_PREFIX_.'country_lang` cl ON (c.`id_country` = cl.`id_country` AND cl.`id_lang` = '.(int)($cookie->id_lang).')
WHERE a.id_customer != 0
GROUP BY c.`id_country`');
foreach ($result as $row)
{
$this->_values[] = $row['total'];
$this->_legend[] = $row['name'];
}
break;
case 'currency':
$this->_titles['main'] = $this->l('Currency distribution');
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS('
SELECT c.`name`, COUNT(c.`id_currency`) AS total
FROM `'._DB_PREFIX_.'orders` o
LEFT JOIN `'._DB_PREFIX_.'currency` c ON o.`id_currency` = c.`id_currency`
GROUP BY c.`id_currency`');
foreach ($result as $row)
{
$this->_values[] = $row['total'];
$this->_legend[] = $row['name'];
}
break;
case 'language':
$this->_titles['main'] = $this->l('Language distribution');
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS('
SELECT c.`name`, COUNT(c.`id_lang`) AS total
FROM `'._DB_PREFIX_.'orders` o
LEFT JOIN `'._DB_PREFIX_.'lang` c ON o.`id_lang` = c.`id_lang`
GROUP BY c.`id_lang`');
foreach ($result as $row)
{
$this->_values[] = $row['total'];
$this->_legend[] = $row['name'];
}
break;
}
}
}