// Rename AdminController methods initForm() initList() etc. to renderForm() renderList()

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10799 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2011-11-30 11:06:38 +00:00
parent 12261242e3
commit f9c4410e8d
70 changed files with 328 additions and 327 deletions
@@ -98,10 +98,10 @@ class AdminStockInstantStateControllerCore extends AdminController
}
/**
* AdminController::initList() override
* @see AdminController::initList()
* AdminController::renderList() override
* @see AdminController::renderList()
*/
public function initList()
public function renderList()
{
// query
$this->_select = '
@@ -130,7 +130,7 @@ class AdminStockInstantStateControllerCore extends AdminController
// displays help information
$this->displayInformation($this->l('This interface allows you to display detailed informations on your stock, per warehouse.'));
return parent::initList();
return parent::renderList();
}
/**