// Groups and language bootsrapify

This commit is contained in:
Jerome Nadaud
2013-10-01 15:14:46 +02:00
parent 14b584fc01
commit 759a3e191a
3 changed files with 8 additions and 9 deletions
+2 -2
View File
@@ -339,7 +339,7 @@ class AdminGroupsControllerCore extends AdminController
$category['reduction'] = $category_reduction[$category['id_category']];
$category_reductions[(int)$category['id_category']] = array(
'path' => getPath(self::$currentIndex.'?tab=AdminCategories', (int)$category['id_category']),
'path' => getPath(Context::getContext()->link->getAdminLink('AdminCategories'), (int)$category['id_category']),
'reduction' => (float)$category['reduction'] * 100,
'id_category' => (int)$category['id_category']
);
@@ -349,7 +349,7 @@ class AdminGroupsControllerCore extends AdminController
foreach ($category_reduction as $key => $val)
if (!array_key_exists($key, $category_reductions))
$category_reductions[(int)$key] = array(
'path' => getPath(self::$currentIndex.'?tab=AdminCategories', $key),
'path' => getPath(Context::getContext()->link->getAdminLink('AdminCategories'), $key),
'reduction' => (float)$val * 100,
'id_category' => (int)$key
);
@@ -91,9 +91,9 @@ class AdminLanguagesControllerCore extends AdminController
);
$this->bulk_actions = array(
'delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')),
'enableSelection' => array('text' => $this->l('Enable selection')),
'disableSelection' => array('text' => $this->l('Disable selection'))
'delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?'), 'icon' => 'icon-trash'),
'enableSelection' => array('text' => $this->l('Enable selection'), 'icon' => 'icon-ok'),
'disableSelection' => array('text' => $this->l('Disable selection'), 'icon' => 'icon-ban-circle')
);
$this->specificConfirmDelete = $this->l('When you delete a language, all related translations in the database will be deleted. Are you sure you want to proceed?');