// Remove bad _SQL_USE_SLAVE_ uses + normalize Db->executeS(), Db->execute() and Db->numRows() names
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9178 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -140,7 +140,7 @@ class StatsVisits extends ModuleGraph
|
||||
{
|
||||
for ($i = 0; $i < $layers; $i++)
|
||||
{
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS($this->_query[$i].$this->getDate().' GROUP BY LEFT(date_add, 4)');
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($this->_query[$i].$this->getDate().' GROUP BY LEFT(date_add, 4)');
|
||||
foreach ($result AS $row)
|
||||
$this->_values[$i][(int)(substr($row['date_add'], 0, 4))] = (int)($row['total']);
|
||||
}
|
||||
@@ -150,7 +150,7 @@ class StatsVisits extends ModuleGraph
|
||||
{
|
||||
for ($i = 0; $i < $layers; $i++)
|
||||
{
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS($this->_query[$i].$this->getDate().' GROUP BY LEFT(date_add, 7)');
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($this->_query[$i].$this->getDate().' GROUP BY LEFT(date_add, 7)');
|
||||
foreach ($result AS $row)
|
||||
$this->_values[$i][(int)(substr($row['date_add'], 5, 2))] = (int)($row['total']);
|
||||
}
|
||||
@@ -160,7 +160,7 @@ class StatsVisits extends ModuleGraph
|
||||
{
|
||||
for ($i = 0; $i < $layers; $i++)
|
||||
{
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS($this->_query[$i].$this->getDate().' GROUP BY LEFT(date_add, 10)');
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($this->_query[$i].$this->getDate().' GROUP BY LEFT(date_add, 10)');
|
||||
foreach ($result AS $row)
|
||||
$this->_values[$i][(int)(substr($row['date_add'], 8, 2))] = (int)($row['total']);
|
||||
}
|
||||
@@ -170,7 +170,7 @@ class StatsVisits extends ModuleGraph
|
||||
{
|
||||
for ($i = 0; $i < $layers; $i++)
|
||||
{
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS($this->_query[$i].$this->getDate().' GROUP BY LEFT(date_add, 13)');
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($this->_query[$i].$this->getDate().' GROUP BY LEFT(date_add, 13)');
|
||||
foreach ($result AS $row)
|
||||
$this->_values[$i][(int)(substr($row['date_add'], 11, 2))] = (int)($row['total']);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user